:root {
    /* Updated color palette with better consistency */
    --primary-color: #362b22;       /* Dark brown base */
    --secondary-color: #4a3b2f;     /* Lighter brown */
    --accent-color: #c19a6b;        /* Tan/gold accent */
    --accent-color-hover: #d5b48c;  /* Lighter accent for hover states */
    --light-color: #f5f5f5;         /* Off-white for backgrounds */
    --dark-color: #212529;          /* Near-black for text */
    --light-gray: #ecf0f1;          /* Light gray for backgrounds */
    --medium-gray: #bdc3c7;         /* Medium gray for borders */
    --wood-dark-brown: #362b22;     /* Dark brown from image */
    --wood-darker-brown: #2a211a;   /* Darker version for hover states */
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;  /* Added secondary font for headers */
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 8px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}
//logo on top
/* Big Hero Logo Styles */
.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1.5s ease-out;
}

.hero-logo img {
    width: 180px; /* Adjust size as needed */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* You may need to adjust other hero content styles to accommodate the logo */
.hero-content {
    padding-top: 2rem; /* Add some padding at the top */
}
/* Notification styles - Improved with better positioning and animation */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1100;
    max-width: 350px;
    box-shadow: var(--shadow-medium);
    animation: slideIn 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.notification.success {
    background-color: rgba(46, 204, 113, 0.95);
    color: white;
    border-left: 4px solid #27ae60;
}

.notification.error {
    background-color: rgba(231, 76, 60, 0.95);
    color: white;
    border-left: 4px solid #c0392b;
}

.close-notification {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
    margin-left: 15px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.close-notification:hover {
    opacity: 1;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Hero Section - Enhanced with subtle text animations and better overlay */
.hero-section {
    height: 100vh;
    background: url('img/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 35px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.scroll-btn {
    background-color: var(--wood-dark-brown);
    border: none;
    color: white;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 14px;
}

.scroll-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.scroll-btn:hover {
    background-color: var(--wood-darker-brown);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.scroll-btn:hover::after {
    transform: translateX(100%);
}

.scroll-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation - Improved with mobile menu and smoother transitions */
.main-nav {
    background-color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-small);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.main-nav.scrolled {
    padding: 10px 5%;
    box-shadow: var(--shadow-medium);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition-normal);
}

.main-nav.scrolled .logo img {
    height: 70px;
}

.logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 0;
    position: relative;
    transition: var(--transition-normal);
}

.nav-links li:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-normal);
}

.nav-links li:hover, .nav-links li.active {
    color: var(--accent-color);
}

.nav-links li:hover:after, .nav-links li.active:after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: var(--dark-color);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Mobile menu toggle button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-toggle:hover {
    color: var(--accent-color);
}

/* Main Content - Enhanced with better animations and spacing */
.main-content {
    padding: 80px 5% 60px;
}

.fade-in {
    animation: fadeIn 0.7s ease;
}

.fade-out {
    animation: fadeOut 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}

/* Section Headings - Improved with consistent styling and better typography */
.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 600;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.featured-work h2, 

.portfolio-section h2, 
.gallery-section h2, 
.about-section h2, 
.contact-section h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
}

.featured-work h2:after,
.portfolio-section h2:after, 
.gallery-section h2:after, 
.about-section h2:after, 
.contact-section h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}


.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    width: 100%;
    max-width: 1200px; /* Add a max-width */
    margin-left: auto; /* Center the grid */
    margin-right: auto; /* Center the grid */
}
.featured-work {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 5%;
}
.featured-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transform: translateY(0);
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    object-position: center;
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.featured-item:hover img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: var(--transition-normal);
    text-align: left;
}

.featured-item:hover .featured-overlay {
    transform: translateY(0);
}

.featured-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}
/* Enhanced Testimonial Section */
.testimonials {
    padding: 5rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.testimonial-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.testimonial-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 250px; /* Reduced height without images */
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.client {
    font-weight: 600;
    color: #888;
    position: relative;
    padding-top: 1rem;
}

.client:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #ddd;
}

.testimonial-nav {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.testimonial-nav:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-nav.prev {
    margin-right: 1rem;
}

.testimonial-nav.next {
    margin-left: 1rem;
}

.testimonial-dots {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #333;
    transform: scale(1.2);
}

/* Add a subtle animation for the testimonials */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-item.active {
    animation: fadeIn 0.5s forwards;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonial-container {
        padding: 0 1rem;
    }

    .testimonial-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .quote {
        font-size: 1rem;
    }
}
/* Portfolio Section - Enhanced with better filtering and transitions */
.portfolio-section {
    padding: 20px 0 80px;
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 12px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--medium-gray);
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--secondary-color);
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
    height: 300px;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item.filtering {
    opacity: 0;
    transform: scale(0.8);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Gallery Section - Enhanced with better masonry layout */
.gallery-section {
    padding: 20px 0 80px;
}

.gallery-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--secondary-color);
    font-size: 17px;
    line-height: 1.8;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInStagger 0.6s ease forwards;
}

@keyframes fadeInStagger {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* About Section - Enhanced with better layout and text styling */
.about-section {
    padding: 20px 0 80px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    position: relative;
}

.about-image:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    opacity: 0;
    transform: scale(1.1);
    transition: var(--transition-normal);
    z-index: 1;
    pointer-events: none;
}

.about-image:hover:before {
    opacity: 0.5;
    transform: scale(1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-normal);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.about-text h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.8;
}

/* Contact Section - Enhanced with better styling and consistent colors */
.contact-section {
    padding: 20px 0 80px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background-color: rgba(193, 154, 107, 0.1); /* Using accent color for consistency */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 20px;
    transition: var(--transition-normal);
}

.contact-item:hover i {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    color: var(--secondary-color);
    font-size: 16px;
}

.contact-social h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.contact-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background-color: rgba(193, 154, 107, 0.1); /* Using accent color for consistency */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 15px;
    transition: var(--transition-normal);
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--wood-dark-brown);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    width: 100%;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-btn:hover {
    background-color: var(--wood-darker-brown);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover::after {
    transform: translateX(100%);
}

.submit-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Google Form button styling */
.google-form-description {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.google-form-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 30px;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition-normal);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.google-form-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.google-form-btn:hover {
    background-color: var(--accent-color-hover);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(193, 154, 107, 0.3);
}

.google-form-btn:hover::after {
    transform: translateX(100%);
}

.google-form-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(193, 154, 107, 0.2);
}

/* Footer - Enhanced with better styling and layout */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 180px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after, .footer-contact h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 20px;
     margin-right: 15px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-links li:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

#back-to-top {
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

#back-to-top:hover {
    color: var(--accent-color);
}

#back-to-top i {
    font-size: 12px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .featured-grid, .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .main-nav {
        padding: 15px 4%;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .social-icons {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title,
    .featured-work h2, 
    .testimonials h2, 
    .portfolio-section h2, 
    .gallery-section h2, 
    .about-section h2, 
    .contact-section h2 {
        font-size: 30px;
    }
    
    .about-content, .contact-container {
        gap: 40px;
    }
}

@media screen and (max-width: 576px) {
    .main-nav {
        padding: 12px 4%;
    }
    
    .main-nav.scrolled .logo img {
        height: 60px;
    }
    
    .logo img {
        height: 70px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .scroll-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .featured-grid, .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.wide, .gallery-item.tall, .gallery-item.tall.wide {
        grid-column: auto;
        grid-row: auto;
    }
    
    .section-title,
    .featured-work h2, 
    .testimonials h2, 
    .portfolio-section h2, 
    .gallery-section h2, 
    .about-section h2, 
    .contact-section h2 {
        font-size: 26px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* Mobile navigation styling */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-color);
        padding: 0.5rem;
        z-index: 100;
    }
    
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgba(54, 43, 34, 0.8); /* Making the background semi-transparent */
        backdrop-filter: blur(5px); /* Adding a blur effect for better readability */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        z-index: 99;
    }

    /* Other mobile styles remain the same */
}

.nav-links.show {
    display: flex; /* Show the menu when the show class is added */
}

.nav-links li {
    margin: 0.3rem 0;  /* This adds 1rem (16px) top and bottom margin to each menu item */
    text-align: center;
    color: white;
    cursor: pointer;
}

.menu-toggle {
    display: block;
    color: var(--primary-color);
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}
}