@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Modern, Contrast Light Theme */
    --primary-color: #059669; /* Emerald Green */
    --secondary-color: #F59E0B; /* Amber */
    --dark-color: #1F2937; /* Dark Gray */
    --bg-color: #F9FAFB; /* Light Gray Background */
    --accent-color: #059669; /* Used for JS banner compliance */
    
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Inter', sans-serif;
}

body {
    font-family: var(--font-text);
    background-color: var(--bg-color);
    color: var(--dark-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
}

main {
    flex: 1;
}

/* Custom Utilities */
.text-primary { color: var(--primary-color); }
.bg-primary { background-color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-dark { background-color: var(--dark-color); }

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}
.btn-primary:hover {
    background-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--primary-color);
}

/* Mobile Menu */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Background Overlay */
.bg-overlay {
    background: rgba(31, 41, 55, 0.7);
}

/* Custom Numbered List */
.numbered-list-custom {
    list-style: none;
    padding-left: 0;
}
.numbered-list-custom li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
}
.numbered-list-custom li::before {
    content: counter(list-item);
    counter-increment: list-item;
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}
.numbered-list-custom {
    counter-reset: list-item;
}

/* Hero Sections */
.hero-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* Card Hover */
.feat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
    cursor: pointer;
    padding: 0.6rem 2rem;
    margin: 0.5rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 4px;
    border: none;
    display: inline-block;
    font-weight: bold;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn-alt {
    background-color: #4B5563;
}