        /* Header & Navigation */
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 3rem;
            background-color: #ff6f3c; /* Restoring the solid orange matching colors */
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        header .logo {
            font-family: 'Playfair Display', serif; /* Elegant heading */
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
            margin: 0;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            font-family: Arial, sans-serif; /* Familiar, not too crazy */
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            font-size: 1.05rem;
            transition: color 0.3s ease;
            margin: 0;
        }

        nav a:hover, nav a.active {
            color: #ffe8d6;
        }


/* HERO VIDEO */
.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero video {
    width: 100%;
}

.hero-text {
    position: absolute;
    top: 40%;
    left: 30%;
    color: white;
    text-align: center;
}

/* BUTTON */
.btn {
    background: orange;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.btn:hover {
    background: red;
}

/* CARDS */
.card {
    display: inline-block;
    width: 220px;
    margin: 20px;
    text-align: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.1);
}

.card img {
    width: 100%;
    transition: 0.3s;
}

.card img:hover {
    transform: scale(1.2);
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
}

.gallery-grid img {
    width: 100%;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.1);
}

/* 🔥 HERO SPECIFIC STYLES */
.hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
}



.menu {
    margin-top: 100px;
}
body {
    margin: 0;
    font-family: Arial;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

html, body {
    height: 100%;
    margin: 0;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-links a {
    margin: 10px;
    color: white;
    text-decoration: none;
}