/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fdfbf7;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
}

/* ================= HEADER ================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 90px;
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 70px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: 0.3s ease;
}

/* Elegant gold underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #c6a74e;
    left: 0;
    bottom: -6px;
    transition: 0.4s ease;
}

.nav-links a:hover {
    color: #c6a74e;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ================= HERO ================= */

.hero {
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to right, #ffffff, #f8f3e8);
    padding: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    color: #777;
    margin-bottom: 45px;
    font-size: 18px;
    letter-spacing: 1px;
}

/* ================= BUTTONS ================= */

.buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.btn-primary {
    padding: 14px 40px;
    background: linear-gradient(45deg, #d4af37, #b8962e);
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 40px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(212,175,55,0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.4);
}

.btn-secondary {
    padding: 14px 40px;
    border: 1px solid #c6a74e;
    color: #b8962e;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #c6a74e;
    color: white;
}

/* ================= SECTIONS ================= */

.section {
    padding: 120px 100px;
    text-align: center;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 20px;
    color: #b8962e;
}

/* Elegant divider line */
.section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #d4af37;
    margin: 20px auto 0;
}

/* Soft background section */
.dark {
    background: #faf6ee;
}

/* ================= CARDS ================= */

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-size: 22px;
}

.card p {
    color: #777;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212,175,55,0.15);
}

/* ================= FOOTER ================= */

footer {
    background: white;
    padding: 40px;
    text-align: center;
    color: #aaa;
    border-top: 1px solid #eee;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 768px) {

    header {
        padding: 20px 30px;
    }

    .section {
        padding: 80px 30px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .buttons {
        flex-direction: column;
    }
}
