/* Reset & Core Config */
:root {
    --bg-color: #0a0a0a;
    --surface-color: #161616;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8C2C;
    --font-heading: 'Italiana', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
}

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

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

.btn-gold {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: #000;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-gold:hover::before {
    opacity: 1;
}

/* Header */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.8rem 0;
    /* Compacted from 1.5rem */
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: padding 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    /* Add some breathing room specific to logo */
    transition: var(--transition);
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    mix-blend-mode: normal;
    border-radius: 50%;
}

.logo .accent {
    color: var(--gold-primary);
    font-style: italic;
}

nav ul {
    display: flex;
    gap: 2rem;
    /* Reduced gap */
    list-style: none;
    align-items: center;
}

nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

nav a:hover,
nav a.active {
    color: var(--gold-primary);
}

.btn-primary {
    border: 1px solid var(--gold-primary);
    padding: 0.4rem 1.2rem;
    color: var(--gold-primary);
    border-radius: 2px;
}

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

.btn-events-locked {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.btn-events-locked i {
    font-size: 0.8rem;
    color: var(--gold-dark);
}

.btn-events-locked:hover {
    color: var(--gold-primary);
    opacity: 1;
}

.btn-places {
    font-weight: 500;
}

.btn-gold-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-gold-sm:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Placeholder gradient, would ideally be an image */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.png') no-repeat center center/cover;
    opacity: 0.4;
    z-index: 0;
    filter: brightness(0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

#hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--gold-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.section-dark {
    padding: 8rem 0;
    background-color: var(--surface-color);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-block h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--gold-primary);
}

.text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.pseudo-image {
    width: 100%;
    height: 500px;
    background: url('philosophy.png') no-repeat center center/cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.pseudo-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-primary);
    z-index: -1;
}

/* Services */
#services {
    padding: 8rem 0;
    background-color: var(--bg-color);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 5rem;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 1.5rem auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.card {
    background: var(--surface-color);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to bottom, var(--surface-color), #222);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card p {
    color: var(--text-secondary);
}

/* Contact */
.section-black {
    padding: 8rem 0;
    background: #000;
}

.contact-wrapper {
    max-width: 600px;
    text-align: center;
}

.contact-wrapper h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-wrapper p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
    text-align: left;
}

input,
select,
textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-bottom-color: var(--gold-primary);
}

label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: #555;
    pointer-events: none;
    transition: 0.3s ease all;
}

input:focus~label,
input:not(:placeholder-shown)~label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--gold-primary);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* Mobile */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 3rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .pseudo-image {
        height: 300px;
    }

    nav {
        display: none;
    }

    /* Simple hiding for brevity */
}

/* Language Selector */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    /* Larger for emoji */
    padding: 0 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-dropdown.active .lang-btn {
    transform: scale(1.1);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    display: block;
    /* Overrides default nav ul flex if inherited */
    flex-direction: column;
    gap: 0;
    pointer-events: none;
    /* Prevent clicks when hidden */
    z-index: 1001;
    /* Ensure high z-index */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Better shadow */
}

/* Allow hover as well for better UX */
.lang-dropdown:hover .lang-menu,
.lang-dropdown.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Ensure dropdown items are stacked vertically */
nav ul .lang-dropdown .lang-menu {
    display: block;
    gap: 0;
}

/* .lang-dropdown.active .lang-menu rule merged above */

.lang-menu li {
    display: block;
    width: 100%;
}

.lang-menu a {
    padding: 0.8rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
    text-transform: capitalize;
    /* Ensure nice casing */
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-menu a:hover {
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold-primary);
    padding-left: 2rem;
    /* Slight shift effect */
}

/* Destinations / Experience Section */
.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -4rem auto 4rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.destinations-wrapper {
    position: relative;
    overflow: hidden;
}

.locked-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    /* Optional shadow/background to make text pop */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.locked-overlay i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.locked-overlay h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.locked-overlay p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.blur-content {
    filter: blur(12px) brightness(0.4);
    pointer-events: none;
    user-select: none;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: rgba(22, 22, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}

.destination-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.dest-header {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.country-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.dest-header h3 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-primary);
}

.venue-list {
    list-style: none;
    padding: 2rem;
}

.venue-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.venue-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.venue-list strong {
    display: block;
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
}

.venue-list span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.badge-private {
    display: inline-block;
    font-size: 0.7rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    padding: 0.1rem 0.5rem;
    border-radius: 2px;
    margin-left: 0.5rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Membership / Pricing Section */
#membership {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-color), #0f0f0f);
    position: relative;
}

#membership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.pricing-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-switcher span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-switcher .active {
    color: var(--gold-primary);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--gold-primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--gold-primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
    display: block;
    /* Changed from flex to block if standard anchor */
    display: flex;
    /* Keep flex for layout */
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.price-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
}

.price-card.popular {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.05), rgba(0, 0, 0, 0.8));
    border-color: rgba(212, 175, 55, 0.3);
    padding: 4rem 3rem;
    /* Slightly taller */
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Hover effects for the whole card acting as button */
.price-card:hover .btn-price {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

.price-card.popular:hover .btn-price {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    display: block;
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
}

.features-list {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.features-list li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.features-list li.disabled {
    color: #444;
    text-decoration: line-through;
}

.features-list li.disabled i {
    color: #444;
}

.btn-price {
    width: 100%;
    text-align: center;
    display: block;
    padding: 1rem;
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-price:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.popular .btn-price {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000;
    font-weight: 600;
}

.popular .btn-price:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* Payment Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.modal-content {
    background-color: var(--surface-color);
    margin: 10% auto;
    padding: 2.5rem;
    border: 1px solid var(--gold-primary);
    width: 90%;
    max-width: 500px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

.close-modal {
    color: var(--text-secondary);
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--gold-primary);
}

.modal h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.highlight {
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.payment-btn:hover {
    border-color: var(--gold-primary);
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
}

.payment-btn i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* Bank Details */
.hidden {
    display: none;
}

.bank-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.bank-details h3 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.bank-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.iban-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 4px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.iban-box p {
    margin-bottom: 0.5rem;
    font-family: monospace;
    font-size: 0.95rem;
    color: #fff;
}

.fa-copy {
    cursor: pointer;
    margin-left: 0.5rem;
    color: var(--gold-primary);
}

.fa-copy:hover {
    color: var(--gold-light);
}

.note {
    font-size: 0.8rem !important;
    font-style: italic;
    opacity: 0.7;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 400px;
    /* Fixed height for consistency */
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item h3 {
    color: var(--gold-primary);
    font-size: 1.8rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover h3 {
    transform: translateY(0);
}

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

    .gallery-item {
        height: 300px;
    }
}