:root {
    --primary-bg: #EAE6DD; /* Light beige background */
    --text-gold: #B88E4E; /* Dark gold for headers */
    --text-body: #4A4A4A; /* Dark grey for body text */
    --section-bg: #F5F1E8; /* Slightly lighter section bg */
    --white: #ffffff;
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-gold);
    text-align: center;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header / Hero */
.hero {
    padding: 8rem 1rem 4rem; /* Increased top padding to account for fixed nav */
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    
}

.logo-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--text-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Placeholder decorative element */
    background: radial-gradient(circle, transparent 60%, var(--text-gold) 61%, transparent 63%);
}

.logo-text {
    font-family: var(--font-heading);
    color: var(--text-gold);
    font-size: 1.2rem;
}

.main-title {
    font-size: 5rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    color: #D4AF67; /* Lighter gold for main title */
}

.sub-title {
    font-family: var(--font-subheading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #5D4037; /* Darker brown */
}

.quote-box {
    border: 1px solid var(--text-body);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-style: italic;
    font-family: var(--font-subheading);
}

.event-details {
    display: flex;
    justify-content: center;
    align-items: center; /* Ensure vertical alignment of items */
    gap: 1.5rem; /* Increased gap slightly */
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: #5D4037;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Space between icon and text */
}

.detail-item svg {
    margin-bottom: 2px; /* Optical alignment */
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    border: 1px solid var(--text-body);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--text-gold);
    color: var(--white);
    border-color: var(--text-gold);
}

/* Sections Common */
.section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

/* About Section */
.about p {
    text-align: justify;
    text-align-last: center;
    font-family: var(--font-subheading);
}

/* Mission Section */
.mission {
    padding: 6rem 2rem;
}

.mission-text {
    font-size: 1.4rem;
    font-family: var(--font-subheading);
}

/* Navigation */
.nav-bar {
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent; 
    backdrop-filter: none;
    position: fixed; 
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: none;
}

.nav-logo {
    font-family: var(--font-heading);
    color: var(--text-gold);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-subheading);
    color: #5D4037; /* Dark brown to match other sub-texts */
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-gold);
}


footer {
    text-align: center;
    padding: 2rem;
    background-color: #D4AF67;
    color: white;
    margin-top: 4rem;
}
