:root {
    /* Color Palette - Updated based on Brand Guidelines */
    --primary-color: #2E1A47; /* Deep Royal Purple */
    --primary-light: #E6E6FA; /* Soft Lavender */
    --accent-color: #1A1A1A; /* Dark Charcoal/Black */
    --gold-highlight: #D4AF37; /* Metallic Gold */
    --bg-warm-white: #FDFBF7;
    --bg-light-neutral: #F4F4F4;
    --text-dark: #1A1A1A;
    --text-muted: #555555;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Great Vibes', cursive; /* Added for emotional tagline */

    /* Spacing & Layout */
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-warm-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color);
}

.text-gold {
    color: var(--gold-highlight);
}

.font-script {
    font-family: var(--font-script);
    font-weight: 400;
}

.bg-warm {
    background-color: var(--bg-warm-white);
}

.bg-lavender {
    background: linear-gradient(135deg, #FDFBF7 0%, #E6E6FA 100%);
}

.section-padding {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 10px 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    padding: 10px 30px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 30px;
    border: 2px solid var(--primary-color);
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Cards & Containers */
.card-custom {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-warm-white) 0%, var(--primary-light) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 60px 0 20px;
}

footer h5 {
    color: var(--gold-highlight);
    margin-bottom: 20px;
}

footer a {
    color: #ccc;
}

footer a:hover {
    color: var(--gold-highlight);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 50px 0;
    }
}
