
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Helvetica+Neue&display=swap');

body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background: #FFFFFF;
    color: #000000;
}

header, section, footer {
    padding: 60px 20px;
    text-align: center;
}

header {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: white;
}

header img {
    width: 120px;
    margin-bottom: 20px;
    background-color: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 50%;
}

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

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

a.button {
    background: #C6A664;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

a.button:hover {
    background: #000000;
    color: #C6A664;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #FFFFFF;
    border: 1px solid #C6A664;
    border-radius: 8px;
    width: 250px;
    padding: 30px;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.link {
    color: #C6A664;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

footer {
    background: #1A1A1A;
    color: #FFFFFF;
    font-size: 14px;
}

footer a {
    color: #C6A664;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    .cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 80%;
    }
    header img {
        width: 100px;
    }
}
