/* --- Elegant Animation Theme CSS --- */
:root {
    /* Colors - UPDATED to match the official logo palette */
    --primary-color: #00AEEF;
    --secondary-color: #6CCECB; /* This is our "Tiffany Blue" */
    --accent-yellow: #FFDA00;
    --accent-purple: #7F7FBA;
    --accent-orange: #F47E1F;
    --light-bg: #f8f8f8;
    --white-bg: #ffffff;
    --medium-light-bg: #f0f2f5;
    --text-dark: #2d3748;
    --text-heading: #1a202c;
    --text-light: #f0f2f5;
    --text-muted: #718096;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e0;

    /* Fonts & Sizing */
    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Montserrat', sans-serif;
    --header-height-desktop: 75px;
    --header-height-mobile: 65px;
    --border-radius: 4px;
    --transition-speed: 0.4s;
    --elegant-ease: cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height-desktop);
}

body {
    font-family: var(--sans-font);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    transition: padding-left 0.4s var(--elegant-ease);
}

body.nav-active {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 55, 72, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

body.nav-active::before {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0s linear 0s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 120px 0;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--serif-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-heading);
}

h1 {
    font-size: clamp(3rem, 7vw, 4.5rem);
    letter-spacing: 1px;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 30px;
}

h3 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 15px;
}

h4 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-family: var(--sans-font);
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) var(--elegant-ease);
}

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

.text-highlight {
    color: var(--primary-color);
    font-weight: 400;
}

/* Section Title Helper */
.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-title h2 {
    margin-bottom: 15px;
    color: var(--text-heading);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Button Style --- */
.btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-family: var(--sans-font);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color var(--transition-speed) var(--elegant-ease), color var(--transition-speed) var(--elegant-ease), transform 0.2s ease;
    cursor: pointer;
    border-radius: var(--border-radius);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--white-bg);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

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

.btn-filled {
    background-color: var(--primary-color);
    color: var(--white-bg);
    border-color: var(--primary-color);
}

.btn-filled:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-on-dark {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-on-dark:hover {
    background-color: var(--primary-color);
    color: var(--white-bg);
}

.centered-cta {
    text-align: center;
    margin-top: 50px;
}

/* --- Header --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: var(--header-height-desktop);
    display: flex;
    align-items: center;
    transition: background-color 0.4s var(--elegant-ease), box-shadow 0.4s var(--elegant-ease), height 0.4s var(--elegant-ease);
    background-color: transparent;
}

header.scrolled {
    background-color: var(--white-bg);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    height: calc(var(--header-height-desktop) - 10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 35px;
    transition: height 0.4s var(--elegant-ease);
}

header.scrolled .logo img {
    height: 30px;
}

nav#main-nav ul {
    display: flex;
    list-style: none;
}

nav#main-nav ul li {
    margin-left: 40px;
}

nav#main-nav ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    transition: color 0.3s var(--elegant-ease), border-color 0.3s var(--elegant-ease);
    letter-spacing: 0.5px;
}

header.scrolled nav#main-nav ul li a {
    color: var(--text-dark);
}

/* UPDATED Nav hover color */
header.scrolled nav#main-nav ul li a:hover,
header.scrolled nav#main-nav ul li a.active-link {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

header:not(.scrolled) nav#main-nav ul li a:hover,
header:not(.scrolled) nav#main-nav ul li a.active-link {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: color 0.3s var(--elegant-ease);
}

header.scrolled .menu-toggle {
    color: var(--text-dark);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--text-light);
    background-color: #1a202c;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slides {
    display: flex;
    height: 100%;
    transition: transform 1.0s cubic-bezier(0.65, 0, 0.35, 1);
    --slide-count: 1;
}

.hero-slide {
    width: calc(100% / var(--slide-count));
    height: 100%;
    flex-shrink: 0;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.hero-content {
    text-align: center;
    max-width: 850px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-content h1,
.hero-content .tagline,
.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

.hero-content h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: var(--text-light);
}

.hero-content .tagline {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-family: var(--sans-font);
    font-weight: 300;
    letter-spacing: 1px;
    margin: 15px 0 35px;
    color: rgba(230, 230, 230, 0.95);
    line-height: 1.6;
}

.hero-content .btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-width: 1px;
    padding: 14px 40px;
}

/* --- General Animation Setup --- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s var(--elegant-ease), transform 0.8s var(--elegant-ease);
    will-change: transform, opacity;
}

.animate--fade-up {
    transform: translateY(40px);
}

.animate--slide-left {
    transform: translateX(-40px);
}

.animate--slide-right {
    transform: translateX(40px);
}

.animate--zoom-in {
    transform: scale(0.95);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.project-card.animate-on-scroll,
.craft-item.animate-on-scroll,
.client-logo.animate-on-scroll,
.service-item.animate-on-scroll {
    transition-delay: calc(var(--stagger-index, 0) * var(--stagger-delay, 0.1s));
}

/* --- About Us, Director & Ethos Sections --- */
.about-us, .ethos {
    background-color: var(--white-bg);
}

/* UPDATED director profile section */
.director-profile {
    background-color: var(--secondary-color);
}

.about-grid,
.director-grid,
.ethos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.about-image img,
.director-image img,
.ethos-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.director-image {
    position: relative;
}

.director-image img {
    border-radius: 50%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    border: 5px solid var(--white-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2, .ethos-text h2 {
    margin-top: 0;
    color: var(--text-heading);
}

.about-text p, .ethos-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-text .text-highlight, .ethos-text .text-highlight {
    color: var(--primary-color);
    font-weight: 400;
}

/* UPDATED director text colors for contrast */
.director-text h2, .director-text h3 {
    margin-top: 0;
    color: var(--white-bg);
}
.director-text h4 {
    color: rgba(255, 255, 255, 0.8);
}
.director-text p, .director-text li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.director-text h3 {
    font-size: 1.2rem;
    font-family: var(--sans-font);
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

.project-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style-position: inside;
    padding-left: 0;
}

.project-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    list-style: none;
    padding-left: 0;
}

/* --- Featured Projects Section --- */
.featured-projects {
    background-color: var(--white-bg);
    overflow: hidden;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 0;
}

.project-card {
    background: var(--white-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s var(--elegant-ease), box-shadow 0.4s var(--elegant-ease), border-color 0.4s var(--elegant-ease);
    display: flex;
    flex-direction: column;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--border-medium);
}

.project-card .thumbnail-slider-container {
    height: 280px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #eee;
    border-bottom: 1px solid var(--border-light);
}

.project-card .thumbnail-slides {
    display: flex;
    height: 100%;
    transition: transform 0.7s ease-in-out;
    --slide-count: 1;
}

.project-card .thumbnail-slide {
    width: calc(100% / var(--slide-count));
    height: 100%;
    flex-shrink: 0;
}

.project-card .thumbnail-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    z-index: 2;
    background-color: var(--white-bg);
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-heading);
}

.project-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.project-info .btn {
    align-self: flex-start;
    margin-top: auto;
    padding: 10px 30px;
    font-size: 0.85rem;
}

/* --- Client Logos Section --- */
.client-logos {
    background-color: var(--medium-light-bg);
    padding: 50px 0;
}

.logo-carousel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.client-logo {
    transition: transform 0.3s var(--elegant-ease), opacity 0.8s var(--elegant-ease);
    opacity: 0;
    transform: scale(0.9);
}

.client-logo.is-visible {
    opacity: 1;
    transform: scale(1);
}

.client-logo:hover {
    transform: scale(1.1) !important;
}

.client-logo img {
    max-height: 150px;
    width: auto;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: filter 0.3s var(--elegant-ease), opacity 0.3s var(--elegant-ease);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Our Craft Section --- */
.our-craft {
    background-color: var(--white-bg);
    overflow: hidden;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.craft-item {
    text-align: center;
}

.craft-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.5s var(--elegant-ease);
}

.craft-item:hover .craft-icon {
    transform: scale(1.1) rotate(5deg);
}

.craft-item h3 {
    font-family: var(--sans-font);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: var(--text-heading);
}

.craft-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Our Services Section --- */
.our-services {
    background-color: var(--light-bg);
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item {
    text-align: left;
    padding: 30px;
    background-color: var(--white-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    transition: transform 0.4s var(--elegant-ease), box-shadow 0.4s var(--elegant-ease);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* Cycle through logo colors for the service icons */
.service-item:nth-child(5n+1) .service-icon { color: var(--primary-color); }
.service-item:nth-child(5n+2) .service-icon { color: var(--accent-orange); }
.service-item:nth-child(5n+3) .service-icon { color: var(--secondary-color); }
.service-item:nth-child(5n+4) .service-icon { color: var(--accent-purple); }
.service-item:nth-child(5n+5) .service-icon { color: var(--accent-yellow); }


.service-item h3 {
    font-family: var(--sans-font);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: var(--text-heading);
}

.service-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}


/* --- Portfolio Link Section --- */
.portfolio-cta {
    background: url('/assets/images/hero/The-Bar.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 140px 0;
    text-align: center;
    position: relative;
    color: var(--text-light);
}

.portfolio-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.75);
}

.portfolio-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.portfolio-cta-content h2 {
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.portfolio-cta-content p {
    color: rgba(230, 230, 230, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.portfolio-cta-content.animate--zoom-in {
    transform: scale(0.98);
}

/* --- Testimonials Section --- UPDATED */
.testimonials {
    background: var(--secondary-color);
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: var(--white-bg);
}

.testimonial-item blockquote {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-style: italic;
    color: var(--white-bg);
    font-family: var(--serif-font);
    margin-bottom: 20px;
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    padding-left: 30px;
    line-height: 1.6;
    position: relative;
}

.testimonial-item blockquote::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    height: 0;
    width: 3px;
    background-color: var(--white-bg);
    transition: height 0.8s var(--elegant-ease) 0.3s;
    will-change: height;
}

.testimonial-item.is-visible blockquote::before {
    height: 100%;
}

.testimonial-item cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 500;
    color: var(--white-bg);
}

/* --- Consultation Section --- */
.consultation {
    background-color: var(--white-bg);
    color: var(--text-dark);
}

.consultation .section-title h2 {
    color: var(--text-heading);
}

.consultation .section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-form-premium {
    max-width: 700px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.contact-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-form-premium input[type="text"],
.contact-form-premium input[type="email"],
.contact-form-premium input[type="tel"],
.contact-form-premium textarea,
.contact-form-premium select {
    background-color: var(--white-bg);
    border: 1px solid var(--border-medium);
    color: var(--text-dark);
    padding: 15px;
    border-radius: var(--border-radius);
    font-family: var(--sans-font);
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.3s var(--elegant-ease), box-shadow 0.3s var(--elegant-ease);
}

.contact-form-premium input[type="text"]::placeholder,
.contact-form-premium input[type="email"]::placeholder,
.contact-form-premium input[type="tel"]::placeholder,
.contact-form-premium textarea::placeholder {
    color: #a0aec0;
    font-weight: 300;
}

.contact-form-premium input[type="text"]:focus,
.contact-form-premium input[type="email"]:focus,
.contact-form-premium input[type="tel"]:focus,
.contact-form-premium textarea:focus,
.contact-form-premium select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.contact-form-premium select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23718096%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 10px 10px;
    cursor: pointer;
}

.contact-form-premium select:required:invalid {
    color: #a0aec0;
}

option[value=""][disabled] {
    display: none;
}

option {
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form-premium textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 20px;
}

.contact-form-premium .btn {
    margin-top: 10px;
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Footer --- */
footer {
    background-color: var(--medium-light-bg);
    color: var(--text-muted);
    padding: 70px 0 30px;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--text-heading);
    font-family: var(--sans-font);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-column p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s var(--elegant-ease);
    word-break: break-word;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-column i {
    margin-right: 12px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-medium);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-logo {
    height: 30px;
    margin-bottom: 15px;
    opacity: 1;
}

/* --- Static Header Style for Inner Pages --- */
header.header-static {
    background-color: var(--white-bg);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    height: calc(var(--header-height-desktop) - 10px);
}

header.header-static .logo img {
    height: 30px;
}

header.header-static nav#main-nav ul li a {
    color: var(--text-dark);
}

/* UPDATED header hover color */
header.header-static nav#main-nav ul li a:hover,
header.header-static nav#main-nav ul li a.active-link {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

header.header-static .menu-toggle {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    header.header-static {
        height: var(--header-height-mobile);
    }
    header.header-static .logo img {
        height: 30px;
    }
}