* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f4ee;
    color: #222;
    line-height: 1.6;
}

/* NAVIGATION */

header {
    position: absolute;
    width: 100%;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 40px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.instagram-btn {
    background: #c7a66b;
    color: white;
    text-decoration: none;

    padding: 12px 20px;

    border-radius: 8px;

    transition: 0.3s;
}

.instagram-btn:hover {
    opacity: 0.9;
}

/* HERO */

.hero {
    height: 100vh;

   /*  background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center; */

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero-video{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:0;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    z-index:1;
}

.hero-content {
    position: relative;
    z-index: 2;

    color: white;

    max-width: 800px;

    padding: 20px;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 5rem;

    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gold-button {
    background: #c7a66b;
    color: white;

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 8px;

    transition: 0.3s;
}

.gold-button:hover {
    transform: translateY(-2px);
}

.dark-button {
    background: white;
    color: #222;

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 8px;
}

/* ABOUT */

.about {
    max-width: 900px;

    margin: auto;

    text-align: center;

    padding: 100px 20px;
}

.about h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 3rem;

    margin-bottom: 25px;
}

.about p {
    font-size: 1.1rem;
}

/* GALLERY */

.gallery {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;

    padding: 0 40px 80px;
}

.gallery img {
    width: 100%;
    height: 350px;

    object-fit: cover;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.15);

    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.02);
}

/* CTA */

.cta {
    text-align: center;

    background: #eee5d9;

    padding: 100px 20px;
}

.cta h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 3rem;

    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;

    margin: auto;

    margin-bottom: 30px;
}

/* FOOTER */

footer {
    background: #222;

    color: white;

    text-align: center;

    padding: 60px 20px;
}

footer h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 2rem;

    margin-bottom: 10px;
}

footer p {
    margin-bottom: 15px;
}

footer a {
    color: #c7a66b;
    text-decoration: none;
}

/* MOBILE */

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about h2,
    .cta h2 {
        font-size: 2.2rem;
    }

    .gallery {
        padding: 0 20px 60px;
    }
}