/* MIRRAR STYLE VARIABLES */
:root {
    --bg-dark: #0f0f13;
    /* Deep space/charcoal */
    --bg-card: #1a1a24;
    --text-main: #e2e2e2;
    --text-muted: #a0a0b0;

    /* NOORD THEME (GREEN) */
    --accent-gold: #2ecc71;
    /* Emerald Green */
    --accent-gold-hover: #27ae60;
    --color-accent-glow: rgba(46, 204, 113, 0.4);

    --accent-blue: #4a6fa5;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --spacing-container: 1200px;
}

/* RESET & BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 18px;
}

h1,
h2,
h3,
h4 {
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-heading);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    /* Reduced from 1rem to fit breadcrumbs */
}

/* BREADCRUMBS */
.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    margin-top: -10px;
    /* Pull closer to header or nav */
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s;
}

.breadcrumbs a:hover {
    color: var(--accent-gold);
}

.breadcrumbs span {
    margin: 0 8px;
    color: #555;
}

.breadcrumbs .current {
    color: var(--accent-gold);
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

/* UTILS */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

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

.justify-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.alt-bg {
    background-color: var(--bg-card);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* NAVIGATION */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    /* Space between logo and links */
    align-items: center;
}

.nav-logo img {
    height: 40px;
    /* Adjust size as needed */
    width: auto;
    filter: drop-shadow(0 0 5px rgba(46, 204, 113, 0.5));
    transition: transform 0.3s;
}

.nav-logo img:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
}

/* Nav Item Wrapper for Dropdowns */
.nav-item {
    position: relative;
    margin-left: 50px;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item>a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    /* Margins handled by wrapper */
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    text-decoration: none;
    padding: 10px 0;
    /* Add padding for easier hover */
}

.nav-item>a:hover {
    color: var(--accent-gold);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Dropdown styling */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 15, 19, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.nav-dropdown a {
    color: #ccc;
    font-size: 0.85rem;
    padding: 8px 12px;
    margin: 0;
    text-transform: none;
    /* Keep sub-items readable */
    text-align: left;
    white-space: nowrap;
    border-radius: 4px;
}

.nav-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(5px);
}

.nav-dropdown-header {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 12px 4px 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 5px;
    pointer-events: none;
    opacity: 0.8;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    /* Adjusted due to padding */
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--color-accent-glow);
}

.btn-outline {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: #000;
}

.btn-gold {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
}

.btn-gold:hover {
    transform: scale(1.05);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* HERO */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a2520 0%, #0f0f13 100%);
    /* Greenish tint */
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-img {
    max-width: 450px;
    height: auto;
    margin-bottom: 2rem;
    padding: 40px;
    /* Generous padding for glow */
    background: var(--bg-dark);
    border-radius: 50%;
    /* Circular mirror */
    filter: drop-shadow(0 0 40px rgba(46, 204, 113, 0.7));
    /* Stronger green glow */
}

.tagline {
    display: block;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    /* Increased to prevent badge overlap */
    font-weight: 300;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.quote-block {
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
}

/* SHOWCASE */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: "✦";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}

/* PRODUCTS */
.product-grid-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-grid-flex .product-card {
    flex: 1 1 250px;
    max-width: 300px;
    min-width: 240px;
}

@media(max-width: 600px) {
    .product-grid-flex .product-card {
        max-width: 100%;
    }
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.product-card.popular {
    border: 1px solid var(--accent-gold);
    position: relative;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #000;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    /* Prevent overlap with other elements */
}

.card-header {
    margin-bottom: 20px;
}

.card-header .sub {
    display: block;
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.card-img-preview {
    position: relative;
    cursor: pointer;
}

.card-img-preview img {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 4px;
    background: transparent;
    /* No gray background */
}

.product-card.landscape .card-img-preview img {
    aspect-ratio: 3/2;
}

.card-body hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}


/* Shipping notice styling */
.shipping-excl {
    font-size: 0.5em;
    font-weight: 300;
    color: #a0a0b0;
    margin-left: 5px;
    vertical-align: middle;
}

.shipping-excl-big {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #a0a0b0;
    margin-top: -5px;
    margin-bottom: 5px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 10px;
}

/* BUNDLE */
.bundle-box {
    background: linear-gradient(135deg, #181820 0%, #252530 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.bundle-header {
    margin-bottom: 30px;
}

.fire-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.bundle-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin: 20px auto;
}

.bundle-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.bundle-list li.bonus {
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 15px;
}

.price-big {
    margin: 30px 0;
}

.price-big .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.faq-item h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Booking Note Custom Style */
.booking-note {
    font-size: 0.9em;
    color: #a0a0b0;
    /* Lighter grey for readability on dark bg */
    margin-bottom: 10px;
    font-style: italic;
}

/* LIGHTBOX & GALLERY */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.lightbox.hidden {
    display: none;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    z-index: 2001;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 50px var(--color-accent-glow);
}

.close-btn {
    position: absolute;
    top: -50px;
    right: -20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

.prev-btn {
    left: -80px;
}

.next-btn {
    right: -80px;
}

.caption {
    margin-top: 20px;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-align: center;
}

/* View Indicator */
.view-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.view-indicator span {
    background: var(--accent-gold);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    transform: translateY(20px);
    transition: 0.3s;
}

.card-img-preview:hover .view-indicator {
    opacity: 1;
}

.card-img-preview:hover .view-indicator span {
    transform: translateY(0);
}

@media(max-width: 900px) {

    .prev-btn,
    .next-btn {
        position: fixed;
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }

    .close-btn {
        top: -40px;
        right: 0;
    }
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 900px) {
    .main-nav {
        position: relative;
        flex-direction: column;
        padding: 20px;
        height: auto;
    }

    .nav-links {
        flex-direction: column;
        margin-top: 20px;
        width: 100%;
    }

    .nav-item {
        margin-left: 0;
        margin-bottom: 15px;
        width: 100%;
        justify-content: center;
    }

    .nav-item>a {
        padding: 10px;
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Adjust specific Kompas border for mobile */
    .nav-item a[style*="border-left"] {
        border-left: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        border-top: 1px solid #333;
        padding-top: 10px !important;
        margin-top: 10px !important;
    }
}