:root {
    --primary: #E6DED0;
    --secondary: #A7B77A;
    --background: #3B2A33;
}

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

body {
    background-color: var(--background);
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(59, 42, 51, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(230, 222, 208, 0.2);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 2px;
    width: 25px;
    background: var(--primary);
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: 0.3s;
}

.cta-button:hover {
    background: var(--primary);
}

/* Sections */
.section {
    padding: 4rem 2rem;
    text-align: center;
}

.section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(230, 222, 208, 0.2);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background: var(--background);
        flex-direction: column;
        width: 100%;
        align-items: center;
        display: none;
        padding: 2rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* HERO VIDEO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(59, 42, 51, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

/* GALLERY */
.gallery-section {
    background: rgba(230, 222, 208, 0.05);
}

.carousel {
    position: relative;
    max-width: 900px;
    margin: 2rem auto;
    overflow: hidden;
    /* aspect-ratio: 16 / 9; */
    aspect-ratio: 4 / 5;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
    border-radius: 4px;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* .carousel {
    position: relative;
    max-width: 900px;
    margin: 2rem auto;
    overflow: hidden;

    aspect-ratio: 16 / 9; 
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s ease-in-out;
    border-radius: 4px;
}

.slide.active {
    opacity: 1;
    animation: slowZoom 6s ease-in-out forwards;
}
@keyframes slowZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.1); }
} */
/* Carousel Buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(59, 42, 51, 0.7);
    color: var(--primary);
    border: none;
    padding: 0.8rem 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: 0.3s;
}

.prev:hover,
.next:hover {
    background: var(--secondary);
    color: #000;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
