* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #222;
}

/* NAVBAR */
header {
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 15px 5%;
}

nav a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-info {
    font-size: 14px;
}

/* HERO */
.hero {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f') center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
}

.btn {
    background: gold;
    color: black;
    padding: 12px 25px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 3px;
}

/* SECTIONS */
.section {
    padding: 80px 5%;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 40px;
}

.services {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 30px;
    width: 300px;
    border-radius: 5px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CONTACT */
.dark {
    background: #111;
    color: white;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-details {
    max-width: 300px;
    text-align: left;
}

form {
    max-width: 400px;
    width: 100%;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
}

button {
    width: 100%;
    padding: 12px;
    background: gold;
    border: none;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: black;
    color: white;
    text-align: center;
    padding: 20px;
}

/* MOBILE */
@media(max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .hero h2 {
        font-size: 2rem;
    }
}