

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

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

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #1A1A1A;
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1616627981450-4c0c1c3f3b8b') center/cover no-repeat;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.hero-content {
    position: relative;
    color: white;
    max-width: 600px;
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 15px;
    background: #4A372E;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.section {
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.footer {
    background: #2F221B;
    color: white;
    padding: 40px 0;
    text-align: center;
}

@media(max-width:768px) {
    .grid { grid-template-columns: 1fr; }
}

h2 {
    margin-bottom: 20px;
}

.card {
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}