/* Master stylesheet generated from site templates */

    :root {
        /* Premium & VIBRANT Australian Palette */
        --charcoal: #111111;     
        --eucalypt: #0f5c38;     
        --ochre: #e06c28;        
        --sand: #f4f0e6;         
        --paper: #ffffff;        
        --white: #ffffff;
        --border-color: #e0e0e0;
        
        --nav-height: 90px;
        --nav-scroll-height: 80px;
        
        --font-serif: 'Playfair Display', serif;
        --font-sans: 'Poppins', sans-serif;

        --logo-nav-url: url("images/logo.png");
        --logo-footer-url: url("images/logo.png");
        --logo-powered-mogged-url: url("https://getmogged.co.nz/logo.svg");
        --logo-powered-idyllic-url: url("http://us.idyllic.app/icon.svg");
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: var(--font-sans);
        background-color: var(--paper);
        color: var(--charcoal);
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden; 
    }
    
    html {
        scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-serif);
        font-weight: 600;
        color: var(--charcoal);
        line-height: 1.2;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
    }

    img {
        max-width: 100%;
        display: block;
    }

    .container {
        max-width: 1280px; 
        margin: 0 auto;
        padding: 0 30px;
    }

    .logo-mark {
        display: block;
        background-image: var(--logo-nav-url);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .footer-logo {
        display: block;
        background-image: var(--logo-footer-url);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .powered-logo {
        display: block;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        height: 24px;
        width: 120px;
    }

    .powered-logo--mogged { background-image: var(--logo-powered-mogged-url); }
    .powered-logo--idyllic { background-image: var(--logo-powered-idyllic-url); }

    /* --- Buttons --- */
    .btn {
        display: inline-block;
        padding: 12px 34px; 
        font-family: var(--font-sans);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .btn-primary {
        background-color: var(--ochre);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(224, 108, 40, 0.3);
    }

    .btn-primary:hover {
        background-color: #c55615;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(224, 108, 40, 0.4);
    }

    .btn-outline {
        background-color: transparent;
        border: 2px solid var(--charcoal);
        color: var(--charcoal);
    }

    .btn-outline:hover {
        background-color: var(--charcoal);
        color: var(--white);
    }

    .btn-text {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 700;
        color: var(--ochre);
        border-bottom: 2px solid rgba(224, 108, 40, 0.2);
        padding-bottom: 2px;
        transition: border-color 0.3s;
    }
    
    .btn-text:hover {
        border-bottom-color: var(--ochre);
    }

    /* Section Styling */
    section {
        padding: 100px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .bg-sand { background-color: var(--sand); }
    .bg-white { background-color: var(--white); }

    .section-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-header .meta-tag {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--ochre);
        display: block;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .section-header h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .section-header p {
        font-size: 1.15rem;
        color: #444;
        max-width: 650px;
        margin: 0 auto;
        font-weight: 400;
    }

    /* --- Header & Navigation --- */
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        background-color: transparent; /* 100% Transparent Before Scroll */
        border-bottom: 1px solid transparent;
        transition: all 0.4s ease-in-out;
        padding: 20px 0;
    }

    /* Scrolled state */
    .header.scrolled {
        padding: 0;
        background-color: rgba(15, 92, 56, 0.5); /* 50% Transparent Green */
        backdrop-filter: blur(5px);
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100px; 
        transition: height 0.4s ease;
    }
    
    .header.scrolled .navbar {
        height: var(--nav-scroll-height);
    }

    .navbar .logo {
        transition: all 0.4s ease;
        margin-top: 40px; 
        z-index: 1001; 
        display: inline-flex;
        align-items: center;
        line-height: 0;
    }

    .navbar .logo .logo-mark {
        width: 350px; 
        height: 140px;
        transition: all 0.4s ease;
        filter: none; 
    }

    .header.scrolled .navbar .logo {
        margin-top: 0;
    }
    
    .header.scrolled .navbar .logo .logo-mark {
        width: 240px;
        height: 80px;
        filter: grayscale(1) opacity(1) brightness(200%); /* Brightened for green BG */
    }

    .nav-links {
        display: none; /* Moved to Sidebar */
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
        transition: margin 0.4s ease;
        z-index: 1002;
    }

    .header.scrolled .nav-actions {
        margin-top: 0;
    }
    
    .nav-actions .btn-outline {
        border-color: var(--white);
        color: var(--white);
        padding: 8px 20px;
        font-size: 0.75rem;
    }

    /* Keep button white on scrolled green background */
    .header.scrolled .nav-actions .btn-outline {
        border-color: var(--white);
        color: var(--white);
    }
    
    .nav-actions .btn-outline:hover {
        background-color: var(--white);
        color: var(--ochre);
    }

    /* Menu Toggle Button */
    .menu-toggle-btn {
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--white);
        transition: color 0.3s;
        margin-left: 15px;
    }
    
    /* Keep toggle white on scrolled green background */
    .header.scrolled .menu-toggle-btn {
        color: var(--white);
    }

    /* --- SIDEBAR MENU --- */
    .sidebar-menu {
        position: fixed;
        top: 0;
        right: -400px; 
        width: 400px;
        height: 100vh;
        background-color: var(--sand);
        z-index: 2000;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        display: flex;
        flex-direction: column;
        padding: 40px;
        overflow-y: auto;
    }

    .sidebar-menu.active {
        right: 0;
    }

    .sidebar-close {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--charcoal);
        transition: transform 0.3s;
    }
    .sidebar-close:hover {
        transform: rotate(90deg);
        color: var(--eucalypt);
    }

    /* Sidebar Logo Updated */
    .sidebar-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        padding: 2rem; 
        background-color: var(--ochre); /* Orange Background */
        border-radius: 4px;
    }
    .sidebar-logo .logo-mark {
        width: 200px;
        height: 140px;
        filter: none; /* Removed filter */
    }

    .sidebar-links {
        list-style: none;
        margin-bottom: 40px;
        padding: 0 1rem;
    }

    .sidebar-links li {
        border-bottom: 1px solid rgba(0,0,0,0.1); 
    }

    .sidebar-links a {
        display: block;
        padding: 15px 0;
        font-family: var(--font-serif);
        font-size: 1.2rem;
        color: var(--charcoal);
        transition: color 0.3s, padding-left 0.3s;
    }

    .sidebar-links a:hover {
        color: var(--ochre);
        padding-left: 10px;
    }

    .sidebar-slider {
        position: relative;
        height: 200px;
        margin: 0 1rem 30px 1rem; 
        overflow: hidden;
        border-radius: 4px;
    }
    
    .sidebar-slide-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        animation: fadeSlide 12s infinite;
    }

    .sidebar-slide-img:nth-child(1) { animation-delay: 0s; }
    .sidebar-slide-img:nth-child(2) { animation-delay: 4s; }
    .sidebar-slide-img:nth-child(3) { animation-delay: 8s; }

    @keyframes fadeSlide {
        0% { opacity: 0; }
        10% { opacity: 1; }
        33% { opacity: 1; }
        43% { opacity: 0; }
        100% { opacity: 0; }
    }

    .sidebar-desc {
        padding: 0 1rem;
        text-align: center;
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
    }

    /* --- Hero Section (UPDATED) --- */
    #hero {
        padding: 0;
        padding-bottom: 1rem; /* 1 rem padding from bottom */
        height: 100vh; 
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-end; /* Anchors content to bottom */
        justify-content: center; /* Centers horizontally */
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Gradient Overlay from bottom */
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
        z-index: 1;
    }

    .hero-container {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Ensures content is at bottom */
        align-items: center;
        text-align: center;
        color: var(--white);
        padding: 0 20px;
    }

    /* Cleaned up content box - removed blur and border */
    .hero-content-box {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        border: none;
        max-width: 900px;
        border-radius: 0;
        box-shadow: none;
        margin-bottom: 1rem; /* Spacing within the container */
    }

    .hero-container h1 {
        font-size: 4.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: -1px;
        color: var(--white);
        text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Stronger shadow for readability */
    }

    .hero-container p {
        font-size: 1.3rem;
        font-family: var(--font-sans);
        font-weight: 400;
        max-width: 700px;
        margin: 0 auto 40px auto;
        opacity: 1;
        color: var(--white);
        text-shadow: 0 1px 5px rgba(0,0,0,0.5); /* Stronger shadow for readability */
    }

    .hero-cta-group {
        display: inline-flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-cta-group .btn-outline {
        border-color: var(--white);
        color: var(--white);
    }

    /* --- Editorial Index Layout --- */
    .editorial-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .featured-story {
        position: relative;
    }
    .featured-story img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        margin-bottom: 25px;
        border-radius: 4px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .meta-line {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--ochre);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }
    .featured-story h3 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .featured-story p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 25px;
    }

    .story-list {
        border-top: 2px solid var(--charcoal);
    }
    .story-item {
        padding: 30px 0;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        gap: 20px;
        transition: background-color 0.3s;
    }
    .story-item:hover h4 {
        color: var(--ochre);
    }
    .story-content {
        flex: 1;
    }
    .story-item h4 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    .story-item img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 4px;
    }

    /* --- MAGAZINE UTILITY GRIDS --- */
    .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    /* --- SECTION: REGIONAL GUIDES --- */
    .region-card {
        position: relative;
        overflow: hidden;
        group: region;
    }
    .region-card .img-wrap {
        height: 350px;
        overflow: hidden;
        margin-bottom: 20px;
        position: relative;
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.25s ease, box-shadow 0.3s ease;
    }
    .region-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
    .region-card:hover img {
        transform: scale(1.08);
    }
    .region-card .region-card-link {
        display: block;
        border-radius: 4px;
    }
    .region-card .region-card-link:hover .img-wrap {
        box-shadow: 0 12px 30px rgba(0,0,0,0.16);
    }
    .region-card .region-card-link:active .img-wrap {
        transform: scale(0.98);
    }
    .region-card .region-card-link:active img {
        transform: scale(1.02);
    }
    .region-card .region-card-link:focus-visible {
        outline: 2px solid var(--ochre);
        outline-offset: 4px;
    }
    .region-card h4 {
        font-size: 1.5rem;
        margin-bottom: 5px;
        color: var(--charcoal);
    }
    .region-card p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    /* --- SLEEK MINIMALIST MARQUEE --- */
    .marquee-section {
        padding: 20px 0; /* Narrow */
        background-color: var(--sand); /* Cream Background */
        color: var(--charcoal);
        overflow: hidden;
        position: relative;
        border-bottom: none;
    }
    
    .marquee-track {
        display: flex;
        white-space: nowrap;
        animation: scrollMarquee 30s linear infinite;
    }
    
    .marquee-item {
        font-family: var(--font-sans); /* Sleek Sans Serif */
        font-size: 1.2rem; /* Minimalist size */
        margin-right: 80px;
        color: var(--charcoal);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 500;
        cursor: default; /* No hover effect */
        pointer-events: none; /* No interaction */
    }
    
    @keyframes scrollMarquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); } 
    }

    /* --- SECTION: INTERACTIVE MAP --- */
    .map-wrapper {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 50px;
        align-items: center;
        background: var(--white);
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        perspective: 1500px; /* Enable 3D space for map */
    }
    
    .map-container {
        position: relative;
        width: 100%;
        padding-bottom: 85%;
        background-image: url('images/map.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.8;
        /* Parallax/Tilt Transition settings */
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform-style: preserve-3d;
    }

    /* Map Parallax Effect on Hover */
    .map-wrapper:hover .map-container {
        transform: rotateX(3deg) rotateY(-3deg) scale(1.02);
    }

    .hotspot {
        position: absolute;
        width: 22px;
        height: 22px;
        background-color: var(--ochre);
        border: 2px solid var(--white);
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        transform: translateZ(20px); /* Pop out hotspots in 3D */
    }

    .hotspot::after {
        content: '';
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 100%; height: 100%;
        border-radius: 50%;
        background-color: var(--ochre);
        opacity: 0.6;
        animation: pulse 2s infinite;
        z-index: -1;
    }

    @keyframes pulse {
        0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
        100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
    }

    .hotspot:hover, .hotspot.active {
        background-color: var(--eucalypt);
        transform: translateZ(30px) scale(1.3); /* Enhance pop out on hover */
    }
    .hotspot.active::after {
        background-color: var(--eucalypt);
    }

    .map-info-card {
        background-color: var(--sand); /* Uniform 1 color */
        border-left: none; /* Removed Orange Border */
        padding: 40px;
        transition: all 0.4s ease;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .map-info-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 20px;
        display: block;
    }

    .map-info-title {
        font-family: var(--font-serif);
        font-size: 2rem;
        margin-bottom: 10px;
        color: var(--charcoal);
    }

    .map-info-desc {
        color: #555;
        font-size: 1rem;
        margin-bottom: 25px;
    }

    /* --- SECTION: EXPERIENCES --- */
    .exp-card {
        background: var(--white);
        padding: 40px 30px;
        border: 1px solid transparent;
        transition: all 0.3s ease;
        text-align: center;
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        color: inherit;
        text-decoration: none;
        cursor: pointer;
        
        /* Flexbox added for vertical button alignment */
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }
    .exp-card:hover {
        border-color: var(--ochre);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(224, 108, 40, 0.15);
    }
    .exp-card:hover .btn-text {
        border-bottom-color: var(--ochre);
    }
    .exp-card:focus-visible {
        outline: 2px solid var(--ochre);
        outline-offset: 4px;
    }
    .exp-icon {
        font-size: 2.5rem;
        color: var(--eucalypt);
        margin-bottom: 25px;
    }
    .exp-card h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .exp-card p {
        font-size: 0.95rem;
        color: #666;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    /* Push button to bottom of card */
    .exp-card .btn-text {
        margin-top: auto;
    }
    
    /* Experiences Slider */
    .explore-slider-container {
        margin-top: 50px;
        width: 100%;
        overflow: hidden;
        position: relative;
        border-radius: 4px;
    }
    
    .explore-slider-track {
        display: flex;
        width: calc(250px * 12); 
        animation: slideTrack 40s linear infinite;
    }
    
    .explore-slide {
        width: 300px;
        height: 200px;
        flex-shrink: 0;
        margin-right: 20px;
        position: relative;
        overflow: hidden;
        border-radius: 4px;
    }
    
    .explore-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    
    .explore-slide:hover img {
        transform: scale(1.1);
    }
    
    @keyframes slideTrack {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* --- SECTION: CURATED STAYS --- */
    .stay-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
        border-radius: 4px;
        overflow: hidden;
    }
    .stay-card:hover {
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        transform: translateY(-3px);
    }
    .stay-img {
        height: 280px;
        width: 100%;
        object-fit: cover;
    }
    .stay-content {
        padding: 30px;
    }
    .stay-meta {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--eucalypt);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }
    .stay-title {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    .stay-loc {
        font-size: 0.9rem;
        color: #777;
        font-style: italic;
        margin-bottom: 15px;
        display: block;
    }
    .stay-desc {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .stay-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .stay-price {
        font-family: var(--font-sans);
        font-weight: 600;
        color: var(--charcoal);
    }
    .stay-price span {
        font-weight: 400;
        font-size: 0.85rem;
        color: #888;
    }

    /* --- SECTION: EVENTS & FESTIVALS --- */
    .events-layout {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
    .featured-event {
        position: relative;
        height: 100%;
        min-height: 500px;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    .featured-event img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .event-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        color: var(--white);
    }
    .event-overlay h3 { color: var(--white); font-size: 2rem; margin-bottom: 10px; }
    .event-overlay .date-badge { 
        background: var(--ochre); 
        color: var(--white); 
        padding: 6px 16px; 
        font-size: 0.85rem; 
        text-transform: uppercase; 
        letter-spacing: 1px;
        display: inline-block;
        margin-bottom: 15px;
        font-weight: 600;
        border-radius: 2px;
    }
    .event-list-header {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 30px;
        border-bottom: 2px solid var(--charcoal);
        padding-bottom: 15px;
    }
    .event-row {
        display: flex;
        gap: 25px;
        padding: 25px 0;
        border-bottom: 1px solid var(--border-color);
        transition: background 0.3s;
    }
    .event-row:hover {
        background: #fafafa;
        padding-left: 10px;
    }
    .event-date {
        text-align: center;
        min-width: 60px;
    }
    .event-date .day {
        display: block;
        font-family: var(--font-serif);
        font-size: 1.8rem;
        line-height: 1;
        color: var(--charcoal);
    }
    .event-date .month {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: var(--ochre);
        letter-spacing: 1px;
        font-weight: 600;
    }
    .event-info h5 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    .event-info span {
        font-size: 0.9rem;
        color: #666;
    }

    /* --- Visual Journal (Hover Swap) --- */
    #issue-preview {
        background-color: var(--white);
    }
    .preview-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .preview-item {
        cursor: pointer;
    }
    .preview-item figure {
        margin: 0;
        position: relative;
        height: 400px;
        overflow: hidden;
        margin-bottom: 15px;
        border-radius: 4px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .preview-item img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.5s ease;
    }
    .preview-item .img-default {
        opacity: 1;
        z-index: 2;
    }
    .preview-item .img-hover {
        opacity: 0;
        z-index: 3;
    }
    .preview-item:hover .img-default {
        opacity: 0;
    }
    .preview-item:hover .img-hover {
        opacity: 1;
    }
    .preview-item figcaption {
        font-family: var(--font-serif);
        font-size: 1.1rem;
        font-style: italic;
        color: var(--charcoal);
    }
    .preview-item .loc {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.75rem;
        text-transform: uppercase;
        color: var(--eucalypt);
        font-style: normal;
        margin-top: 5px;
        letter-spacing: 1px;
        font-weight: 600;
    }

    /* --- ADVERTISE SECTION --- */
    #advertise-hub {
        background-color: var(--eucalypt);
        color: var(--white);
    }
    #advertise-hub h2, #advertise-hub h3, #advertise-hub p {
        color: var(--white);
    }
    #advertise-hub .meta-tag { color: var(--ochre); }

    .ad-intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-bottom: 80px;
    }
    .ad-intro-text {
        font-size: 1.2rem;
        font-weight: 300;
        opacity: 0.95;
    }
    .ad-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stat-box {
        border-left: 1px solid rgba(255,255,255,0.3);
        padding-left: 20px;
    }
    .stat-box strong {
        display: block;
        font-family: var(--font-serif);
        font-size: 2rem;
        color: var(--ochre);
    }
    .stat-box span {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Ad Products */
    .ad-products {
        background: var(--paper);
        padding: 80px;
        margin-top: 50px;
        color: var(--charcoal);
        border-radius: 4px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }
    .ad-products h3 {
        color: var(--charcoal) !important; 
        text-align: center; 
        font-size: 2rem;
        margin-bottom: 50px;
    }
    .product-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .product-item {
        text-align: center;
    }
    .product-item .icon {
        font-size: 2rem;
        color: var(--eucalypt);
        margin-bottom: 20px;
    }
    .product-item h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-family: var(--font-serif);
    }
    .product-item p {
        color: #666 !important;
        font-size: 0.95rem;
    }

    /* Promotion Banner inside Advertise */
    .promo-banner {
        background-color: var(--ochre);
        padding: 40px;
        text-align: center;
        margin-top: -40px;
        margin-bottom: 80px;
        position: relative;
        z-index: 10;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(224, 108, 40, 0.3);
    }
    .promo-banner h3 { color: var(--white) !important; margin-bottom: 10px; }
    .promo-banner p { color: rgba(255,255,255,0.95) !important; margin-bottom: 0; }

    /* --- Contact Form --- */
    #contact {
        background-color: var(--paper);
    }
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    .contact-text h3 { font-size: 2.5rem; margin-bottom: 20px; }
    .contact-details { list-style: none; margin: 30px 0; }
    .contact-details li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-size: 1.1rem; }
    .contact-details i { color: var(--ochre); }
    
    .media-kit-box {
        background: var(--sand);
        padding: 30px;
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
        border-radius: 4px;
    }
    
    .minimal-form .form-group { margin-bottom: 25px; }
    .minimal-form input, .minimal-form select, .minimal-form textarea {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 2px solid #ddd;
        padding: 15px 0;
        font-family: var(--font-sans);
        font-size: 1rem;
        outline: none;
        transition: border 0.3s;
    }
    .minimal-form input:focus, .minimal-form textarea:focus {
        border-bottom-color: var(--eucalypt);
    }
    .minimal-form textarea { resize: none; min-height: 100px; }


    /* --- NEW CINEMATIC VIDEO SUBSCRIBE SECTION --- */
    #video-subscribe-section {
        position: relative;
        height: 700px; 
        background-color: var(--charcoal);
        display: grid;
        place-items: center; 
        overflow: hidden;
        border-bottom: none;
    }

    .video-layer {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: 1;
    }
    .video-layer video {
        width: 100%; height: 100%; object-fit: cover;
    }

    .mask-layer {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-color: var(--charcoal);
        z-index: 2;
        mix-blend-mode: multiply;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .video-cutout-text {
        font-family: var(--font-serif);
        font-weight: 700;
        font-size: 7vw; 
        line-height: 1.1;
        text-align: center;
        color: #ffffff; 
        text-transform: uppercase;
        margin: 0;
        letter-spacing: -2px;
    }

    .content-layer {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        pointer-events: none; 
    }

    .video-cutout-spacer {
        font-family: var(--font-serif);
        font-weight: 700;
        font-size: 7vw;
        line-height: 1.1;
        text-align: center;
        text-transform: uppercase;
        margin: 0;
        letter-spacing: -2px;
        opacity: 0; 
        pointer-events: none;
    }

    .form-wrapper {
        pointer-events: auto;
        margin-top: 100px; 
        width: 100%;
        max-width: 600px;
        padding: 0 20px;
        text-align: center;
    }

    .subscribe-sub {
        font-family: var(--font-sans);
        font-size: 1rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 25px;
        letter-spacing: 0.5px;
    }

    .cinematic-form {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .cinematic-form input[type="email"] {
        flex: 1;
        padding: 16px 25px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.5);
        font-family: var(--font-sans);
        font-size: 1rem;
        outline: none;
        color: var(--white);
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }

    .cinematic-form input[type="email"]::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .cinematic-form input[type="email"]:focus {
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--white);
    }

    .cinematic-form button {
        padding: 16px 30px; 
        font-size: 0.9rem;
        border-radius: 4px;
        border: none;
        background-color: var(--ochre);
        color: var(--white);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .cinematic-form button:hover {
        background-color: #c55615;
        transform: translateY(-2px);
    }


    /* --- Footer --- */
    .footer {
        background-color: var(--charcoal);
        color: #999;
        padding: 80px 0 30px;
        font-size: 0.9rem;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
        padding-bottom: 60px;
        border-bottom: 1px solid #333;
    }
    .footer .logo-container .footer-logo {
        width: 420px; 
        height: 90px;
        max-width: 100%;
        margin-bottom: 20px; 
        filter: grayscale(1) opacity(0.8);
    }

    .footer h4 { color: var(--white); margin-bottom: 25px; font-size: 1rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 1px;}
    .footer ul { list-style: none; }
    .footer li { margin-bottom: 12px; }
    .footer a:hover { color: var(--ochre); }
    
    .social-square {
        width: 80px;
        height: 80px;
        background-color: #333;
        margin-bottom: 15px;
        border-radius: 4px;
        overflow: hidden;
    }
    .social-square img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
        transition: opacity 0.3s;
    }
    .social-square:hover img {
        opacity: 1;
    }
    .insta-icon {
        font-size: 1.5rem;
        color: var(--white);
        display: block;
        margin-left: 28px; 
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer-powered-by { display: flex; gap: 20px; }
    
    .footer-powered-by .powered-logo { 
        height: 24px; 
        filter: brightness(10) invert(0);
        opacity: 1; 
    }

    /* --- Back to Top Button --- */
    #back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: var(--ochre);
        color: var(--white);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        z-index: 999;
        box-shadow: 0 4px 15px rgba(224, 108, 40, 0.4);
        transition: all 0.3s ease;
    }

    #back-to-top:hover {
        background-color: var(--eucalypt);
        transform: translateY(-3px);
    }

    /* --- NEW CSS FOR FLIPBOOK SECTION --- */
    .flipbook-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        min-height: 600px;
    }

    .flipbook-intro h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    .flipbook-intro p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 30px;
    }

    /* Checkbox Logic - Hiding Inputs */
    .flipbook-wrapper input {
        display: none;
    }

    /* 3D Book Container */
    .flip-book {
        width: 350px;
        height: 480px; 
        position: relative;
        transition-duration: 1s;
        perspective: 1500px;
        margin: 0 auto;
    }

    /* Covers and Pages Shared Styles */
    .flip-cover, .flip-back-cover, .flip-page {
        width: 100%;
        height: 100%;
        border-radius: 0 5px 5px 0; 
        box-shadow: 0 0 10px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        transform-origin: center left;
        position: absolute;
    }

    /* Cover Styling */
    .flip-cover {
        z-index: 4;
        transition: transform 1s;
        transform-style: preserve-3d; 
    }

    /* Back Cover (The static one at the end) */
    .flip-back-cover {
        background-color: var(--eucalypt);
        position: relative;
        z-index: -1;
    }

    /* Page Styling */
    .flip-page {
        background-color: var(--white);
        width: 340px; 
        height: 470px; 
        top: 5px; 
        transform-style: preserve-3d;
        transform: rotateY(0deg);
        transition-duration: 1.5s;
        border-left: 1px solid #ddd;
    }

    .flip-page img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 5px 5px 0;
    }

    /* Front/Back of Pages */
    .flip-front, .flip-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        box-sizing: border-box;
        overflow: hidden;
    }

    .flip-front {
        padding: 25px;
        background: var(--paper);
    }
    
    .flip-front h4 {
        font-family: var(--font-serif);
        font-size: 1.4rem;
        margin-bottom: 10px;
        color: var(--charcoal);
    }
    .flip-front p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.6;
    }

    /* Specific Styles for Cover Faces */
    .flip-cover .flip-front {
        background-color: var(--eucalypt);
        color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        border-left: 2px solid rgba(255,255,255,0.1);
        z-index: 2;
    }

    .flip-cover .flip-front h3 {
        font-family: var(--font-serif);
        font-size: 2.2rem;
        color: var(--white);
        line-height: 1.1;
        margin-top: 20px;
    }
    .flip-cover .flip-front .edition {
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.8rem;
        margin-bottom: 20px;
        color: var(--ochre);
        font-weight: 700;
    }

    /* Back of the cover (The Inside Left Page) */
    .flip-cover .flip-back {
        background-color: var(--white);
        transform: rotateY(180deg);
        z-index: 1;
    }

    /* Standard Page Back */
    .flip-page .flip-back {
        transform: rotateY(180deg);
        z-index: 99;
        background: var(--white);
    }

    /* Navigation Arrows */
    .flip-next, .flip-prev {
        position: absolute;
        bottom: 20px;
        cursor: pointer;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid #ccc;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        color: var(--charcoal);
        transition: all 0.3s;
        background: rgba(255,255,255,0.8);
        z-index: 50; 
    }
    .flip-next:hover, .flip-prev:hover {
        background: var(--ochre);
        border-color: var(--ochre);
        color: var(--white);
    }
    .flip-next { right: 20px; }
    .flip-prev { left: 20px; }

    /* Page Stacking Order */
    #flip-page1 { z-index: 3; }
    #flip-page2 { z-index: 2; }
    #flip-page3 { z-index: 1; }

    .flipbook-instruction {
        text-align: center;
        margin-top: 30px;
        font-style: italic;
        font-size: 0.9rem;
        color: #777;
    }

    /* Interaction Logic */
    /* Open Cover */
    #flip-checkbox-cover:checked ~ .flip-book {
        transform: translateX(180px); /* Shift right to center the spread */
    }
    #flip-checkbox-cover:checked ~ .flip-book .flip-cover {
        transition: transform 1.5s, z-index 0.5s 0.5s;
        transform: rotateY(-180deg);
        z-index: 1;
    }
    #flip-checkbox-cover:checked ~ .flip-book .flip-page {
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }

    /* Turn Page 1 */
    #flip-checkbox-page1:checked ~ .flip-book #flip-page1 {
        transform: rotateY(-180deg);
        z-index: 2;
    }
    /* Turn Page 2 */
    #flip-checkbox-page2:checked ~ .flip-book #flip-page2 {
        transform: rotateY(-180deg);
        z-index: 3;
    }

    /* --- Responsive Queries --- */
    @media (max-width: 992px) {
        .editorial-grid { grid-template-columns: 1fr; gap: 40px; }
        .featured-story img { height: 400px; }
        .story-list { border-top: none; }
        
        .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 30px; }
        .events-layout { grid-template-columns: 1fr; }
        .featured-event { height: 400px; min-height: auto; margin-bottom: 40px; }
        
        .ad-intro-grid { grid-template-columns: 1fr; }
        .contact-container { grid-template-columns: 1fr; }
        
        .navbar .logo .logo-mark { width: 180px; height: 75px; margin-top: 10px; }
        .header.scrolled .navbar .logo .logo-mark { width: 140px; height: 60px; }
        .nav-actions { display: flex; } 
        
        .sidebar-menu { width: 100%; right: -100%; }
        
        .hero-container h1 { font-size: 3rem; }

        /* Flipbook Responsive */
        .flipbook-section {
            grid-template-columns: 1fr;
            text-align: center;
            padding-bottom: 60px;
        }
        .flipbook-intro { margin-bottom: 40px; }
        
        /* Disable shift on mobile to keep it centered */
        #flip-checkbox-cover:checked ~ .flip-book {
            transform: translateX(0); 
        }
        .flip-book {
            transform: scale(0.9); 
        }

        /* Subscribe Section Responsive */
        .video-cutout-text, .video-cutout-spacer { font-size: 11vw; }

        /* Map Responsive */
        .map-wrapper { grid-template-columns: 1fr; gap: 30px; padding: 20px; }
        .map-info-card { min-height: auto; }
        
        /* Footer Responsive */
        .footer-grid { grid-template-columns: 1fr; }
        .social-square { margin: 0 auto 15px auto; }
        .insta-icon { margin: 0 auto; text-align: center; }
    }

    @media (max-width: 768px) {
        .preview-grid, .product-list { grid-template-columns: 1fr; }
        .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
        .region-card .img-wrap { height: 250px; }
        .stay-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
        .stay-footer a { margin-top: 10px; }
        .ad-products { padding: 40px 20px; }
        .footer-bottom { flex-direction: column; gap: 20px; }
        .hero-content-box { padding: 30px; }
        .flip-book { transform: scale(0.8); }
        
        /* Subscribe Section Mobile */
        .cinematic-form { flex-direction: column; width: 100%; }
        .cinematic-form input[type="email"], .cinematic-form button { width: 100%; }
    }

    @media (max-width: 600px) {
        .nav-actions .btn {
            font-size: 0.5rem;
            padding: 5px 14px;
            letter-spacing: 0.5px;
        }

        #hero {
            height: auto;
            padding-top: 140px;
            padding-bottom: 40px;
            display: block;
        }

        .hero-video {
            position: relative;
            height: auto;
            width: 100%;
            margin: 0 auto;
            border-radius: 12px;
            display: block;
        }

        .hero-overlay {
            display: none;
        }

        .hero-container {
            position: relative;
            padding: 20px;
            margin-top: 20px;
            color: var(--charcoal);
            align-items: center;
        }

        .hero-container h1 {
            font-size: 2.4rem;
            color: var(--charcoal);
            text-shadow: none;
        }

        .hero-container p {
            font-size: 1rem;
            color: #333;
            text-shadow: none;
            margin-bottom: 25px;
        }

        .hero-cta-group {
            width: 100%;
            gap: 10px;
        }

        .hero-cta-group .btn {
            flex: 1 1 calc(50% - 10px);
            min-width: calc(50% - 10px);
            text-align: center;
            font-size: 0.75rem;
            padding: 10px 12px;
        }

        .hero-cta-group .btn-outline {
            border-color: var(--charcoal);
            color: var(--charcoal);
        }

        .header {
            background-color: rgba(15, 92, 56, 0.5);
            backdrop-filter: blur(5px);
            padding: 0;
        }

        .navbar {
            height: var(--nav-scroll-height);
        }

        .navbar .logo {
            margin-top: 0;
        }

        .nav-actions {
            margin-top: 0;
        }

        #video-subscribe-section .video-cutout-text,
        #video-subscribe-section .video-cutout-spacer,
        #video-subscribe-section .mask-layer {
            display: none;
        }

        #video-subscribe-section .content-layer {
            padding: 60px 20px;
        }
    }


/* === Editorial template (red-centre) === */
/* --- ARTICLE SPECIFIC STYLES --- */
    
    /* Article Hero */
    .page-editorial .article-hero {
        height: 70vh;
        position: relative;
        overflow: hidden;
        margin-bottom: 80px;
        background-color: var(--charcoal);
    }
    .page-editorial .article-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
    }
    .page-editorial .article-hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 60px 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: var(--white);
        text-align: center;
    }
    .page-editorial .article-hero h1 {
        color: var(--white);
        font-size: 4rem;
        margin-bottom: 15px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .page-editorial .article-meta {
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        color: var(--ochre);
        font-weight: 600;
        margin-bottom: 10px;
        display: block;
    }

    /* Article Body Layout */
    .page-editorial .article-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 30px;
    }

    .page-editorial .article-lead {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-style: italic;
        color: #555;
        line-height: 1.6;
        margin-bottom: 50px;
        text-align: center;
        border-bottom: 1px solid var(--ochre);
        padding-bottom: 40px;
    }

    .page-editorial .article-body p {
        margin-bottom: 30px;
        font-size: 1.15rem;
        color: #333;
        font-weight: 300;
    }

    /* Dropcap */
    .page-editorial .article-body p:first-of-type::first-letter {
        float: left;
        font-family: var(--font-serif);
        font-size: 5rem;
        line-height: 0.8;
        padding-right: 15px;
        padding-top: 5px;
        color: var(--ochre);
        font-weight: 700;
    }

    .page-editorial .article-body h3 {
        font-size: 2rem;
        margin-top: 60px;
        margin-bottom: 25px;
        color: var(--charcoal);
    }

    /* In-article Images */
    .page-editorial .article-img-full {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        height: 500px;
        object-fit: cover;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    
    .page-editorial .article-img-inline {
        width: 100%;
        height: auto;
        border-radius: 4px;
        margin: 40px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .page-editorial .img-caption {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        color: #777;
        margin-top: -30px; /* Pull closer to image */
        margin-bottom: 40px;
        text-align: center;
        font-style: italic;
    }

    /* "Rich Content" List Styles */
    .page-editorial .rich-list {
        list-style: none;
        margin: 40px 0;
        border-top: 2px solid var(--border-color);
        border-bottom: 2px solid var(--border-color);
        padding: 40px 0;
    }
    .page-editorial .rich-list li {
        margin-bottom: 30px;
    }
    .page-editorial .rich-list li:last-child { margin-bottom: 0; }
    .page-editorial .rich-list h4 {
        font-size: 1.3rem;
        color: var(--eucalypt);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .page-editorial .rich-list h4 i {
        color: var(--ochre);
    }

    /* Related Content */
    .page-editorial .related-section {
        background-color: var(--sand);
        padding: 80px 0;
        margin-top: 100px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .page-editorial main { padding-top: calc(var(--nav-height) + 50px); }
        .page-editorial .nav-actions .btn-outline { display: none; }
        .page-editorial .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .page-editorial .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .page-editorial .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .page-editorial .article-hero h1 { font-size: 2.5rem; }
        .page-editorial .article-hero { height: 50vh; }
        .page-editorial .footer-grid { grid-template-columns: 1fr; }
        .page-editorial .footer-bottom { flex-direction: column; gap: 20px; }
        .page-editorial .article-img-full { height: 300px; }
    }


/* === Regional guides template (nsw) === */
/* --- ARTICLE HERO (Redesigned) --- */
    .page-regional .article-hero {
        height: 85vh;
        position: relative;
        overflow: hidden;
        background-color: var(--charcoal);
    }
    .page-regional .article-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
        transform: scale(1.05);
        animation: slowZoom 20s infinite alternate;
    }
    @keyframes slowZoom {
        from { transform: scale(1.05); }
        to { transform: scale(1.15); }
    }
    .page-regional .article-hero-content {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1000px;
        padding: 0 30px;
        text-align: center;
        color: var(--white);
        z-index: 10;
    }
    .page-regional .article-meta {
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.8rem;
        color: var(--ochre);
        font-weight: 700;
        margin-bottom: 20px;
        display: block;
        opacity: 0;
        animation: fadeUp 1s forwards 0.5s;
    }
    .page-regional .article-hero h1 {
        color: var(--white);
        font-size: 4.5rem;
        line-height: 1.1;
        margin-bottom: 30px;
        text-shadow: 0 4px 20px rgba(0,0,0,0.5);
        opacity: 0;
        animation: fadeUp 1s forwards 0.8s;
    }
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* --- ARTICLE BODY --- */
    .page-regional .article-layout {
        display: grid;
        grid-template-columns: 1fr 700px 1fr;
        gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
        padding-top: 80px;
        position: relative;
    }

    /* Sticky Sidebar (Socials) */
    .page-regional .article-sidebar {
        position: sticky;
        top: 150px;
        height: fit-content;
        text-align: right;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-right: 20px;
    }
    .page-regional .share-icon {
        width: 40px;
        height: 40px;
        border: 1px solid #ddd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        color: var(--charcoal);
        transition: all 0.3s;
    }
    .page-regional .share-icon:hover {
        background: var(--ochre);
        border-color: var(--ochre);
        color: var(--white);
    }

    .page-regional .article-content {
        grid-column: 2;
    }

    .page-regional .article-lead {
        font-family: var(--font-serif);
        font-size: 1.6rem;
        color: var(--charcoal);
        line-height: 1.6;
        margin-bottom: 50px;
        font-weight: 500;
        border-left: 3px solid var(--ochre);
        padding-left: 30px;
    }

    .page-regional .article-body p {
        margin-bottom: 25px;
        font-size: 1.1rem;
        color: #444;
        font-weight: 300;
        line-height: 1.8;
    }

    /* Dropcap */
    .page-regional .article-body p:first-of-type::first-letter {
        float: left;
        font-family: var(--font-serif);
        font-size: 5.5rem;
        line-height: 0.8;
        padding-right: 20px;
        padding-top: 5px;
        color: var(--eucalypt);
        font-weight: 700;
    }

    .page-regional .article-body h3 {
        font-size: 1.8rem;
        margin-top: 60px;
        margin-bottom: 25px;
        color: var(--charcoal);
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    /* In-article Images */
    .page-regional .article-img-full {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        height: 600px;
        object-fit: cover;
        margin-top: 60px;
        margin-bottom: 60px;
    }
    
    .page-regional .article-img-inline {
        width: 100%;
        height: auto;
        border-radius: 2px;
        margin: 50px 0 20px 0;
    }
    
    .page-regional .img-caption {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        color: #888;
        text-align: center;
        margin-bottom: 40px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Rich List */
    .page-regional .rich-list {
        list-style: none;
        margin: 60px 0;
        background: var(--sand);
        padding: 50px;
        border-radius: 2px;
    }
    .page-regional .rich-list li { margin-bottom: 40px; }
    .page-regional .rich-list li:last-child { margin-bottom: 0; }
    .page-regional .rich-list h4 {
        font-size: 1.2rem;
        color: var(--charcoal);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .page-regional .rich-list h4 i { color: var(--ochre); font-size: 1.1rem; }
    .page-regional .rich-list p { margin-bottom: 0; font-size: 1rem; }

    /* --- NEW MARQUEE SECTION --- */
    .page-regional .marquee-container {
        padding: 15px 0;
        background-color: var(--charcoal);
        color: var(--white);
        overflow: hidden;
        white-space: nowrap;
        border-top: 4px solid var(--ochre);
        margin-top: 80px;
    }
    
    .page-regional .marquee-track {
        display: inline-block;
        animation: marquee 40s linear infinite;
    }
    
    .page-regional .marquee-item {
        display: inline-block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 600;
        margin: 0 40px;
        opacity: 0.8;
    }

    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* --- NEW COMPACT REGIONAL GUIDES --- */
    .page-regional .slick-guides-section {
        padding: 0; /* Flush with marquee */
        background-color: var(--paper);
        margin-bottom: 0;
    }
    
    .page-regional .guides-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 Columns for slickness */
        grid-template-rows: repeat(2, 300px); /* Fixed height rows */
        gap: 2px; /* Tiny gap for modern look */
    }

    .page-regional .guide-item {
        position: relative;
        overflow: hidden;
        background: #000;
        cursor: pointer;
    }
    
    .page-regional .guide-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.85;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
    }

    .page-regional .guide-item:hover img {
        transform: scale(1.1);
        opacity: 0.6;
    }

    .page-regional .guide-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2;
        pointer-events: none; /* Let clicks pass through if needed */
    }
    
    /* Gradient at bottom for text readability */
    .page-regional .guide-item::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; width: 100%; height: 50%;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        z-index: 1;
        transition: opacity 0.3s;
    }

    .page-regional .guide-name {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        color: var(--white);
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        transform: translateY(20px);
        transition: transform 0.4s ease;
        z-index: 3;
        text-align: center;
    }
    
    .page-regional .guide-btn {
        margin-top: 15px;
        font-family: var(--font-sans);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--ochre);
        border: 1px solid var(--ochre);
        padding: 8px 16px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        z-index: 3;
        background: rgba(0,0,0,0.5);
    }

    /* Hover State */
    .page-regional .guide-item:hover .guide-name {
        transform: translateY(-5px);
    }
    .page-regional .guide-item:hover .guide-btn {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .page-regional main { padding-top: calc(var(--nav-height) + 50px); }
        .page-regional .nav-actions .btn-outline { display: none; }
        .page-regional .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .page-regional .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .page-regional .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .page-regional .article-hero h1 { font-size: 2.8rem; }
        .page-regional .article-hero { height: 60vh; }
        .page-regional .footer-grid { grid-template-columns: 1fr; }
        .page-regional .footer-bottom { flex-direction: column; gap: 20px; }
        .page-regional .article-img-full { height: 350px; }
        
        .page-regional .article-layout { grid-template-columns: 1fr; padding: 40px 20px; }
        .page-regional .article-content { grid-column: 1; }
        .page-regional .article-sidebar { display: none; }
        
        .page-regional .guides-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 250px); }
    }
    
    @media (max-width: 600px) {
        .page-regional .guides-grid { grid-template-columns: 1fr; grid-template-rows: repeat(8, 200px); }
        .page-regional .article-hero-content { bottom: 5%; }
        .page-regional .article-hero h1 { font-size: 2.2rem; }
        .page-regional .rich-list { padding: 30px 20px; }
    }



/* === Page: barossa-valley.html === */
/* --- DESTINATION SPECIFIC STYLES --- */
    
    /* Hero */
    .dest-hero {
        height: 70vh;
        position: relative;
        overflow: hidden;
        background-color: var(--charcoal); 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dest-hero img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.5; /* Slightly darker for readability */
        animation: slowPan 30s infinite alternate;
    }
    @keyframes slowPan {
        from { transform: scale(1.0); }
        to { transform: scale(1.1); }
    }
    .dest-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        padding: 0 20px;
    }
    .dest-tag {
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--ochre);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .dest-hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        color: var(--white);
    }
    .dest-hero p {
        font-size: 1.2rem;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.95;
    }

    /* Introduction */
    .dest-intro {
        padding: 100px 0;
        text-align: center;
        background: var(--paper);
    }
    .dest-intro h2 { font-size: 2.5rem; margin-bottom: 25px; }
    .dest-intro p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

    /* The Journey / Itinerary */
    .itinerary-section {
        background-color: var(--sand);
        padding: 100px 0;
    }

    .journey-map {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    /* The vertical line */
    .journey-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 2px;
        background: rgba(0,0,0,0.1);
    }

    .stop-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .stop-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .stop-number {
        width: 60px;
        height: 60px;
        background-color: var(--ochre);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(224, 108, 40, 0.4);
        margin-left: 20px; 
    }

    .stop-content {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .stop-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .stop-img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .stop-details {
        padding: 40px;
    }
    
    .stop-meta {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--eucalypt);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }

    .stop-details h3 { font-size: 2rem; margin-bottom: 15px; }
    .stop-details p { color: #666; margin-bottom: 25px; }
    
    .activities-list {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .activities-list span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--charcoal);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .activities-list span i { color: var(--ochre); font-size: 0.8rem; }

    /* Trip Guide / Logistics */
    .guide-box {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px;
        border-radius: 4px;
        margin-top: -60px; /* Overlap effect */
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .guide-item i {
        font-size: 2rem;
        color: var(--ochre);
        margin-bottom: 20px;
    }
    .guide-item h5 {
        color: var(--white);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .guide-item p {
        color: #999;
        font-size: 0.95rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .dest-hero h1 { font-size: 3rem; }
        .stop-card { grid-template-columns: 1fr; gap: 20px; }
        .journey-map::before { left: 30px; }
        .stop-marker { align-items: flex-start; margin-left: 0; margin-bottom: 20px; }
        .stop-number { margin-left: 0; }
        .guide-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        main { padding-top: calc(var(--nav-height) + 50px); }
        .nav-actions .btn-outline { display: none; }
        .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 20px; }
    }
    
    @media (max-width: 600px) {
        .guide-grid { grid-template-columns: 1fr; }
        .dest-hero h1 { font-size: 2.2rem; }
        .guide-box { padding: 40px 20px; }
        .stop-details { padding: 25px; }
    }



/* === Page: cradle-mountain.html === */
/* --- GBR SPECIFIC STYLES (Adjusted for Cradle Mountain) --- */
    
    /* Hero */
    .cm-hero {
        height: 70vh;
        position: relative;
        overflow: hidden;
        background-color: var(--eucalypt); 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cm-hero img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.7;
        animation: slowPan 30s infinite alternate;
    }
    @keyframes slowPan {
        from { transform: scale(1.0); }
        to { transform: scale(1.1); }
    }
    .cm-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        padding: 0 20px;
    }
    .cm-tag {
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--ochre);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .cm-hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        color: var(--white);
    }
    .cm-hero p {
        font-size: 1.2rem;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

    /* Introduction */
    .cm-intro {
        padding: 100px 0;
        text-align: center;
        background: var(--paper);
    }
    .cm-intro h2 { font-size: 2.5rem; margin-bottom: 25px; }
    .cm-intro p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

    /* The Journey / Itinerary (Reused styles from road-trips.html) */
    .itinerary-section {
        background-color: var(--sand);
        padding: 100px 0;
    }

    .journey-map {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    /* The vertical line */
    .journey-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 2px;
        background: rgba(0,0,0,0.1);
    }

    .stop-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .stop-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .stop-number {
        width: 60px;
        height: 60px;
        background-color: var(--ochre);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(224, 108, 40, 0.4);
        margin-left: 20px; /* Align with line */
    }

    .stop-content {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .stop-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .stop-img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .stop-details {
        padding: 40px;
    }
    
    .stop-meta {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--eucalypt);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }

    .stop-details h3 { font-size: 2rem; margin-bottom: 15px; }
    .stop-details p { color: #666; margin-bottom: 25px; }
    
    .activities-list {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .activities-list span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--charcoal);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .activities-list span i { color: var(--ochre); font-size: 0.8rem; }

    /* Trip Guide / Logistics (Reused styles from road-trips.html) */
    .guide-box {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px;
        border-radius: 4px;
        margin-top: -60px; /* Overlap effect */
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .guide-item i {
        font-size: 2rem;
        color: var(--ochre);
        margin-bottom: 20px;
    }
    .guide-item h5 {
        color: var(--white);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .guide-item p {
        color: #999;
        font-size: 0.95rem;
    }

    /* Shared section helpers */
    .bg-sand { background-color: var(--white); }
    .section-header {
        text-align: center;
        margin-bottom: 70px;
    }
    .section-header .meta-tag {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--ochre);
        display: block;
        margin-bottom: 15px;
        font-weight: 700;
        padding-top: 20px;
    }
    .section-header h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    .section-header p {
        font-size: 1.0rem;
        color: #444;
        max-width: 650px;
        margin: 0 auto;
        font-weight: 400;
    }

    /* Interactive Map (from index.html) - Not needed on this page but keeping for consistency if added later */
    .map-wrapper {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 50px;
        align-items: center;
        background: var(--white);
        padding: 40px;
        border-radius: 8px;
        perspective: 1500px;
    }
    
    .map-container {
        position: relative;
        width: 100%;
        padding-bottom: 85%;
        background-image: url('images/map.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.8;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform-style: preserve-3d;
    }

    .map-wrapper:hover .map-container {
        transform: rotateX(3deg) rotateY(-3deg) scale(1.02);
    }

    .hotspot {
        position: absolute;
        width: 22px;
        height: 22px;
        background-color: var(--ochre);
        border: 2px solid var(--white);
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        transform: translateZ(20px);
    }

    .hotspot::after {
        content: '';
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 100%; height: 100%;
        border-radius: 50%;
        background-color: var(--ochre);
        opacity: 0.6;
        animation: pulse 2s infinite;
        z-index: -1;
    }

    @keyframes pulse {
        0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
        100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
    }

    .hotspot:hover, .hotspot.active {
        background-color: var(--eucalypt);
        transform: translateZ(30px) scale(1.3);
    }
    .hotspot.active::after {
        background-color: var(--eucalypt);
    }

    .map-info-card {
        background-color: var(--sand);
        padding: 40px;
        transition: all 0.4s ease;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .map-info-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 20px;
        display: block;
    }

    .map-info-title {
        font-family: var(--font-serif);
        font-size: 2rem;
        margin-bottom: 10px;
        color: var(--charcoal);
    }

    .map-info-desc {
        color: #555;
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .map-cta.is-hidden {
        display: none;
    }
    .map-cta {
        margin-top: 12px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .cm-hero h1 { font-size: 3rem; }
        .stop-card { grid-template-columns: 1fr; gap: 20px; }
        .journey-map::before { left: 30px; }
        .stop-marker { align-items: flex-start; margin-left: 0; margin-bottom: 20px; }
        .stop-number { margin-left: 0; }
        .guide-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        .map-wrapper { grid-template-columns: 1fr; gap: 30px; padding: 20px; }
        .map-info-card { min-height: auto; }
        
        main { padding-top: calc(var(--nav-height) + 50px); }
        .nav-actions .btn-outline { display: none; }
        .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 20px; }
    }
    
    @media (max-width: 600px) {
        .guide-grid { grid-template-columns: 1fr; }
        .cm-hero h1 { font-size: 2.2rem; }
        .guide-box { padding: 40px 20px; }
        .stop-details { padding: 25px; }
    }



/* === Page: food-wine.html === */
/* --- FOOD & WINE SPECIFIC STYLES (ADAPTED FROM ROAD-TRIPS) --- */
    
    /* Hero */
    .fw-hero {
        height: 70vh;
        position: relative;
        overflow: hidden;
        background-color: var(--charcoal);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fw-hero img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.7;
        animation: slowPan 30s infinite alternate;
    }
    @keyframes slowPan {
        from { transform: scale(1.0); }
        to { transform: scale(1.1); }
    }
    .fw-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        padding: 0 20px;
    }
    .fw-tag {
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--ochre);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .fw-hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        color: var(--white);
    }
    .fw-hero p {
        font-size: 1.2rem;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

    /* Introduction */
    .fw-intro {
        padding: 100px 0;
        text-align: center;
        background: var(--paper);
    }
    .fw-intro h2 { font-size: 2.5rem; margin-bottom: 25px; }
    .fw-intro p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

    /* The Journey / Itinerary */
    .itinerary-section {
        background-color: var(--sand);
        padding: 100px 0;
    }

    .journey-map {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    /* The vertical line */
    .journey-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 2px;
        background: rgba(0,0,0,0.1);
    }

    .stop-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .stop-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .stop-number {
        width: 60px;
        height: 60px;
        background-color: var(--ochre);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(224, 108, 40, 0.4);
        margin-left: 20px; /* Align with line */
    }

    .stop-content {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .stop-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .stop-img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .stop-details {
        padding: 40px;
    }
    
    .stop-meta {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--eucalypt);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }

    .stop-details h3 { font-size: 2rem; margin-bottom: 15px; }
    .stop-details p { color: #666; margin-bottom: 25px; }
    
    .activities-list {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .activities-list span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--charcoal);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .activities-list span i { color: var(--ochre); font-size: 0.8rem; }

    /* Trip Guide / Logistics */
    .guide-box {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px;
        border-radius: 4px;
        margin-top: -60px; /* Overlap effect */
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .guide-item i {
        font-size: 2rem;
        color: var(--ochre);
        margin-bottom: 20px;
    }
    .guide-item h5 {
        color: var(--white);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .guide-item p {
        color: #999;
        font-size: 0.95rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .fw-hero h1 { font-size: 3rem; }
        .stop-card { grid-template-columns: 1fr; gap: 20px; }
        .journey-map::before { left: 30px; }
        .stop-marker { align-items: flex-start; margin-left: 0; margin-bottom: 20px; }
        .stop-number { margin-left: 0; }
        .guide-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        
        main { padding-top: calc(var(--nav-height) + 50px); }
        .nav-actions .btn-outline { display: none; }
        .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 20px; }
    }
    
    @media (max-width: 600px) {
        .guide-grid { grid-template-columns: 1fr; }
        .fw-hero h1 { font-size: 2.2rem; }
        .guide-box { padding: 40px 20px; }
        .stop-details { padding: 25px; }
    }



/* === Page: great-barrier-reef.html === */
/* --- GBR SPECIFIC STYLES --- */
    
    /* Hero */
    .gbr-hero {
        height: 70vh;
        position: relative;
        overflow: hidden;
        background-color: var(--eucalypt); /* Adjusted background color for reef theme */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .gbr-hero img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.7;
        animation: slowPan 30s infinite alternate;
    }
    @keyframes slowPan {
        from { transform: scale(1.0); }
        to { transform: scale(1.1); }
    }
    .gbr-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        padding: 0 20px;
    }
    .gbr-tag {
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--ochre);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .gbr-hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        color: var(--white);
    }
    .gbr-hero p {
        font-size: 1.2rem;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

    /* Introduction */
    .gbr-intro {
        padding: 100px 0;
        text-align: center;
        background: var(--paper);
    }
    .gbr-intro h2 { font-size: 2.5rem; margin-bottom: 25px; }
    .gbr-intro p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

    /* The Journey / Itinerary (Reused styles from road-trips.html) */
    .itinerary-section {
        background-color: var(--sand);
        padding: 100px 0;
    }

    .journey-map {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    /* The vertical line */
    .journey-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 2px;
        background: rgba(0,0,0,0.1);
    }

    .stop-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .stop-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .stop-number {
        width: 60px;
        height: 60px;
        background-color: var(--ochre);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(224, 108, 40, 0.4);
        margin-left: 20px; /* Align with line */
    }

    .stop-content {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .stop-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .stop-img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .stop-details {
        padding: 40px;
    }
    
    .stop-meta {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--eucalypt);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }

    .stop-details h3 { font-size: 2rem; margin-bottom: 15px; }
    .stop-details p { color: #666; margin-bottom: 25px; }
    
    .activities-list {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .activities-list span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--charcoal);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .activities-list span i { color: var(--ochre); font-size: 0.8rem; }

    /* Trip Guide / Logistics (Reused styles from road-trips.html) */
    .guide-box {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px;
        border-radius: 4px;
        margin-top: -60px; /* Overlap effect */
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .guide-item i {
        font-size: 2rem;
        color: var(--ochre);
        margin-bottom: 20px;
    }
    .guide-item h5 {
        color: var(--white);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .guide-item p {
        color: #999;
        font-size: 0.95rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .gbr-hero h1 { font-size: 3rem; }
        .stop-card { grid-template-columns: 1fr; gap: 20px; }
        .journey-map::before { left: 30px; }
        .stop-marker { align-items: flex-start; margin-left: 0; margin-bottom: 20px; }
        .stop-number { margin-left: 0; }
        .guide-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        main { padding-top: calc(var(--nav-height) + 50px); }
        .nav-actions .btn-outline { display: none; }
        .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 20px; }
    }
    
    @media (max-width: 600px) {
        .guide-grid { grid-template-columns: 1fr; }
        .gbr-hero h1 { font-size: 2.2rem; }
        .guide-box { padding: 40px 20px; }
        .stop-details { padding: 25px; }
    }



/* === Page: great-ocean-road.html === */
/* --- GOR SPECIFIC STYLES --- */
    
    /* Hero */
    .gor-hero {
        height: 70vh;
        position: relative;
        overflow: hidden;
        background-color: var(--eucalypt); 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .gor-hero img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.7;
        animation: slowPan 30s infinite alternate;
    }
    @keyframes slowPan {
        from { transform: scale(1.0); }
        to { transform: scale(1.1); }
    }
    .gor-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        padding: 0 20px;
    }
    .gor-tag {
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--ochre);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .gor-hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        color: var(--white);
    }
    .gor-hero p {
        font-size: 1.2rem;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

    /* Introduction */
    .gor-intro {
        padding: 100px 0;
        text-align: center;
        background: var(--paper);
    }
    .gor-intro h2 { font-size: 2.5rem; margin-bottom: 25px; }
    .gor-intro p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

    /* The Journey / Itinerary (Reused styles from road-trips.html) */
    .itinerary-section {
        background-color: var(--sand);
        padding: 100px 0;
    }

    .journey-map {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    /* The vertical line */
    .journey-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 2px;
        background: rgba(0,0,0,0.1);
    }

    .stop-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .stop-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .stop-number {
        width: 60px;
        height: 60px;
        background-color: var(--ochre);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(224, 108, 40, 0.4);
        margin-left: 20px; /* Align with line */
    }

    .stop-content {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .stop-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .stop-img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .stop-details {
        padding: 40px;
    }
    
    .stop-meta {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--eucalypt);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }

    .stop-details h3 { font-size: 2rem; margin-bottom: 15px; }
    .stop-details p { color: #666; margin-bottom: 25px; }
    
    .activities-list {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .activities-list span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--charcoal);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .activities-list span i { color: var(--ochre); font-size: 0.8rem; }

    /* Trip Guide / Logistics (Reused styles from road-trips.html) */
    .guide-box {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px;
        border-radius: 4px;
        margin-top: -60px; /* Overlap effect */
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .guide-item i {
        font-size: 2rem;
        color: var(--ochre);
        margin-bottom: 20px;
    }
    .guide-item h5 {
        color: var(--white);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .guide-item p {
        color: #999;
        font-size: 0.95rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .gor-hero h1 { font-size: 3rem; }
        .stop-card { grid-template-columns: 1fr; gap: 20px; }
        .journey-map::before { left: 30px; }
        .stop-marker { align-items: flex-start; margin-left: 0; margin-bottom: 20px; }
        .stop-number { margin-left: 0; }
        .guide-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        main { padding-top: calc(var(--nav-height) + 50px); }
        .nav-actions .btn-outline { display: none; }
        .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 20px; }
    }
    
    @media (max-width: 600px) {
        .guide-grid { grid-template-columns: 1fr; }
        .gor-hero h1 { font-size: 2.2rem; }
        .guide-box { padding: 40px 20px; }
        .stop-details { padding: 25px; }
    }



/* === Page: margaret-river.html === */
/* --- PAGE SPECIFIC STYLES --- */
    
    /* Hero */
    .hero-section {
        height: 70vh;
        position: relative;
        overflow: hidden;
        background-color: var(--eucalypt);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-section img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.75;
        animation: slowPan 30s infinite alternate;
    }
    @keyframes slowPan {
        from { transform: scale(1.0); }
        to { transform: scale(1.1); }
    }
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        padding: 0 20px;
    }
    .hero-tag {
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--ochre);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .hero-section h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        color: var(--white);
    }
    .hero-section p {
        font-size: 1.2rem;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

    /* Introduction */
    .intro-section {
        padding: 100px 0;
        text-align: center;
        background: var(--paper);
    }
    .intro-section h2 { font-size: 2.5rem; margin-bottom: 25px; }
    .intro-section p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

    /* The Journey / Itinerary */
    .itinerary-section {
        background-color: var(--sand);
        padding: 100px 0;
    }

    .journey-map {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    /* The vertical line */
    .journey-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 2px;
        background: rgba(0,0,0,0.1);
    }

    .stop-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .stop-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .stop-number {
        width: 60px;
        height: 60px;
        background-color: var(--ochre);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(224, 108, 40, 0.4);
        margin-left: 20px; /* Align with line */
    }

    .stop-content {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .stop-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .stop-img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .stop-details {
        padding: 40px;
    }
    
    .stop-meta {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--eucalypt);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }

    .stop-details h3 { font-size: 2rem; margin-bottom: 15px; }
    .stop-details p { color: #666; margin-bottom: 25px; }
    
    .activities-list {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .activities-list span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--charcoal);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .activities-list span i { color: var(--ochre); font-size: 0.8rem; }

    /* Trip Guide / Logistics */
    .guide-box {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px;
        border-radius: 4px;
        margin-top: -60px; /* Overlap effect */
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .guide-item i {
        font-size: 2rem;
        color: var(--ochre);
        margin-bottom: 20px;
    }
    .guide-item h5 {
        color: var(--white);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .guide-item p {
        color: #999;
        font-size: 0.95rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .hero-section h1 { font-size: 3rem; }
        .stop-card { grid-template-columns: 1fr; gap: 20px; }
        .journey-map::before { left: 30px; }
        .stop-marker { align-items: flex-start; margin-left: 0; margin-bottom: 20px; }
        .stop-number { margin-left: 0; }
        .guide-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        main { padding-top: calc(var(--nav-height) + 50px); }
        .nav-actions .btn-outline { display: none; }
        .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 20px; }
    }
    
    @media (max-width: 600px) {
        .guide-grid { grid-template-columns: 1fr; }
        .hero-section h1 { font-size: 2.2rem; }
        .guide-box { padding: 40px 20px; }
        .stop-details { padding: 25px; }
    }



/* === Page: nature-wildlife.html === */
/* --- NATURE & WILDLIFE SPECIFIC STYLES (FROM ROAD-TRIPS) --- */
    
    /* Hero */
    .nw-hero {
        height: 70vh;
        position: relative;
        overflow: hidden;
        background-color: var(--charcoal);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nw-hero img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.5;
        animation: slowPan 30s infinite alternate;
    }
    @keyframes slowPan {
        from { transform: scale(1.0); }
        to { transform: scale(1.1); }
    }
    .nw-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        padding: 0 20px;
    }
    .nw-tag {
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #e06c28;
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .nw-hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        color: var(--white);
    }
    .nw-hero p {
        font-size: 1.2rem;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

    /* Introduction */
    .nw-intro {
        padding: 100px 0;
        text-align: center;
        background: var(--paper);
    }
    .nw-intro h2 { font-size: 2.5rem; margin-bottom: 25px; }
    .nw-intro p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

    /* The Journey / Itinerary (Re-used from Road-Trips) */
    .itinerary-section {
        background-color: var(--sand);
        padding: 100px 0;
    }

    .journey-map {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    /* The vertical line */
    .journey-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 2px;
        background: rgba(0,0,0,0.1);
    }

    .stop-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .stop-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .stop-number {
        width: 60px;
        height: 60px;
        background-color: var(--eucalypt); /* Changed to Eucalypt for nature theme */
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(15, 92, 56, 0.4); /* Shadow to match eucalypt */
        margin-left: 20px; /* Align with line */
    }

    .stop-content {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .stop-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .stop-img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .stop-details {
        padding: 40px;
    }
    
    .stop-meta {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--ochre); /* Ochre for accent */
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }

    .stop-details h3 { font-size: 2rem; margin-bottom: 15px; }
    .stop-details p { color: #666; margin-bottom: 25px; }
    
    .activities-list {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .activities-list span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--charcoal);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .activities-list span i { color: var(--eucalypt); font-size: 0.8rem; } /* Changed to eucalypt */

    /* Trip Guide / Logistics (Re-used from Road-Trips) */
    .guide-box {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px;
        border-radius: 4px;
        margin-top: -60px; /* Overlap effect */
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .guide-item i {
        font-size: 2rem;
        color: var(--eucalypt); /* Changed to eucalypt */
        margin-bottom: 20px;
    }
    .guide-item h5 {
        color: var(--white);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .guide-item p {
        color: #999;
        font-size: 0.95rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .nw-hero h1 { font-size: 3rem; }
        .stop-card { grid-template-columns: 1fr; gap: 20px; }
        .journey-map::before { left: 30px; }
        .stop-marker { align-items: flex-start; margin-left: 0; margin-bottom: 20px; }
        .stop-number { margin-left: 0; }
        .guide-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        
        main { padding-top: calc(var(--nav-height) + 50px); }
        .nav-actions .btn-outline { display: none; }
        .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 20px; }
    }
    
    @media (max-width: 600px) {
        .guide-grid { grid-template-columns: 1fr; }
        .nw-hero h1 { font-size: 2.2rem; }
        .guide-box { padding: 40px 20px; }
        .stop-details { padding: 25px; }
    }



/* === Page: ningaloo-reef.html === */
/* --- NINGALOO SPECIFIC STYLES --- */
    
    /* Hero */
    .dest-hero {
        height: 70vh;
        position: relative;
        overflow: hidden;
        background-color: var(--charcoal); 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dest-hero img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.5;
        animation: slowPan 30s infinite alternate;
    }
    @keyframes slowPan {
        from { transform: scale(1.0); }
        to { transform: scale(1.1); }
    }
    .dest-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        padding: 0 20px;
    }
    .dest-tag {
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--ochre);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .dest-hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        color: var(--white);
    }
    .dest-hero p {
        font-size: 1.2rem;
        font-weight: 300;
        max-width: 650px;
        margin: 0 auto;
        opacity: 0.95;
    }

    /* Introduction */
    .dest-intro {
        padding: 100px 0;
        text-align: center;
        background: var(--paper);
    }
    .dest-intro h2 { font-size: 2.5rem; margin-bottom: 25px; }
    .dest-intro p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

    /* The Journey / Itinerary */
    .itinerary-section {
        background-color: var(--sand);
        padding: 100px 0;
    }

    .journey-map {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    /* The vertical line */
    .journey-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 2px;
        background: rgba(0,0,0,0.1);
    }

    .stop-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .stop-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .stop-number {
        width: 60px;
        height: 60px;
        background-color: var(--ochre);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(224, 108, 40, 0.4);
        margin-left: 20px; /* Align with line */
    }

    .stop-content {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .stop-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .stop-img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .stop-details {
        padding: 40px;
    }
    
    .stop-meta {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--eucalypt);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }

    .stop-details h3 { font-size: 2rem; margin-bottom: 15px; }
    .stop-details p { color: #666; margin-bottom: 25px; }
    
    .activities-list {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .activities-list span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--charcoal);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .activities-list span i { color: var(--ochre); font-size: 0.8rem; }

    /* Trip Guide / Logistics */
    .guide-box {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px;
        border-radius: 4px;
        margin-top: -60px; /* Overlap effect */
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .guide-item i {
        font-size: 2rem;
        color: var(--ochre);
        margin-bottom: 20px;
    }
    .guide-item h5 {
        color: var(--white);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .guide-item p {
        color: #999;
        font-size: 0.95rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .dest-hero h1 { font-size: 3rem; }
        .stop-card { grid-template-columns: 1fr; gap: 20px; }
        .journey-map::before { left: 30px; }
        .stop-marker { align-items: flex-start; margin-left: 0; margin-bottom: 20px; }
        .stop-number { margin-left: 0; }
        .guide-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        main { padding-top: calc(var(--nav-height) + 50px); }
        .nav-actions .btn-outline { display: none; }
        .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 20px; }
    }
    
    @media (max-width: 600px) {
        .guide-grid { grid-template-columns: 1fr; }
        .dest-hero h1 { font-size: 2.2rem; }
        .guide-box { padding: 40px 20px; }
        .stop-details { padding: 25px; }
    }



/* === Page: road-trips.html === */
/* --- ROAD TRIP SPECIFIC STYLES --- */
    
    /* Hero */
    .rt-hero {
        height: 70vh;
        position: relative;
        overflow: hidden;
        background-color: var(--charcoal);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .rt-hero img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.7;
        animation: slowPan 30s infinite alternate;
    }
    @keyframes slowPan {
        from { transform: scale(1.0); }
        to { transform: scale(1.1); }
    }
    .rt-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        padding: 0 20px;
    }
    .rt-tag {
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--ochre);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .rt-hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        color: var(--white);
    }
    .rt-hero p {
        font-size: 1.2rem;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

    /* Introduction */
    .rt-intro {
        padding: 100px 0;
        text-align: center;
        background: var(--paper);
    }
    .rt-intro h2 { font-size: 2.5rem; margin-bottom: 25px; }
    .rt-intro p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

    /* The Journey / Itinerary */
    .itinerary-section {
        background-color: var(--sand);
        padding: 100px 0;
    }

    .journey-map {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    /* The vertical line */
    .journey-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 2px;
        background: rgba(0,0,0,0.1);
    }

    .stop-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .stop-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .stop-number {
        width: 60px;
        height: 60px;
        background-color: var(--ochre);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(224, 108, 40, 0.4);
        margin-left: 20px; /* Align with line */
    }

    .stop-content {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .stop-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .stop-img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .stop-details {
        padding: 40px;
    }
    
    .stop-meta {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--eucalypt);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }

    .stop-details h3 { font-size: 2rem; margin-bottom: 15px; }
    .stop-details p { color: #666; margin-bottom: 25px; }
    
    .activities-list {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .activities-list span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--charcoal);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .activities-list span i { color: var(--ochre); font-size: 0.8rem; }

    /* Trip Guide / Logistics */
    .guide-box {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px;
        border-radius: 4px;
        margin-top: -60px; /* Overlap effect */
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .guide-item i {
        font-size: 2rem;
        color: var(--ochre);
        margin-bottom: 20px;
    }
    .guide-item h5 {
        color: var(--white);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .guide-item p {
        color: #999;
        font-size: 0.95rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .rt-hero h1 { font-size: 3rem; }
        .stop-card { grid-template-columns: 1fr; gap: 20px; }
        .journey-map::before { left: 30px; }
        .stop-marker { align-items: flex-start; margin-left: 0; margin-bottom: 20px; }
        .stop-number { margin-left: 0; }
        .guide-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        
        main { padding-top: calc(var(--nav-height) + 50px); }
        .nav-actions .btn-outline { display: none; }
        .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 20px; }
    }
    
    @media (max-width: 600px) {
        .guide-grid { grid-template-columns: 1fr; }
        .rt-hero h1 { font-size: 2.2rem; }
        .guide-box { padding: 40px 20px; }
        .stop-details { padding: 25px; }
    }



/* === Page: sydney-harbour.html === */
/* --- SYDNEY HARBOUR SPECIFIC STYLES --- */
    
    /* Hero */
    .sydney-hero {
        height: 70vh;
        position: relative;
        overflow: hidden;
        background-color: var(--eucalypt); 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sydney-hero img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.7;
        animation: slowPan 30s infinite alternate;
    }
    @keyframes slowPan {
        from { transform: scale(1.0); }
        to { transform: scale(1.1); }
    }
    .sydney-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        padding: 0 20px;
    }
    .sydney-tag {
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--ochre);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .sydney-hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        color: var(--white);
    }
    .sydney-hero p {
        font-size: 1.2rem;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

    /* Introduction */
    .sydney-intro {
        padding: 100px 0;
        text-align: center;
        background: var(--paper);
    }
    .sydney-intro h2 { font-size: 2.5rem; margin-bottom: 25px; }
    .sydney-intro p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

    /* The Journey / Itinerary (Reused styles from road-trips.html) */
    .itinerary-section {
        background-color: var(--sand);
        padding: 100px 0;
    }

    .journey-map {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    /* The vertical line */
    .journey-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 2px;
        background: rgba(0,0,0,0.1);
    }

    .stop-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .stop-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .stop-number {
        width: 60px;
        height: 60px;
        background-color: var(--ochre);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(224, 108, 40, 0.4);
        margin-left: 20px; /* Align with line */
    }

    .stop-content {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .stop-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .stop-img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .stop-details {
        padding: 40px;
    }
    
    .stop-meta {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--eucalypt);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }

    .stop-details h3 { font-size: 2rem; margin-bottom: 15px; }
    .stop-details p { color: #666; margin-bottom: 25px; }
    
    .activities-list {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .activities-list span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--charcoal);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .activities-list span i { color: var(--ochre); font-size: 0.8rem; }

    /* Trip Guide / Logistics (Reused styles from road-trips.html) */
    .guide-box {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px;
        border-radius: 4px;
        margin-top: -60px; /* Overlap effect */
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .guide-item i {
        font-size: 2rem;
        color: var(--ochre);
        margin-bottom: 20px;
    }
    .guide-item h5 {
        color: var(--white);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .guide-item p {
        color: #999;
        font-size: 0.95rem;
    }

    /* Shared section helpers */
    .bg-sand { background-color: var(--white); }
    .section-header {
        text-align: center;
        margin-bottom: 70px;
    }
    .section-header .meta-tag {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--ochre);
        display: block;
        margin-bottom: 15px;
        font-weight: 700;
        padding-top: 20px;
    }
    .section-header h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    .section-header p {
        font-size: 1.0rem;
        color: #444;
        max-width: 650px;
        margin: 0 auto;
        font-weight: 400;
    }

    /* Interactive Map (from index.html) */
    .map-wrapper {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 50px;
        align-items: center;
        background: var(--white);
        padding: 40px;
        border-radius: 8px;
        perspective: 1500px;
    }
    
    .map-container {
        position: relative;
        width: 100%;
        padding-bottom: 85%;
        background-image: url('images/map.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.8;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform-style: preserve-3d;
    }

    .map-wrapper:hover .map-container {
        transform: rotateX(3deg) rotateY(-3deg) scale(1.02);
    }

    .hotspot {
        position: absolute;
        width: 22px;
        height: 22px;
        background-color: var(--ochre);
        border: 2px solid var(--white);
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        transform: translateZ(20px);
    }

    .hotspot::after {
        content: '';
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 100%; height: 100%;
        border-radius: 50%;
        background-color: var(--ochre);
        opacity: 0.6;
        animation: pulse 2s infinite;
        z-index: -1;
    }

    @keyframes pulse {
        0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
        100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
    }

    .hotspot:hover, .hotspot.active {
        background-color: var(--eucalypt);
        transform: translateZ(30px) scale(1.3);
    }
    .hotspot.active::after {
        background-color: var(--eucalypt);
    }

    .map-info-card {
        background-color: var(--sand);
        padding: 40px;
        transition: all 0.4s ease;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .map-info-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 20px;
        display: block;
    }

    .map-info-title {
        font-family: var(--font-serif);
        font-size: 2rem;
        margin-bottom: 10px;
        color: var(--charcoal);
    }

    .map-info-desc {
        color: #555;
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .map-cta.is-hidden {
        display: none;
    }
    .map-cta {
        margin-top: 12px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .sydney-hero h1 { font-size: 3rem; }
        .stop-card { grid-template-columns: 1fr; gap: 20px; }
        .journey-map::before { left: 30px; }
        .stop-marker { align-items: flex-start; margin-left: 0; margin-bottom: 20px; }
        .stop-number { margin-left: 0; }
        .guide-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        .map-wrapper { grid-template-columns: 1fr; gap: 30px; padding: 20px; }
        .map-info-card { min-height: auto; }
        
        main { padding-top: calc(var(--nav-height) + 50px); }
        .nav-actions .btn-outline { display: none; }
        .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 20px; }
    }
    
    @media (max-width: 600px) {
        .guide-grid { grid-template-columns: 1fr; }
        .sydney-hero h1 { font-size: 2.2rem; }
        .guide-box { padding: 40px 20px; }
        .stop-details { padding: 25px; }
    }



/* === Page: uluru-kata-tjuta.html === */
/* --- ULURU SPECIFIC STYLES --- */
    
    /* Hero */
    .uluru-hero {
        height: 70vh;
        position: relative;
        overflow: hidden;
        background-color: var(--ochre); 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .uluru-hero img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.8;
        animation: slowPan 30s infinite alternate;
    }
    @keyframes slowPan {
        from { transform: scale(1.0); }
        to { transform: scale(1.1); }
    }
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        padding: 0 20px;
        text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    .hero-tag {
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--white);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    .uluru-hero h1 {
        font-size: 4.5rem;
        margin-bottom: 20px;
        color: var(--white);
    }
    .uluru-hero p {
        font-size: 1.2rem;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.95;
    }

    /* Introduction */
    .intro-section {
        padding: 100px 0;
        text-align: center;
        background: var(--paper);
    }
    .intro-section h2 { font-size: 2.5rem; margin-bottom: 25px; }
    .intro-section p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

    /* The Journey / Itinerary */
    .itinerary-section {
        background-color: var(--sand);
        padding: 100px 0;
    }

    .journey-map {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }
    
    /* The vertical line */
    .journey-map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 2px;
        background: rgba(0,0,0,0.1);
    }

    .stop-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .stop-marker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .stop-number {
        width: 60px;
        height: 60px;
        background-color: var(--ochre);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(224, 108, 40, 0.4);
        margin-left: 20px; /* Align with line */
    }

    .stop-content {
        background: var(--white);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .stop-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .stop-img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .stop-details {
        padding: 40px;
    }
    
    .stop-meta {
        font-family: var(--font-sans);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--ochre);
        margin-bottom: 10px;
        display: block;
        font-weight: 700;
    }

    .stop-details h3 { font-size: 2rem; margin-bottom: 15px; }
    .stop-details p { color: #666; margin-bottom: 25px; }
    
    .activities-list {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .activities-list span {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--charcoal);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .activities-list span i { color: var(--ochre); font-size: 0.8rem; }

    /* Trip Guide / Logistics */
    .guide-box {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px;
        border-radius: 4px;
        margin-top: -60px; /* Overlap effect */
        position: relative;
        z-index: 10;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .guide-item i {
        font-size: 2rem;
        color: var(--ochre);
        margin-bottom: 20px;
    }
    .guide-item h5 {
        color: var(--white);
        font-family: var(--font-sans);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .guide-item p {
        color: #999;
        font-size: 0.95rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .uluru-hero h1 { font-size: 3rem; }
        .stop-card { grid-template-columns: 1fr; gap: 20px; }
        .journey-map::before { left: 30px; }
        .stop-marker { align-items: flex-start; margin-left: 0; margin-bottom: 20px; }
        .stop-number { margin-left: 0; }
        .guide-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        main { padding-top: calc(var(--nav-height) + 50px); }
        .nav-actions .btn-outline { display: none; }
        .sidebar-links .mobile-only { display: block; margin-top: 10px; }
        .header:not(.scrolled) .menu-toggle-btn { color: var(--white); } 
        .header:not(.scrolled) .nav-actions .btn-outline { border-color: var(--white); color: var(--white); }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 20px; }
    }
    
    @media (max-width: 600px) {
        .guide-grid { grid-template-columns: 1fr; }
        .uluru-hero h1 { font-size: 2.2rem; }
        .guide-box { padding: 40px 20px; }
        .stop-details { padding: 25px; }
    }

    /* Mobile layout fixes */
    @media (max-width: 768px) {
        .navbar {
            flex-wrap: nowrap;
            height: auto;
            padding: 8px 16px;
            gap: 10px;
        }

        .navbar .logo { margin-top: 0; }
        .navbar .logo .logo-mark { width: 150px; height: 55px; }

        .nav-actions {
            width: auto;
            margin-left: auto;
            justify-content: flex-end;
            align-items: center;
            gap: 10px;
        }

        .nav-actions .btn {
            flex: 0 0 auto;
            width: auto;
            white-space: nowrap;
        }

        .menu-toggle-btn { flex-shrink: 0; }

        main,
        .page-editorial main,
        .page-regional main {
            padding-top: var(--nav-height);
        }

        .footer-grid { gap: 24px; }
        .footer-bottom { text-align: center; }
        .footer-powered-by { flex-wrap: wrap; justify-content: center; }
        .footer .logo-container .footer-logo { width: 280px; height: 90px; }
        .footer p, .footer a, .footer li { overflow-wrap: anywhere; }
    }

    @media (max-width: 600px) {
        html, body { overflow-x: hidden; }

        .navbar { padding: 6px 12px; }
        .navbar .logo .logo-mark { width: 130px; height: 68px; }

        .nav-actions .btn {
            font-size: 0.65rem;
            padding: 6px 10px;
        }

        #hero {
            padding-top: 0;
        }

        .page-editorial .article-img-full,
        .page-regional .article-img-full {
            width: 100%;
            left: 0;
            right: 0;
            margin-left: 0;
            margin-right: 0;
        }
    }


