/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f4f2ee;
    font-family: "Inter", sans-serif;
    color: #222;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(30, 30, 30, 0.45);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px !important;
    width: auto !important;
    display: block;
}

/* NAVIGATION */
nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav ul li a {
    text-decoration: none;
    color: #ddd;
    font-weight: 400;
    font-size: 15px;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    color: #f1e3c6;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: #ccc;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f1e3c6;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: url("/images/Photo4.jpeg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 12, 0.20);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    animation: fadeInUp 1.3s ease-out;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f1e3c6;
    margin-bottom: 10px;
}

.hero-sub {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.85;
}

.hero-btn {
    padding: 14px 32px;
    border: 1px solid #f1e3c6;
    color: #f1e3c6;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    border-radius: 4px;
}

.hero-btn:hover {
    background: #f1e3c6;
    color: #222;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px);}
    to   { opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media (max-width: 950px){
    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        right: 40px;
        background: rgba(30,30,30,0.9);
        padding: 25px;
        flex-direction: column;
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }

    nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}