:root {
    --primary-coffee: #2c1810;
    --gold: #b08d57;
    --cream: #f9f5f0;
}

/* Apply Playfair Display to all Headings */
h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-coffee); /* Using the coffee color from your theme */
}

/* Apply Lato to the Body and Paragraphs */
body, p, span, a, label, .btn {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Optional: Italicize sub-headings for an elegant look */
.text-gold.text-uppercase {
    font-family: 'Lato', sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
}

body {
    font-family: 'Playfair Display', serif; /* Elegant serif for headings */
    background-color: var(--cream);
    color: #444;
}

.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.bg-coffee { background-color: var(--primary-coffee); }

/* Custom Button Style matching your reference */
.btn-gold {
    background-color: var(--gold);
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    transition: 0.3s;
    border: none;
}

.btn-gold:hover {
    background-color: var(--primary-coffee);
    color: white;
}

/* Card & Section Styling */
.elegant-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.section-padding { padding: 80px 0; }
/* Adding a subtle hover effect for the icons */
    .transition-effect {
        transition: transform 0.3s ease, color 0.3s ease;
    }
    .transition-effect:hover {
        transform: translateY(-3px);
        color: #fff !important; /* Turns white on hover */
    }