/* assets/css/style.css - Complete Updated Version with Full-Screen Hero */

/* CSS Variables */
:root {
    /* Benjamin Moore Colors */
    --primary: #F0E7D6;  /* Melted Ice Cream */
    --secondary: #FADADD; /* Pink Bliss */
    --white: #FFFFFF;
    --black: #333333;
    --gray-light: #f8f8f8;
    --gray: #666666;
    --overlay-dark: rgba(0, 0, 0, 0.3);
    --overlay-darker: rgba(0, 0, 0, 0.6);
    
    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 20px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Special styling for homepage */
body.homepage-body main {
    margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    /*margin-bottom: var(--spacing-sm);*/
}

a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #333;
    /*color: var(--secondary);*/
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Header Styles - Only shown on non-homepage pages */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    /*box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100px;
}

/* Centered Logo */
.logo {
    margin: 0 auto;
    /*text-align: center;*/
}

.logo-img {
    max-height: 80px;
    width: auto;
    display: inline-block;
}

/* Hamburger Menu Button - Top Right with MENU text */
.hamburger-menu {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 1001;
    color: var(--black);
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hamburger-icon {
    font-size: 24px;
    line-height: 1;
}

.hamburger-text {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

.hamburger-menu:hover {
    color: var(--secondary);
}

/* Floating Hamburger for Homepage */
.floating-hamburger {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1980;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: solid 3px #bbb5a8;
    cursor: pointer;
    padding: 12px 20px;
    color: var(--black);
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.floating-hamburger .hamburger-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-hamburger .hamburger-icon {
    font-size: 24px;
    line-height: 1;
}

.floating-hamburger .hamburger-text {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

.floating-hamburger:hover {
    background: var(--secondary);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Side Navigation Panel - Slides from Right */
.side-nav-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.side-nav-panel.open {
    right: 0;
}

/* Side Navigation Header with Logo */
.side-nav-header {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--primary);
}

.side-nav-logo {
    flex: 0 0 auto;
}

.side-logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

.close-menu {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--black);
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.close-menu:hover {
    color: var(--secondary);
}

.side-navigation {
    flex: 1;
    padding: 30px 0;
}

.side-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-nav-menu li {
    margin: 0;
    padding: 0;
	text-align: left;
}

.side-nav-menu > li > a {
    display: block;
    padding: 18px 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.side-nav-menu > li > a:hover {
    background: var(--primary);
    border-left-color: var(--secondary);
    padding-left: 35px;
}

.side-nav-menu > li > a.active {
    background: var(--primary);
    border-left-color: var(--secondary);
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.submenu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.submenu-toggle i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--primary);
}

.submenu.open {
    max-height: 200px;
}

.submenu li a {
    display: block;
    padding: 12px 30px 12px 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 1px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.submenu li a:hover {
    background: var(--secondary);
    color: var(--black);
    padding-left: 55px;
}

/* Side Navigation Footer */
.side-nav-footer {
    padding: 30px;
    border-top: 1px solid var(--primary);
    text-align: center;
}

.side-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.side-social-links a {
    color: var(--gray);
    font-size: 1.3rem;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
}

.side-social-links a:hover {
    background: var(--secondary);
    color: var(--black);
}

.bio-text {
	text-align: center;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
main {
    margin-top: 120px;
    min-height: calc(100vh - 130px - 300px);
}

/* Hero Section - Full Screen Height */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);*/
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom: var(--spacing-md);
}

.hero-line {
    display: block;
    font-size: 4.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

/* Section Styles */
section {
    padding: var(--spacing-md) 0;
}

section:nth-child(even) {
    background-color: var(--primary);
}

.instagram-follow-btn {
	display: none !important;
}

.section-title-normal {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 2px;
    position: relative;
	line-height: 1;
}

.section-title-sm {
    text-align: center;
    font-size: 2.3rem;
    letter-spacing: 2px;
    position: relative;
	line-height: 1;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 6.5rem;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
	line-height: 1;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

/* Intro Section */
.intro-section {
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--secondary);
  background-image: url('../../assets/images/floral-bg-client-love.jpg');
  background-size: cover;      /* Scales image to fill container */
  background-position: center; /* Centers the image to avoid weird cropping */
  background-repeat: no-repeat; /* Prevents tiling if the image is small */
}



.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    /*border-radius: 10px;*/
    /*box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);*/
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.slider-prev,
.slider-next {
    background: none;
    border: 2px solid var(--black);
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--black);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--black);
    transform: scale(1.3);
}

/* Blog Teaser Section */
.blog-teaser-section {
    background-color: var(--white);
}

.blog-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.blog-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 350px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-image:hover img {
    transform: scale(1.05);
}

.blog-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--black);
}

.read-more-link {
    display: inline-block;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.read-more-link:hover {
    transform: translateX(5px);
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    text-align: center;
    padding: var(--spacing-lg) 0;
	  background-image: url('../../assets/images/floral-bg.jpeg');
  background-size: cover;      /* Scales image to fill container */
  background-position: center; /* Centers the image to avoid weird cropping */
  background-repeat: no-repeat; /* Prevents tiling if the image is small */
}

.page-title {
    margin-bottom: 0;
}

.title-line {
    display: block;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-top: var(--spacing-xs);
}

/* About Page */
.team-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: var(--spacing-md);
}

.founders-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    /*margin-bottom: var(--spacing-xl);*/
}

.founders-image {
    /*border-radius: 10px;*/
    overflow: hidden;
    height: 500px;
}

.founders-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founders-text p {
    margin-bottom: var(--spacing-sm);
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.bio-title {
    color: #333333;
    /*color: var(--secondary);*/
    margin-bottom: var(--spacing-md);
}

.bio-image {
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

.bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Portfolio Gallery */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 2px solid var(--primary);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    /*border-radius: 10px;*/
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
    text-align: center;
    padding: var(--spacing-md);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Events Page */
.event-content {
    max-width: 900px;
    margin: 0 auto;
}

.event-quote {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: #2b2b2b;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: white;
}

.subsection-title {
    /*margin: var(--spacing-md) 0 var(--spacing-sm);*/
}

.service-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--primary);
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '•';
    color: #333;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 5px;
}

.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-sm);
}

.grid-list li {
    border-bottom: none;
    background: var(--primary);
    padding: 15px;
    text-align: center;
    border-radius: 5px;
}

.grid-list li::before {
    display: none;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}

/* Form Styles */
.pure-event-form {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.form-header h3 {
    color: #3b3b3b;
    /*color: var(--secondary);*/
    margin-bottom: var(--spacing-xs);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-column.full-width {
    grid-column: 1 / -1;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--primary);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--secondary);
    color: var(--black);
    border: none;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--black);
    color: var(--white);
}

/* Success/Error Messages */
.form-success,
.form-error {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-radius: 5px;
    text-align: center;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Company Info Card */
.info-card {
    background: var(--primary);
    padding: 10px;
    border-radius: 10px;
}

.info-card h3 {
    color: #3b3b3b;
    /*color: var(--secondary);*/
    margin-bottom: var(--spacing-sm);
}

.info-card h4 {
    margin: var(--spacing-sm) 0 var(--spacing-xs);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.map-placeholder {
    margin-top: var(--spacing-md);
    border-radius: 5px;
    overflow: hidden;
}

.map-placeholder iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: none;
}

/* Redirect Page (Floral Shop) */
.redirect-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.redirect-content {
    max-width: 600px;
    margin: 0 auto;
}

.redirect-content h1 {
    margin-bottom: var(--spacing-md);
    color: var(--secondary);
}

.shop-preview {
    margin-top: var(--spacing-lg);
}

.shop-preview img {
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--black);
    padding: 15px 30px;
    border-radius: 5px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--black);
    color: var(--white);
}

/* Footer */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.site-footer h4 {
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
}

.site-footer a {
    color: var(--white);
}

.site-footer a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    
    .hero-line { 
        font-size: 3.5rem; 
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 20px;
        min-height: 80px;
    }
    
    .logo-img {
        max-height: 60px;
    }
    
    .hamburger-menu {
        right: 15px;
        padding: 8px 12px;
    }
    
    .hamburger-icon {
        font-size: 20px;
    }
    
    .hamburger-text {
        font-size: 12px;
    }
    
    .floating-hamburger {
        top: 20px;
        right: 20px;
        padding: 10px 16px;
    }
    
    .floating-hamburger .hamburger-icon {
        font-size: 20px;
    }
    
    .floating-hamburger .hamburger-text {
        font-size: 12px;
    }
    
    .side-nav-panel {
        width: 100%;
        right: -100%;
    }
    
    .side-nav-header {
        padding: 15px 20px;
    }
    
    .side-logo-img {
        max-height: 40px;
    }
    
    .close-menu {
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
    
    main {
        margin-top: 100px;
    }
    
    .hero-section {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-line { 
        font-size: 2.8rem; 
    }
    
    .blog-preview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .founders-content,
    .bio-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .founders-image,
    .bio-image {
        height: 350px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-line { 
        font-size: 2.2rem; 
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 20px 15px;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
}

/* When menu is open, keep hamburger visible but maybe adjust */
body.menu-open .floating-hamburger {
    opacity: 0.5;
    pointer-events: none;
}

.load-more-btn {
    background-color: #333333 !important;
    color: white;
}

.instagram-follow-btn {
    background-color: transparent;
    color: #333333 !important;
    border: 2px solid #333333 !important;
}

.instagram-follow-btn:hover {
    background-color: #333333 !important;
    color: white !important;
}