body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.85);
    color: white;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.hero {
    height: 100vh;
    position: relative;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
}

.hero h2 {
    font-size: 60px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: gold;
    color: black;
    text-decoration: none;
}

.section {
    padding: 100px 0;
}

.section.dark {
    background: #111;
    color: white;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.banner {
    text-align: center;
    font-size: 24px;
}

.contact .form {
    display: flex;
    flex-direction: column;
}

.form input, .form textarea {
    margin-bottom: 15px;
    padding: 10px;
}

.form button {
    padding: 12px;
    background: black;
    color: white;
    border: none;
}

.grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: white;
}