* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Login Screen */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920') center/cover;
    padding: 20px;
}

.login-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 60px 50px;
    border-radius: 2px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.login-box h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-weight: 300;
}

.divider {
    width: 60px;
    height: 1px;
    background: #c9a961;
    margin: 0 auto 20px;
}

.login-box p {
    color: #666;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 300;
}

.login-form input {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    font-size: 14px;
    margin-bottom: 25px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.login-form input:focus {
    outline: none;
    border-color: #c9a961;
    background: white;
}

.login-form button {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: white;
    border: none;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.login-form button:hover {
    background: #c9a961;
}

.error-message {
    color: #d32f2f;
    margin-top: 20px;
    font-size: 12px;
    display: none;
    letter-spacing: 1px;
}

/* Main Content */
.main-content {
    display: none;
    background: #fafafa;
}

.main-content.active {
    display: block;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e8;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 28px;
    color: #1a1a1a;
    letter-spacing: 3px;
    font-weight: 300;
}

.logout-btn {
    padding: 12px 30px;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.logout-btn:hover {
    background: #1a1a1a;
    color: white;
}

/* Hero Section with Video */
.hero-section {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay for better text readability */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 72px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: #c9a961;
    margin: 0 auto 30px;
}

.hero-location {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 300;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Intro Section */
.intro-section {
    padding: 120px 0;
    text-align: center;
}

.intro-section h2 {
    font-size: 52px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: white;
    margin: 0 -40px;
}

.vision-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.vision-section h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.vision-section p {
    font-size: 18px;
    line-height: 2;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
}

.gallery-section h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 70px;
    text-align: center;
    letter-spacing: 2px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.95);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* Essence Section */
.essence-section {
    padding: 100px 0;
    background: #1a1a1a;
    margin: 0 -40px;
}

.essence-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.essence-item h3 {
    font-size: 48px;
    color: #c9a961;
    margin-bottom: 15px;
    font-weight: 300;
}

.essence-item p {
    color: #bbb;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Details Section */
.details-section {
    padding: 120px 0;
}

.details-section h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 70px;
    text-align: center;
    letter-spacing: 2px;
}

.details-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.detail-group h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.detail-group p {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
}

.location-link {
    display: inline-block;
    margin-top: 20px;
    color: #c9a961;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 1px solid #c9a961;
    transition: all 0.3s;
}

.location-link:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
}

/* Investment Section */
.investment-section {
    padding: 100px 0;
    background: white;
    margin: 0 -40px;
    text-align: center;
}

.investment-section h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.investment-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.investment-options {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.option-card {
    padding: 60px 40px;
    background: #fafafa;
    transition: all 0.4s;
}

.option-card:hover {
    background: #1a1a1a;
}

.option-card h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 1px;
    transition: color 0.4s;
}

.option-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    transition: color 0.4s;
}

.option-card:hover h3,
.option-card:hover p {
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-name {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-email {
    display: inline-block;
    font-size: 18px;
    color: #1a1a1a;
    text-decoration: none;
    padding: 18px 50px;
    border: 2px solid #1a1a1a;
    transition: all 0.4s;
    letter-spacing: 1px;
}

.contact-email:hover {
    background: #1a1a1a;
    color: white;
}

.contact-note {
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
    margin-top: 30px;
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 50px 0;
    text-align: center;
}

footer p {
    color: #999;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 60px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 1001;
    font-weight: 200;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 48px;
    }
    
    .essence-grid,
    .details-content,
    .investment-options {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .container,
    .vision-content,
    .essence-grid,
    .investment-options {
        padding: 0 20px;
    }
    
    .hero-overlay h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-location {
        font-size: 12px;
    }
    
    .intro-section h2,
    .vision-section h2,
    .gallery-section h2,
    .details-section h2,
    .investment-section h2,
    .contact-section h2 {
        font-size: 32px;
    }
    
    .lead-text {
        font-size: 16px;
    }
    
    .vision-section p {
        font-size: 16px;
    }
}



/* Map Section */
.map-section {
    padding: 120px 0;
    background: white;
    margin: 0 -40px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.map-content {
    text-align: center;
    margin-bottom: 60px;
}

.map-content h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.map-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.map-embed {
    width: 100%;
    height: 800px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
}

.map-embed iframe {
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .map-container {
        padding: 0 20px;
    }
    
    .map-embed {
        height: 400px;
    }
    
    .map-content h2 {
        font-size: 32px;
    }
    
    .map-description {
        font-size: 16px;
    }
}