/* =========================================================
   GLOBAL LAYOUT
   Purpose: Base structural rules for the public-facing site
   Notes:
     - No visual changes made
     - Formatting normalized
     - Duplicates removed
========================================================= */

.site-content {
    flex: 1;
    padding-top: 90px; /* match header height */
}

/* =========================================================
   HEADER
   Purpose: Fixed navigation bar with shrink-on-scroll behavior
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    transition: height 0.25s ease, box-shadow 0.25s ease;

    /* Vertical gradient overlay */
    background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.40) 0%,
            rgba(0,0,0,0.25) 20%,
            rgba(0,0,0,0.10) 40%,
            rgba(0,0,0,0.00) 60%
    );
}

.site-header.shrink {
    height: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header-inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo img {
    height: 70px;
    transition: height 0.25s ease;
}

.site-header.shrink .site-logo img {
    height: 45px;
}

/* Navigation */
.site-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-nav a {
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}

.site-nav a:hover {
    text-decoration: underline;
}

/* =========================================================
   HERO — GLOBAL
   Purpose: Universal hero section used across pages
========================================================= */

.hero {
    height: 400px;
    min-height: 400px;
    max-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("/images/site-image-01.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

/* Homepage override */
.homepage .homepage-hero {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
}

/* Homepage hero should NOT have the dark overlay */
.homepage .homepage-hero::before {
    display: none !important;
}

/* Universal hero overlay */
.hero:not(.homepage-hero)::before,
.hero-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* Ensure hero text sits above overlay */
.hero *,
.hero-services * {
    position: relative;
    z-index: 2;
}

.hero-overlay {
    background-color: rgba(0,0,0,0.55);
    padding: 3rem 4rem;
    text-align: center;
    border-radius: 6px;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-overlay p {
    font-size: 1.2rem;
    max-width: none;
}

.hero:not(.homepage-hero) h1,
.hero-services h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.hero:not(.homepage-hero) p,
.hero-services p {
    font-size: 1.25rem;
    font-weight: 600;
    max-width: 100%;
}

/* =========================================================
   SERVICE HERO
   Purpose: Hero banner for individual service pages
========================================================= */

.service-hero {
    position: relative;
}

.service-hero img {
    width: 100%;
    aspect-ratio: 1.87 / 1;
    object-fit: cover;
    display: block;
    position: relative;
}

.service-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.service-hero .hero-content {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
}

/* =========================================================
   TIPS — HERO GRID (Index Page)
========================================================= */

.tips-hero-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 2rem;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.tips-hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Right column block */
.tips-hero-box {
    background: rgba(0,0,0,0.45); /* semi-transparent dark overlay */
    border: 1px solid rgba(255,255,255,0.25); /* subtle border */
    border-radius: 8px; /* rounded corners */
    padding: 1.75rem;
    backdrop-filter: blur(2px);
}

.tips-hero-box p {
    font-size: 0.90rem !important;   /* smaller text */
    line-height: 1.55 !important;    /* improved readability */
    margin-bottom: 1rem !important;  /* consistent spacing */
    max-width: 100% !important;
}

/* =========================================================
   CATEGORY LIST
========================================================= */

.tips-category-block {
    margin-bottom: 2.5rem;
}

.tips-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-decoration: underline;
}

.tips-subcategory-list {
    list-style: disc;
    margin-left: 1.5rem;
}

.tips-subcategory-list li {
    margin-bottom: 0.4rem;
}

.tips-subcategory-list a {
    color: #ffffff;
    font-size: 1.05rem;
}

.tips-subcategory-list a:hover {
    color: #a72d2b;
}

/* =========================================================
   HERO BAR (Smaller Hero for Subpages)
========================================================= */
.hero-bar {
    height: 240px;
    min-height: 240px;
    max-height: 240px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* =========================================================
   BACK LINK
========================================================= */
.tips-back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #a72d2b;
    font-weight: 600;
}

.tips-back-link:hover {
    color: #d64542;
    text-decoration: underline;
}

/* =========================================================
   TIP CONTENT
========================================================= */
.tip-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e6e6e6;
}

/* =========================================================
   IMAGE GALLERY
========================================================= */
.tip-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.tip-gallery-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #333;
}

/* =========================================================
   HASHTAGS
========================================================= */
.tip-tags {
    margin-top: 1.5rem;
}

.tip-tags .tag {
    display: inline-block;
    background: #1e1e1e;
    border: 1px solid #333;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #cccccc;
}

/* =========================================================
   SUBCATEGORY DESCRIPTION
========================================================= */
.tips-subcategory-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    max-width: 80ch;
}

/* Divider line */
.tips-divider {
    border: none;
    height: 1px;
    background-color: #2a2a2a;
    margin: 2rem 0;
}

/* =========================================================
   LIST OF TIPS UNDER SUBCATEGORY
========================================================= */
.tips-list {
    list-style: disc;
    margin-left: 1.5rem;
}

.tips-list li {
    margin-bottom: 0.6rem;
}

.tips-list a {
    color: #ffffff;
    font-size: 1.1rem;
}

.tips-list a:hover {
    color: #a72d2b;
}

/* =========================================================
   FAQ MODULE — FRONTEND STYLING
   Purpose:
     - Provide a polished, consistent visual layout for the
       FAQ module (homepage, category pages, and FAQ detail).
     - Match the dark theme and spacing rules used across
       Tips, Services, and Projects.
   Notes:
     - All selectors are FAQ-specific to avoid conflicts.
     - Mirrors the Tips module styling for consistency.
========================================================= */


/* =========================================================
   FAQ INTRO SECTION (Top of /faqs)
   Purpose:
     - Two-column layout similar to Tips hero grid.
     - Provides a clean intro block for the FAQ homepage.
========================================================= */
/* =========================================================
   FAQS — HERO GRID (Cloned from Tips)
========================================================= */
.faqs-hero-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 2rem;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.faqs-hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.faqs-hero-box {
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 1.75rem;
    backdrop-filter: blur(2px);
}

.faqs-hero-box p {
    font-size: 0.90rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1rem !important;
    max-width: 100% !important;
}

/* =========================================================
   FAQS — CATEGORY LIST (Cloned from Tips)
========================================================= */
.faqs-category-block {
    margin-bottom: 2.5rem;
}

.faqs-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-decoration: underline;
}

.faqs-subcategory-list {
    list-style: disc;
    margin-left: 1.5rem;
}

.faqs-subcategory-list li {
    margin-bottom: 0.4rem;
}

.faqs-subcategory-list a {
    color: #ffffff;
    font-size: 1.05rem;
}

.faqs-subcategory-list a:hover {
    color: #a72d2b;
}

/* =========================================================
   FAQS — BACK LINK (Cloned from Tips)
========================================================= */
.faqs-back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #a72d2b;
    font-weight: 600;
}

.faqs-back-link:hover {
    color: #d64542;
    text-decoration: underline;
}

/* =========================================================
   FAQS — SUBCATEGORY DESCRIPTION (Cloned from Tips)
========================================================= */
.faqs-subcategory-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    max-width: 80ch;
}

.faqs-divider {
    border: none;
    height: 1px;
    background-color: #2a2a2a;
    margin: 2rem 0;
}

/* =========================================================
   FAQS — LIST OF FAQS UNDER SUBCATEGORY (Cloned from Tips)
========================================================= */
.faqs-list {
    list-style: disc;
    margin-left: 1.5rem;
}

.faqs-list li {
    margin-bottom: 0.6rem;
}

.faqs-list a {
    color: #ffffff;
    font-size: 1.1rem;
}

.faqs-list a:hover {
    color: #a72d2b;
}

/* =========================================================
   FAQ — CONTENT (Cloned from Tip Content)
========================================================= */
.faq-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e6e6e6;
}

/* =========================================================
   FAQ — IMAGE GALLERY (Cloned from Tip Gallery)
========================================================= */
.faq-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.faq-gallery-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #333;
}

/* =========================================================
   FAQ — HASHTAGS (Cloned from Tip Tags)
========================================================= */
.faq-tags {
    margin-top: 1.5rem;
}

.faq-tags .tag {
    display: inline-block;
    background: #1e1e1e;
    border: 1px solid #333;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #cccccc;
}

/* =========================================================
   STATEMENT BAR (ABOVE THE FOLD)
   Purpose: Promotional or informational bar under hero
========================================================= */

.statement-bar {
    background-color: #a72d2b;
    color: #ffffff;
}

.statement-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.statement-inner span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* =========================================================
   SERVICES — TEXT SECTIONS
   Purpose:
     - Summary paragraph
     - Description block
     - General service page text layout
========================================================= */

/* (No specific summary/description classes existed in your file,
   so this section remains a placeholder for clarity and future use.) */


/* =========================================================
   SERVICES — GALLERY GRID
   Purpose:
     - Thumbnail grid for service detail pages
     - Clean, uniform layout
========================================================= */

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    gap: 15px;
}

.service-gallery-grid img {
    width: 100%;
    height: 125px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}


/* =========================================================
   SERVICES — TEXT GRID (Used on Services Index Page)
   Purpose:
     - Grid of service names (text-only cards)
     - Clean, responsive layout
========================================================= */

.services-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-text-card {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 25px;
    background: #f7f7f7;
    border-radius: 6px;

    text-decoration: none;
    color: #333;
    font-weight: 600;

    transition: background 0.2s;
}

.service-text-card:hover {
    background: #eaeaea;
}


/* =========================================================
   HOMEPAGE — FEATURED SERVICES SECTION
   Purpose:
     - 3-column featured services preview
     - Dark theme cards
     - Consistent with other homepage sections
========================================================= */

.home-services {
    padding: 4rem 1.25rem;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.home-service-card {
    background: #1e1e1e;
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    height: 100%;

    transition: transform 0.2s ease;
}

.home-service-card:hover {
    transform: translateY(-4px);
}

.home-service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.home-service-card h3 {
    margin-bottom: 0.5rem;
}

.home-service-card p {
    flex: 1;
    color: #cccccc;
    margin-bottom: 1rem;
}

.home-service-card .view-details {
    text-align: right;
    font-weight: 600;
    color: #a72d2b;
    display: block;
}

.home-service-card .view-details:hover {
    color: #d64542;
}

.section-cta {
    margin-top: 2.5rem;
    text-align: center;
}

/* =========================================================
   PROJECTS — FEATURED IMAGE
   Purpose:
     - Large hero-style featured image at top of project pages
========================================================= */

.project-featured {
    margin-bottom: 3rem;
}

.project-featured img {
    width: 100% !important;
    height: auto !important;
    max-height: 600px;
    max-width: 1200px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}


/* =========================================================
   PROJECTS — GALLERY GRID
   Purpose:
     - Thumbnail grid for project detail pages
     - Clean, uniform layout (now matches Services)
========================================================= */

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.project-gallery-grid figure {
    background-color: #1a1a1a;
    padding: 0.5rem;
    border-radius: 6px;
}

.project-gallery-grid img {
    width: 100%;
    height: 160px; /* consistent thumbnail height */
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}

.project-gallery-grid figcaption {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #bbbbbb;
}


/* =========================================================
   PROJECTS — GRID (Projects Index Page)
   Purpose:
     - Grid of project cards
     - Dark theme, consistent with homepage services
========================================================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    display: block;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-card h3 {
    padding: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    text-align: center;
}

.project-card .view-details {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem 1.25rem;
    font-weight: 600;
    color: #a72d2b;
    text-decoration: none;
}

.project-card .view-details:hover {
    color: #d64542;
}


/* =========================================================
   HOMEPAGE — FEATURED PROJECTS SECTION
   Purpose:
     - Highlight selected projects on homepage
     - Clean card layout consistent with other homepage sections
========================================================= */

.featured-projects {
    padding: 4rem 1.25rem;
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.featured-project-card {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.project-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #222222;
}

.project-card-content p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
}

.no-projects-message {
    text-align: center;
    font-size: 1rem;
    color: #666666;
    margin-top: 2rem;
}



/* =========================================================
   ABOUT US — PAGE STRUCTURE
   Purpose:
     - Static informational page introducing the company
     - Includes hero, story, mission, and values sections
========================================================= */

.aboutus-hero {
    background-image: url("/images/site-image-01.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-block {
    max-width: 900px;
    margin: 0 auto;
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =========================================================
   ABOUT US — SECTION SPACING & LAYOUT FIXES
========================================================= */

.aboutus-story,
.aboutus-mission,
.aboutus-why {
    padding: 4rem 0; /* match homepage + services spacing */
    border-bottom: 1px solid #2a2a2a;
}

.aboutus-story h2,
.aboutus-mission h2,
.aboutus-why h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.aboutus-story p,
.aboutus-mission p,
.aboutus-why p {
    margin-bottom: 2rem;
}

.aboutus-cta {
    padding: 4rem 0 6rem;
    text-align: center;
}

/* =========================================================
   LIGHTBOX
   Purpose:
     - Unified lightbox used by Services + Projects
     - Supports overlay, navigation, captions
========================================================= */

.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.85);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 6px;
}

.lightbox-content p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #cccccc;
}

/* =========================================================
Login
   Purpose:
     - Admin Login layout
     - Simple form UN & PW
========================================================= */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.login-form {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    color: #000;
}

.login-form h1 {
    margin-bottom: 20px;
    text-align: center;
    color: #1e1e1e;
}

.login-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form button {
    width: 100%;
    background-color: #A72D2B;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #3A3D42;
}

.error-message {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}

/* Logout Button */
.logout-button {
    display: inline-block;
    background-color: #3A3D42;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.logout-button:hover {
    background-color: #A72D2B;
}

/* =========================================================
   FOOTER
   Purpose:
     - Multi-column footer layout
     - Contact info, navigation, branding
========================================================= */

.site-footer {
    color: #cccccc;
    padding: 3rem 1.25rem 1.5rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-column {
    max-width: 260px;
}

.footer-column strong {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    text-decoration: none;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-left {
    max-width: 400px;
}

.footer-right {
    display: flex;
    gap: 1.5rem;
}

.footer-right a {
    color: #cccccc;
    font-weight: 500;
}

.footer-right a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888888;
}

/* =========================================================
   FOOTER — COLUMN-SPECIFIC STYLES
   Purpose:
     - Provide light structure for semantic footer classes
     - Keep consistent with existing dark theme
========================================================= */

.footer-about p,
.footer-contact p,
.footer-hours p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-nav a {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* Social links */
.footer-social a {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
}

.footer-social a:hover {
    color: #ffffff;
    text-decoration: underline;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

/* Hamburger icon — hidden on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* Mobile slide-out nav (hidden by default on mobile only) */
.site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    width: 220px;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 2000;
}

/* Desktop nav should be visible */
@media (min-width: 769px) {
    .site-nav {
        position: static;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        display: flex;   /* ← RESTORES DESKTOP MENU */
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Mobile nav hidden until toggled */
@media (max-width: 768px) {
    .site-nav {
        display: none;
    }
}


.site-nav a {
    font-size: 1rem;
    padding: 0.5rem 0;
}

/* Show menu when active */
.site-nav.active {
    display: flex;
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   Purpose:
     - Improve layout on tablets and mobile devices
========================================================= */

@media (max-width: 768px) {
    /* Show hamburger on mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop nav on mobile */
    .site-nav {
        display: none;
    }

    /* Header */
    .site-header {
        height: 70px;
    }

    .site-header.shrink {
        height: 55px;
    }

    .site-logo img {
        height: 50px;
    }

    .site-header.shrink .site-logo img {
        height: 40px;
    }

    .site-nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    /* Hero */
    .hero-overlay {
        padding: 2rem;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    /* Statement bar */
    .statement-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-column,
    .footer-left {
        max-width: 100%;
        width: 100%;
    }

}

