@font-face {
    font-family: 'Bellet Regular';
    src: url('assets/fonts/BelletRegular.ttf') format('truetype');
    font-display: swap;
}

/* @font-face {
    font-family: 'Helvetica';
    src: url('assets/fonts/Helvetica.ttc') format('truetype');
    font-display: swap;
} */

@font-face {
    font-family: 'Minion Variable Concept';
    src: url('assets/fonts/MinionVariableConcept-Roman.otf') format('opentype');
    font-display: swap;
}

/* @font-face {
    font-family: 'Quicksand Book';
    src: url('assets/fonts/Quicksand_Book.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Tamil Sangam MN';
    src: url('assets/fonts/Tamil Sangam MN.ttc') format('truetype');
    font-display: swap;
} */

:root {
    --primary-color: #CAAD68;
    --background-color: #F5F5F5;
    --text-color: #333333;
    --accent-color: #1F3937;
    --primary-font: 'Roboto', sans-serif;
    --secondary-font: 'Roboto Serif', serif;
    --primary-title-font: 'Bellet Regular', sans-serif;
    --secondary-title-font: 'Roboto Serif', serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-display: swap;
}

a {
    text-decoration: none;
}

/* Navigation */
nav {
    padding: 1.5rem 2rem;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

nav.scrolled {
    background-color: rgba(31, 57, 55, 0.95);
    position: fixed;
    padding: 0.8rem 2rem;
}

nav.scrolling-up {
    transition: transform 0.3s ease-in-out;
}

nav.hide-nav {
    transform: translateY(-100%);
}

.nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(31, 57, 55, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    transition: left 0.3s ease;
    z-index: 1000;
    margin: 0;
    display: flex;
}

.nav-links.active {
    left: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: var(--primary-font);
    font-weight: 500;
}

nav a:hover {
    color: var(--primary-color);
}

.logo {
    text-align: center;
    padding: 0 2rem;
    transition: all 0.3s ease;
}

.logo img {
    max-width: 200px;
    transition: all 0.3s ease;
}

nav.scrolled .logo img {
    max-width: 150px;
}

.logo img:hover {
    transform: scale(1.05);
}

.brand-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

nav.scrolled .brand-name {
    font-size: 1.1rem;
    margin-top: 0.3rem;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hamburger animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    text-align: left;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: white;
}

.contact-info-item a {
    padding: 0;
}

.contact-info-item-title {
    font-family: var(--primary-title-font);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-item-content {
    font-weight: 200;
}

.contact-info-social-links {
    display: flex;
    gap: 2rem;
}

.contact-info-social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    nav.scrolled {
        padding: 0.6rem 1rem;
    }

    .logo img {
        max-width: 120px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    nav.scrolled .brand-name {
        font-size: 1rem;
        margin-top: 0.2rem;
    }

    nav {
        padding: 1rem;
    }

    nav.scrolled {
        padding: 0.8rem 1rem;
    }

    nav.menu-open {
        background-color: rgba(31, 57, 55, 0.95);
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(31, 57, 55, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .logo {
        order: -1;
        margin: 2rem 0;
        padding: 0;
    }

    .logo img {
        max-width: 120px;
    }

    .hero-logo { 
        width: 120px !important;
    }

    .brand-name {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .logo img {
        max-width: 130px;
    }

    .hero-logo {
        width: 150px !important;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    nav a {
        font-size: 0.95rem;
        font-family: var(--primary-font);
        font-weight: 500;
    }
}

/* Hero Section */
.hero {
    min-height: 780px;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.hero-logo {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    pointer-events: auto;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.1) 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 600px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 4.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-family: var(--primary-title-font);
}

.hero h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 300;
    font-family: var(--primary-title-font);
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 80%;
    font-family: var(--primary-font);
    font-weight: 400;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-family: var(--primary-font);
    font-weight: 200;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.cta-button .button-icon {
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover .button-icon {
    transform: translateX(3px);
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 3;
}

.slide-indicators {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    opacity: 0.8;
}

.indicator.active {
    opacity: 1;
}

.prev-slide,
.next-slide {
    background: transparent;
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: white;
    color: var(--primary-color);
}

.craft-pride {
    position: absolute;
    right: 5%;
    bottom: 5%;
    z-index: 3;
    color: white;
    text-align: right;
    height: fit-content;
}

.craft-pride h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* About Us */
.about-us {
    padding-top: calc(1rem + 50px); /* Adjust for sticky filter height */
    background-color: white;
}

.about-us h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    font-weight: 400;
}

.about-us-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
}

.about-us-content-block-left {
    width: 60%;
}

.about-us-content-block-right {
    width: 40%;
}

.about-us-content-block img {
    width: 100%;
    height: auto;
}

.about-us-title {
    color: var(--primary-color);
    font-family: var(--secondary-title-font);
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    margin-left: 1.8rem;
    font-weight: 200;
}

.about-us-subtitle {
    color: var(--primary-color);
    font-family: var(--secondary-title-font);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 200;
    letter-spacing: 5px;
}

.about-us-text {
    color: grey;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Scroll to Top Floating Button */
#scrollToTopBtn {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
#scrollToTopBtn:not(.show) {
    transform: translateY(40px);
}
#scrollToTopBtn:hover, #scrollToTopBtn:focus {
    background: var(--primary-color);
    color: #fff;
    outline: 2px solid var(--primary-color);
}
#scrollToTopBtn i {
    pointer-events: none;
}

/* Store Locator */
.store-locator {
    background-color: var(--background-color);
    position: relative;
    padding-top: calc(1rem + 50px); /* Adjust for sticky filter height */
}

.store-locator h2 {
    text-align: center;
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    font-weight: 400;
}

.stores-grid {
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.store-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* margin-bottom: 2rem; */
    height: 300px; /* Fixed height for consistent look */
}

.store-card-image {
    width: 40%; /* Left side takes 40% width */
    object-fit: cover;
}

.store-card-content {
    width: 100%;
    padding: 1.5rem;
    font-family: var(--primary-font);
    display: flex;
    flex-direction: column;
    justify-content: start;
    color: grey;
}

.store-card-content h3 {
    margin-bottom: 0.5rem;
    font-family: var(--secondary-title-font);
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.store-card-content .store-address,
.store-card-content .store-contact {
    margin-bottom: 0.3rem;
    font-family: var(--secondary-title-font);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.store-card-content .store-social {
    margin-top: auto;
}

.store-card-content .social-link {
    color: var(--primary-color);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.store-card-content .social-link:hover {
    opacity: 1;
}

.store-card p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.store-address {
    font-weight: 500;
}

.store-details {
    color: #666;
}

.store-hours {
    margin-top: 1rem !important;
    color: var(--accent-color) !important;
    font-weight: 500;
}

.store-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--primary-color);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: var(--accent-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.social-link:hover i {
    transform: scale(1.1);
}

.store-contact:hover,
.store-hours:hover {
    color: var(--primary-color);
}

.store-filter {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 1rem 0;
    transition: box-shadow 0.3s ease;
}

.store-filter.sticky-shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.location-filter-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 80%;
    padding: 1rem 2rem;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--primary-font);
    outline: none;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 12 12'%3E%3Cpath d='M1 4l5 5 5-5z' fill='%23333333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.location-filter-select:focus {
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

@media (max-width: 1024px) {
    .about-us-content {
        flex-direction: column;
    }

    .about-us-content-block-left,
    .about-us-content-block-right {
        width: 100%;
    }

    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        top: 70%;
    }

    .craft-pride {
        top: 15%;
    }

    .about-us h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .about-us-content {
        flex-direction: column;
    }

    .about-us-content-block-left,
    .about-us-content-block-right {
        width: 100%;
    }

    .about-us-title {
        font-size: 2rem;
    }
    
    .about-us-subtitle {
        font-size: 1.3rem;
    }
    
    .about-us-text {
        font-size: 1rem;
    }

    .store-locator {
        padding: 2rem 0rem;
    }

    .store-locator h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .stores-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0rem;
    }

    .store-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color: white;
        border-radius: 0;
        /* border: 1px solid var(--primary-color); */
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease;
        height: 200px; /* Fixed height for consistent look */
    }

    .store-card-image {
        width: 150px;
        height: 200px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .store-card-content {
        flex-grow: 1;
        padding: 0.75rem;
        display: flex;
        flex-direction: column;
        justify-content: start;
        font-size: 0.9rem;
        height: 100%;
    }

    .store-card-content h3 {
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
    }

    .store-card-content .store-address,
    .store-card-content .store-contact {
        font-size: 0.8rem;
        color: var(--text-color-light);
        margin-bottom: 0.2rem;
    }

    .store-card-content .store-social {
        display: flex;
        gap: 0.5rem;
        margin-top: auto;
    }

    .store-card-content .social-link {
        font-size: 1rem;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }

    .social-link i {
        font-size: 1.1rem;
    }

    .store-social {
        margin-top: 1.2rem;
        padding-top: 0.8rem;
    }

    .store-filter {
        width: 100%;
        padding: 0.5rem 0.5rem;
        margin-bottom: 1rem;
    }

    .location-filter-select {
        width: 95%; /* Slightly less than full width for padding */
        margin: 0 auto; /* Center the select */
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}


.custom-filter-bar {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 850px;
    margin: 2.5rem auto 2rem auto;
    background: #fff;
    border-radius: 2.5rem;
    box-shadow: 0 4px 24px 0 rgba(31, 57, 55, 0.07), 0 0 0 1.5px var(--primary-color, #B8860B);
    padding: 0.2rem 0.7rem 0.2rem 0.2rem;
    position: relative;
}
.custom-dropdown {
    position: relative;
    margin-right: 0.5rem;
}
.dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--primary-color, #B8860B);
    color: #fff;
    border: none;
    border-radius: 2rem 0 0 2rem;
    padding: 0.75rem 1.5rem 0.75rem 1.6rem;
    font-size: 1.08rem;
    font-weight: 500;
    cursor: pointer;
    min-width: 160px;
    position: relative;
    z-index: 2;
    transition: background 0.2s;
}
.dropdown-selected:focus, .dropdown-selected:hover {
    background: var(--accent-color, #A0408A);
}
.dropdown-arrow {
    padding-left: 0.5rem;
    font-size: 1em;
    pointer-events: none;
    margin-right: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 110%;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px 0 rgba(31, 57, 55, 0.08);
    min-width: 220px;
    padding: 0.6rem 0.5rem 0.5rem 0.5rem;
    z-index: 10;
}
.custom-dropdown.open .dropdown-menu {
    display: block;
}
.dropdown-search {
    width: 95%;
    padding: 0.5rem 0.7rem;
    border: 1px solid #eee;
    border-radius: 0.7rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    outline: none;
}
.dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
}
.dropdown-list li {
    padding: 0.6rem 1rem;
    border-radius: 0.7rem;
    cursor: pointer;
    font-size: 1.03rem;
    color: #222;
    margin-bottom: 0.1rem;
    transition: background 0.15s, color 0.15s;
}
.dropdown-list li.active,
.dropdown-list li:hover,
.dropdown-list li:focus {
    background: var(--primary-color, #B8860B);
    color: #fff;
}
.store-search-input {
    flex: 1 1 0%;
    border: none;
    outline: none;
    font-size: 1.08rem;
    padding: 0.75rem 1.2rem;
    background: transparent;
    color: var(--text-color, #222);
    border-radius: 0 2.5rem 2.5rem 0;
    margin-left: -0.5rem;
    margin-right: 0.5rem;
}
.store-search-input::placeholder {
    color: #b0b0b0;
    opacity: 1;
}
.store-search-input:focus {
    outline: 0px solid var(--primary-color);
    outline-offset: 0px;
}
.search-btn {
    background: none;
    border: none;
    outline: none;
    padding: 0 1.1rem 0 0.3rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--primary-color, #B8860B);
    font-size: 1.45rem;
    transition: color 0.2s;
    border-radius: 50%;
}
.search-btn:focus {
    outline: 0px solid var(--primary-color);
    outline-offset: 0px;
}

@media (max-width: 700px) {
    .custom-filter-bar {
        flex-direction: column;
        max-width: 98vw;
        padding: 0.5rem 0.5rem 0.5rem 0.5rem;
        border-radius: 1.2rem;
    }
    .dropdown-selected, .store-search-input {
        border-radius: 1.2rem !important;
        min-width: 0;
        width: 100%;
        margin: 0 0 0.5rem 0;
    }
    .custom-dropdown {
        width: 100%;
        margin-right: 0;
    }
}

/* Footer */
footer {
    background-color: white;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.footer-links a, .social-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1.2rem;
    }

    nav.scrolled {
        padding: 1rem;
    }

    nav.menu-open {
        background-color: rgba(31, 57, 55, 0.95);
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(31, 57, 55, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .logo {
        order: -1;
        margin: 2.5rem 0;
        padding: 0;
    }

    .logo img {
        max-width: 160px;
    }

    .brand-name {
        font-size: 1.6rem;
        margin-top: 1rem;
    }

    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-content {
        left: 5%;
        max-width: 90%;
        text-align: left;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
        font-family: var(--primary-font);
        font-weight: 400;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .slider-controls {
        bottom: 3%;
        left: 50%;
        transform: translateX(-50%);
    }

    .slide-indicators {
        gap: 1rem;
        justify-content: center;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    .prev-slide,
    .next-slide {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .logo img {
        max-width: 180px;
    }

    .brand-name {
        font-size: 1.6rem;
    }

    nav a {
        font-size: 1rem;
        padding: 0.5rem 0.8rem;
        font-family: var(--primary-font);
        font-weight: 500;
    }
}

@media (min-width: 1025px) and (max-width: 1400px) {
    .logo img {
        max-width: 190px;
    }

    .brand-name {
        font-size: 1.7rem;
    }

    nav a {
        font-size: 1.05rem;
        font-family: var(--primary-font);
        font-weight: 500;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-title-font);
    font-weight: 600;
}

/* Performance and Accessibility Enhancements */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Color contrast improvements */
.cta-button {
    color: white;
    background-color: var(--accent-color);
    transition: background-color var(--transition-speed) ease;
}

.cta-button:hover,
.cta-button:focus {
    background-color: color-mix(in srgb, var(--primary-color) 80%, white);
}

.copyright {
    font-size: 0.8rem;
}

.d-none {
    display: none;
}