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

:root {
    --gold: #D4AF37;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray: #e0e0e0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background: var(--black);
}

h1, h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

/* Top Menu */
.top-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
}

.menu-links {
    display: flex;
    gap: 30px;
}

.menu-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: var(--gold);
}

/* Sections fullscreen */
.section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Parallax background */
.bg-fixed {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.section-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

/* Navigation dots */
.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
    background: transparent;
}

.dot:hover, .dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

/* Hero Section */
.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}


.scroll-arrow {
    width: 1px;
    height: 40px;
    background: var(--white);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* About Section */
.content-box {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: fadeIn 1s ease;
}

.content-box h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 30px auto;
}

.content-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Gallery Section */
.section-gallery {
    background: var(--black);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 60px;
    color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: fadeIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--gold);
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* Contact Section */
.contact-box {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    min-width: 500px;
}

.contact-box h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-info {
    margin: 30px 0;
    font-size: 1.1rem;
}

.contact-info strong {
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .content-box, .contact-box {
        padding: 40px 30px;
        min-width: auto;
    }
    
    .content-box h2, .contact-box h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .nav-dots {
        right: 15px;
    }
}

/* Background fixed (sans parallax) */
.bg-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.4);
}

/* Gallery grid large */
.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .gallery-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

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