/* Main Stylesheet - style.css */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

/* Root Variables */
:root {
    --dark-bg: #121212;
    --gold: #c6a16e;
    --gold-light: #e6c288;
    --dark-brown: #2a2420;
    --gray-pattern: #333333;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: #fff;
    position: relative;
    line-height: 1.6;
    overflow-x: hidden;
}

.diagonal-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(42, 36, 32, 0.7) 25%, transparent 25%),
    linear-gradient(225deg, rgba(42, 36, 32, 0.7) 25%, transparent 25%),
    linear-gradient(315deg, rgba(42, 36, 32, 0.7) 25%, transparent 25%),
    linear-gradient(45deg, rgba(42, 36, 32, 0.7) 25%, transparent 25%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 0, 30px -30px, 0px 30px;
    z-index: 0;
    opacity: 0.3;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* Utility Classes */
.text-gold {
    color: var(--gold);
}

.bg-dark-brown {
    background-color: var(--dark-brown);
}

/* Navigation Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.8rem;
}

.navbar-toggler {
    border-color: var(--gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(198, 161, 110, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: #fff;
    margin-left: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1920/500');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 76px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Header Logo */
.header-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .header-logo {
    height: 35px;
}

/* Hero Logo */
.logo-large {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* Footer Logo */
.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .header-logo {
        height: 35px;
    }

    .logo-large {
        width: 150px;
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        width: 80px;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.logo-large {
    width: 200px;
    margin-bottom: 2rem;
}

.tagline {
    font-style: italic;
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* Section Styles */
.section-title {
    color: var(--gold);
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: var(--gold);
}

.section-title.text-center::after {
    left: 25%;
}

.about-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Button Styles */
.btn-gold {
    background-color: var(--gold);
    color: var(--dark-bg);
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-gold:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--dark-bg);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-gold-outline:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Privilege Card Styles */
.privilege-card {
    background: linear-gradient(120deg, var(--dark-bg), var(--dark-brown));
    border-radius: 15px;
    overflow: hidden;
    margin: 50px auto;
    max-width: 400px;
    border: 1px solid var(--gold);
    position: relative;
}

.privilege-card .card-header {
    padding: 30px 20px;
    border-bottom: 2px solid var(--gold);
}

.privilege-card .card-title {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.card-number {
    font-size: 2rem;
    letter-spacing: 5px;
    color: #fff;
    font-weight: 300;
}

.exclusive-badge {
    background-color: var(--gold);
    color: var(--dark-bg);
    padding: 20px 0;
    width: 200px;
    position: absolute;
    right: -60px;
    top: 30px;
    transform: rotate(90deg);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.privilege-card .card-footer {
    padding: 15px 20px;
    text-align: right;
    font-size: 0.8rem;
}

/* Experience Cards */
.experience-section {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.experience-card {
    background-color: rgba(42, 36, 32, 0.7);
    border-left: 4px solid var(--gold);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s;
}

.experience-card:hover {
    transform: translateY(-10px);
}

.experience-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.experience-title {
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.experience-text {
    font-size: 0.95rem;
}

/* Membership Cards */
.membership-section {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.membership-card {
    background: linear-gradient(120deg, var(--dark-bg), var(--dark-brown));
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--gold);
    height: 100%;
    transition: transform 0.3s;
}

.membership-card:hover {
    transform: translateY(-10px);
}

.card-header {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px 20px;
    border-bottom: 1px solid var(--gold);
    text-align: center;
}

.card-title {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.card-price {
    font-size: 2.5rem;
    color: #fff;
    margin: 20px 0 10px;
}

.card-price-period {
    font-size: 0.9rem;
    color: #ccc;
}

.card-body {
    padding: 30px 20px;
}

.card-footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--gold);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #eee;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Contact Form Styles */
.form-section {
    padding: 100px 0;
    background: linear-gradient(to right, var(--dark-bg), var(--dark-brown));
}

.form-card {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-brown);
    border-radius: 10px;
    padding: 40px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--dark-brown);
    color: #fff;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    box-shadow: none;
    color: #fff;
}

.form-control::placeholder {
    color: #999;
}

.form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--dark-brown);
    color: #fff;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    box-shadow: none;
    color: #fff;
}

.form-label {
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
}

/* Contact Info */
.contact-section {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--dark-brown);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--gold);
}

.contact-text p {
    margin-bottom: 0;
    color: #ccc;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(to right, var(--dark-bg), var(--dark-brown));
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.cta-text {
    margin-bottom: 40px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: black;
    padding: 50px 0 20px;
    color: #999;
}

.footer-logo {
    width: 100px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.footer-links a {
    color: #999;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    margin-top: 50px;
    font-size: 0.8rem;
    text-align: center;
    color: #666;
}

/* Map Section */
.map-section {
    background-color: var(--dark-brown);
    padding: 100px 0;
}

.map-placeholder {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gold);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-style: italic;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .navbar-nav {
        padding: 15px 0;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 40vh;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .experience-card {
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .form-card {
        padding: 20px;
    }

    .contact-info-item {
        flex-direction: column;
    }

    .contact-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .exclusive-badge {
        display: none;
    }

    .card-price {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.5rem;
    }
}

/* Header Logo */
.header-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .header-logo {
    height: 35px;
}

/* Hero Logo */
.logo-large {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* Footer Logo */
.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .header-logo {
        height: 35px;
    }

    .logo-large {
        width: 150px;
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        width: 80px;
    }
}