/* Base styles */
body {
    background-color: #0a0a0a; /* Slightly lighter than pure black */
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Luxury serif font for headings */
h1, h2, h3, .font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Color definitions */
:root {
    --emerald: #009B77; /* Your emerald green */
    --emerald-dark: #007a60;
    --text-light: #E5E7EB; /* Slightly off-white for text */
    --placeholder-bg: #1a1a1a; /* Slightly lighter placeholder */
    --border-color: #222;
}
a.nav-link.text-xl.font-bold.tracking-wider.block.p-0 {
    color: var(--emerald);
}
/* Section spacing with background images */
.section-with-bg {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 6rem 0;
    position: relative;
}

.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.7); /* Match body background */
}

.section-content {
    position: relative;
    z-index: 2;
}

/* Parallax effect for hero */
.parallax-hero {
    background-attachment: fixed;
}

/* Page wrapper for SPA */
.page-content {
    display: none; /* Hidden by default */
}
.page-content.active {
    display: block; /* Shown when active */
}

/* --- 18+ Disclaimer Modal --- */
#age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}
.age-gate-box {
    background-color: #000;
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border-radius: 8px;
}
.age-gate-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.age-gate-box p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}
.age-gate-button {
    background-color: var(--emerald);
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}
.age-gate-button:hover {
    background-color: var(--emerald-dark);
}

/* --- Navigation --- */
nav {
    background-color: #000;
    border-bottom: 1px solid var(--border-color);
}
nav a {
    color: var(--text-light);
    transition: color 0.3s ease;
    padding: 1rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}
nav a:hover, nav a.active {
    color: var(--emerald);
}
/* Mobile menu button */
#menu-button {
    color: var(--text-light);
}
#mobile-menu {
    background-color: #000;
    border-bottom: 1px solid var(--border-color);
}

/* --- Global Button Style --- */
.btn-primary {
    display: inline-block;
    background-color: var(--emerald);
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.85rem 2.5rem;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--emerald-dark);
}

/* --- Social Icons --- */
.social-icon {
    display: inline-block;
    fill: var(--text-light);
    transition: fill 0.3s ease, transform 0.3s ease;
}
.social-icon:hover {
    fill: var(--emerald);
    transform: scale(1.1);
}

/* --- Homepage Hero --- */
#page-home-hero {
    position: relative;
    background-image: url('/image/1.png'); /* Placeholder */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax-like effect */
}
#page-home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(0 0 0 / 80%) /* Dark overlay */
}
/* Content container for hero */
#page-home-hero > div {
    position: relative;
    z-index: 10;
}

/* --- Placeholder Styles --- */
.image-placeholder {
    width: 100%;
    min-height: 400px;
    background-color: var(--placeholder-bg);
    border: 1px dashed var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
    font-style: italic;
    border-radius: 8px;
}
.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--placeholder-bg);
    border: 1px dashed var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
    font-style: italic;
    border-radius: 8px;
}

/* --- Review Stars --- */
.stars {
    color: #FFD700; /* Gold */
    font-size: 1.5rem;
    letter-spacing: 0.2em;
}

/* --- Star Rating Form --- */
.star-rating input:checked + label,
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #FFD700;
}

/* --- Session Info Page --- */
.boundary-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}
.boundary-list li::before {
    content: '•';
    color: var(--emerald);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.tribute-card {
    background-color: var(--placeholder-bg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
}

/* --- Gallery Page --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.gallery-grid .video-placeholder {
    grid-column: span 1;
}
/* Make video placeholders span full on desktop if needed */
@media (min-width: 768px) {
    .gallery-grid .video-placeholder {
        grid-column: span 2;
    }
}

/* --- Contact Form --- */
.form-input {
    background-color: var(--placeholder-bg);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 5px;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 2px rgba(0, 155, 119, 0.5);
}
.form-textarea {
    min-height: 150px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    color: #777;
}

/* Owl Carousel Custom Styles */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white !important;
    font-size: 24px !important;
    font-weight: bold !important;
}

.owl-nav button.owl-prev {
    left: -50px;
}

.owl-nav button.owl-next {
    right: -50px;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background: var(--emerald) !important;
    transform: translateY(-50%) scale(1.1);
}

.owl-nav button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dots styling */
.owl-dots {
    margin-top: 20px !important;
    text-align: center;
}
.owl-nav {
    display: none !important;
}
.owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3) !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dots button.owl-dot.active {
    background: var(--emerald) !important;
}

.owl-dots button.owl-dot:hover {
    background: rgba(255, 255, 255, 0.5) !important;
}

/* Login Page Styles */
.login-container {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--emerald);
}

.login-header p {
    color: var(--text-light);
}

.login-form .form-input {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 5px;
    padding: 0.75rem;
    width: 100%;
    transition: all 0.3s ease;
}

.login-form .form-input:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 2px rgba(0, 155, 119, 0.3);
}

.login-form .form-input::placeholder {
    color: #666;
}

.login-button {
    background: var(--emerald);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.login-button:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.login-button:active {
    transform: translateY(0);
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.login-footer p {
    color: #777;
    line-height: 1.6;
}

.login-footer a {
    color: var(--emerald);
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

.error-message {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}