/* CSS Variables & Reset */
:root {
    --color-emerald-dark: #1a3c34;
    /* Dark Green from screenshot top bar */
    --color-emerald-light: #2c5e52;
    --color-gold: #c5a059;
    /* Gold accent color */
    --color-gold-hover: #dbc184;
    --color-white: #ffffff;
    --color-off-white: #f8f8f8;
    --color-overlay: rgba(0, 0, 0, 0.5);

    --font-script: 'Great Vibes', cursive;
    --font-body: 'Montserrat', sans-serif;

    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-emerald-dark);
    /* Fallback/Base color */
    color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    /* Thinner strip */
    background: #ffffff;
    /* Solid White */
    color: var(--color-emerald-light);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--color-emerald-light);
    /* Optional: distinct line if needed */
}

.header-content {
    display: flex;
    justify-content: center;
    /* Center items instead of spreading them to edges */
    align-items: center;
    gap: 4rem;
    /* Add significant gap to separate Logo, Nav, CTA */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 35px;
    width: auto;
}

/* Fallback if using text for logo */
.logo-title {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.6rem;
    /* Reduced from 2rem */
    color: var(--color-emerald-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    /* Above nav container */
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-emerald-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-transform: capitalize;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-emerald-light);
    text-shadow: none;
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: #fff;
        /* White when open in overlay */
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: #fff;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Full screen overlay */
        height: 100vh;
        background-color: rgba(26, 60, 52, 0.98);
        /* Emerald overlay */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 2rem;
    }

    .nav-links a {
        color: #fff;
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* Darker background to pop text */
}

/* Overlay not strictly needed if we brightness filter, but keep for safety */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* Lighter overlay since image is darker */
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.border-box {
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 2.5rem 4rem;
    /* More symmetric padding */
    margin-bottom: 2rem;
    position: relative;
    backdrop-filter: none;
    /* Clean look */
    width: 100%;
    border-bottom: none;
    /* Removed to allow divider to act as bottom border */
    /* Wider box */
    max-width: 800px;
}

.main-title {
    font-family: 'Pinyon Script', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #fff;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    position: absolute;
    bottom: -10px;
    /* Overlap effect or placed specifically? Design shows it inside but bottom centered */
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    /* Or maybe text shadow? Screenshot shows it floating inside/on border */
    width: auto;
}

/* Hero Divider - Broken Border Style */
.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transform: translateY(50%);
    /* Align center of text/line with the border line */
    margin: 0;
}

.hero-divider .divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    width: auto;
    display: block;
}

.hero-divider .year {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 10px;
    background: transparent;
    /* Text sits on top, lines stop before it */
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-icon {
    margin-top: 0.5rem;
    color: var(--color-white);
}

.hero-logo {
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Side Navigation - Exactly as screenshot (Green squares, right edge) */
.side-nav {
    position: fixed;
    right: 0;
    top: 50%;
    /* Adjusted vertical position */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 100;
    gap: 5px;
    /* Spacing between icons */
}

.side-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffd700;
    /* Gold icon color? Or white? Screenshot looks possibly yellowish or white on green */
    color: #fff;
    transition: all 0.2s ease;
    border-radius: 4px 0 0 4px;
    border: 1px solid #fff;
    /* Thin white border as seen? actually hard to see border but boxy */
    background-color: rgba(26, 60, 52, 0.9);
    /* Dark Emerald background matching brand */
}

/* Specific colors if different, or unified emerald */
.side-link.phone {
    background-color: var(--color-emerald-dark);
    border-color: #8da68f;
}

.side-link.whatsapp {
    background-color: var(--color-emerald-dark);
    border-color: #8da68f;
}

.side-link.email {
    background-color: var(--color-emerald-dark);
    border-color: #8da68f;
}

.side-link:hover {
    width: 50px;
    background-color: var(--color-emerald-light);
}

.side-link svg {
    width: 20px;
    height: 20px;
}

/* Footer remains */
.site-footer {
    background-color: #0a1a16;
    color: #aaa;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a:hover {
    color: var(--color-white);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
        white-space: normal;
        line-height: 1.2;
    }

    .border-box {
        padding: 2rem 1rem;
        width: 90%;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .logo-title {
        font-size: 1.1rem;
        /* Significantly smaller to prevent wrap */
        white-space: normal;
        /* Allow wrap if absolutely needed but preferred single line or tight wrap */
        line-height: 1.1;
        max-width: 60%;
        /* Ensure it leaves space for CTA and burger */
    }

    .header-content {
        /* Keep header items aligned horizontally for mobile menu */
        flex-direction: row;
        gap: 0.5rem;
        /* Small gap */
        justify-content: space-between;
        padding: 0 1rem;
        /* Ensure padding on sides */
    }

    .nav-links {
        /* Controlled by .hamburger-menu logic now */
        display: none;
    }

    .nav-container.active .nav-links {
        display: flex;
    }
}

/* Footer */
.site-footer {
    background-color: #0a1a16;
    color: #aaa;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a:hover {
    color: var(--color-white);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Duplicate media query removed - consolidated above */

/* Welcome Section */
.welcome-section {
    padding: 5rem 1rem;
    background-color: #fcfcfc;
    /* Light texture base */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e0e0e0' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    text-align: center;
    color: #000;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-family: var(--font-body);
    /* Looks bold sans serif in screenshot */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 500;
}

.welcome-text-small {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin-bottom: 3rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* YouTube Style Overlay elements */
.video-ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-title-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: sans-serif;
    font-size: 18px;
}

.play-button-large {
    width: 68px;
    height: 48px;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.2s;
}

.play-button-large:hover {
    opacity: 0.9;
}

.video-bottom-bar {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.yt-button {
    background: rgba(23, 23, 23, 0.9);
    color: #fff;
    font-family: Roboto, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 0 10px;
    height: 38px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.btn-primary {
    display: inline-block;
    background-color: #1a3c34;
    /* Correct green from screenshot */
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    /* Rounded pill shape */
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 1px solid #c5a059;
    /* Subtle gold border as usually fits the theme */
}

/* Screenshot actually shows a solid green button, maybe closer to #1E5C3F or #1a3c34 */
.btn-primary:hover {
    background-color: #15302a;
    transform: translateY(-2px);
    color: var(--color-gold);
}

.welcome-footer-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Fix Hero min-height to push content down comfortably */
.hero-content {
    padding-bottom: 4rem;
}

/* Purchase Section */
.purchase-section {
    padding: 3rem 0 5rem 0;
    background-color: #fcfcfc;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e0e0e0' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.purchase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Smaller min-width for mobile */
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.purchase-card {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.purchase-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    aspect-ratio: 4/3;
    padding: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-label {
    background-color: #f7f4e4;
    /* Warm light beige */
    color: #1a3c34;
    /* Dark Emerald */
    padding: 1.2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    border-top: 2px solid #1a3c34;
    letter-spacing: 0.5px;
}

.section-subtitle-footer {
    text-align: center;
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 500;
    color: #888;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* Market Data Section */
/* Market Data Section */
.market-section {
    padding: 6rem 1rem;
    background: radial-gradient(circle at center, #2a2a2a 0%, #111111 100%);
    /* Grey gradient: Lighter grey to dark grey */
    color: #ffffff;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.market-headline {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.market-subtext {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 400;
}

.market-charts-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.chart-container {
    flex: 1 1 500px;
    min-width: 320px;
    max-width: 100%;
    min-height: 450px;
    /* Changed to min-height to allow expansion */
    background: rgba(40, 40, 40, 0.3);
    /* Greyer container background */
    border-radius: 8px;
    padding: 1rem;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-container iframe {
    width: 100%;
    height: 420px;
    /* Increased height significantly */
    border: none;
    overflow: hidden;
}

@media (max-width: 768px) {
    .market-headline {
        font-size: 1.8rem;
    }

    .market-subtext {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .chart-container {
        flex: 1 1 100%;
        min-height: 450px;
    }
}

/* Market Extra Text */
.market-extra-text {
    margin-top: 4rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out forwards;
    /* Reuse existing animation */
}

.market-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.4;
}

.market-small {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Good to Know Section */
.info-section {
    padding: 2rem 1rem 6rem 1rem;
    background-color: #ffffff;
    /* Or match body background if needed */
    position: relative;
    margin-top: -3rem;
    /* Overlap effect */
}

.info-card {
    background-color: #f7f7f7;
    /* Marble fallback gradient/texture */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E"), linear-gradient(to bottom right, #ffffff, #f0f0f0);
    border-radius: 30px;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-image-container {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 5px solid #fff;
}

.info-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    /* Slight zoom usually looks good */
}

.info-text-small {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .info-card {
        padding: 2rem 1rem;
    }

    .info-title {
        font-size: 2.2rem;
    }
}

/* Militaria Section */
.militaria-section {
    padding: 6rem 1rem;
    /* Reuse marble background pattern */
    background-color: #f7f7f7;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E"), linear-gradient(to bottom right, #ffffff, #f0f0f0);
}

.militaria-headline {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.militaria-card {
    background-color: #FDF8E4;
    /* Beige background */
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    /* Slight rounding or square as per image? Image looks consistent with others */
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.militaria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.militaria-card .card-image {
    background-color: #fff;
    /* White background for image area if transparency exists */
    border-bottom: 3px solid #2E7D32;
    /* Green separator line */
    height: 250px;
    /* Consistent height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* Padding for image inside */
}

.militaria-card .card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    /* Contain images within the box */
    width: auto;
    height: auto;
}

.militaria-label {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #2E7D32;
    /* Green text */
    font-size: 1.1rem;
    background-color: #FDF8E4;
}

/* Expertisen Section */
.expertisen-section {
    padding: 0 1rem 6rem 1rem;
    /* Apply marble background */
    background-color: #f7f7f7;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E"), linear-gradient(to bottom right, #ffffff, #f0f0f0);
}

.expertisen-card {
    background-color: #1a1a1a;
    background-image: linear-gradient(to bottom right, #2a2a2a, #000000);
    border-radius: 30px;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.expertisen-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.expertisen-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertisen-seal-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expertisen-seal {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    display: block;
    /* Ensure it behaves well in flex */
}

.expertisen-text-small {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.expertisen-footer-headline {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nachlässe Section */
.nachlaesse-section {
    padding: 4rem 1rem 6rem 1rem;
    /* Apply marble background */
    background-color: #f7f7f7;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E"), linear-gradient(to bottom right, #ffffff, #f0f0f0);
}

.nachlaesse-content {
    text-align: center;
    max-width: 900px;
}

.nachlaesse-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 500;
}

.nachlaesse-image-container {
    margin: 3rem auto;
    max-width: 700px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    /* White frame */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nachlaesse-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.nachlaesse-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Flexible grid instead of fixed 4 cols */
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 0 1rem;
}

.gallery-item {
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 200px;
}

.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .nachlaesse-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Region Section */
.region-section {
    padding: 0 1rem 6rem 1rem;
    background-color: #f7f7f7;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E"), linear-gradient(to bottom right, #ffffff, #f0f0f0);
}

.region-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.region-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
    max-width: 800px;
}

.region-image-container {
    max-width: 900px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 10px;
    /* White frame like nachlaesse */
}

.region-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Detailed Contact Section */
.contact-detailed-section {
    padding: 6rem 1rem;
    background-color: #1a1a1a;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E"), linear-gradient(to bottom right, #2a2a2a, #111111);
    color: #fff;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detailed-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header-box {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.5rem 3rem;
    margin-bottom: 2rem;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.contact-main-title {
    font-family: 'Pinyon Script', cursive;
    /* Fallback to standard script font if var missing */
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.2;
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #242424;
    /* Adjusted to match dark bg roughly, or use transparent */
    padding: 0 1rem;
    white-space: nowrap;
}

.divider-line {
    height: 1px;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    display: none;
    /* Hiding lines for cleaner look if background match is hard */
}

.contact-divider .year {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    background: #1a1a1a;
    /* Background to hide border behind text */
    padding: 0 10px;
}

.contact-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #eee;
}

.contact-icon {
    margin-bottom: 2rem;
    color: #fff;
}

/* Address Grid */
.address-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    width: 100%;
}

.address-col {
    text-align: right;
    flex: 1;
}

.address-col:last-child {
    text-align: left;
}

.address-divider {
    width: 1px;
    height: 60px;
    background-color: #fff;
    opacity: 0.5;
}

/* Virtual Tour */
.virtual-tour-container {
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.tour-card {
    position: relative;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: scale(1.02);
}

.tour-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.6);
}

.tour-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
}

.tour-overlay span {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Opening Hours */
.opening-hours {
    margin-bottom: 4rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.opening-hours h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: none;
    font-weight: 700;
}

.by-appointment {
    margin-top: 0.5rem;
    font-weight: 700;
}

/* Press Box */
.press-box {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.press-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.press-box ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.press-box a {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.press-box a:hover {
    opacity: 0.8;
}

/* Responsive Detailed Contact */
@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .address-grid {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .address-col {
        text-align: center !important;
    }

    .address-divider {
        width: 50px;
        height: 1px;
        margin: 0 auto;
    }

    .press-box {
        padding: 1.5rem 1rem;
    }
}

/* Header CTA Button */
.header-cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-emerald-dark);
    color: #fff;
    border: 1px solid var(--color-gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-left: 1.5rem;
    white-space: nowrap;
}

.header-cta-button:hover {
    background-color: var(--color-emerald-light);
    color: var(--color-gold);
    border-color: var(--color-gold-hover);
}

.header-cta-button svg {
    width: 20px;
    height: 20px;
    display: block;
    /* Removes baseline spacing */
}

.header-cta-button span {
    line-height: 1;
    /* Ensures text height doesn't throw off centering */
    display: block;
    /* consistent block behavior */
    margin-top: 2px;
    /* Optical adjustment for the specific font vertical metrics if needed, strictly speaking flex centering should work but fonts vary */
}

@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
    }

    .header-cta-button {
        display: flex;
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        margin-left: auto;
        margin-right: 3rem;
        /* Make space for hamburger */
    }

    .header-cta-button svg {
        width: 16px;
        height: 16px;
    }
}