/* Award-Winning Heritage Theme Overrides */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    /* Deeper, more luxurious colors */
    --color-primary: #172119; /* Deep forest green / near black */
    --color-secondary: #3b2a1a; /* Rich dark wood */
    --color-accent: #d4af37; /* Vintage metallic gold */
    --color-accent-dark: #b5952f;
    --color-bg-base: #fcfaf5; /* Warm parchment off-white */
    --color-bg-alt: #f3efe6; /* Slightly darker parchment */
    
    /* Elegant Editorial Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing & Transitions */
    --transition-lux: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Adjustments */
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: #333;
    letter-spacing: 0.02em;
    background-color: var(--color-bg-base);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.05;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    position: relative;
    padding-bottom: 15px;
}

/* Subtle Gold underline for main section headers */
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.5s ease;
}

.feature-content h2::after, .split-text h2::after, .contact-info h2::after {
    left: 0;
    transform: translateX(0);
}

/* Navbar Glassmorphism */
.navbar {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(0px);
    z-index: 1000;
}

body.inner-page .navbar {
    background-color: var(--color-primary);
    border-bottom: 1px solid var(--color-accent);
}

body.inner-page .navbar .nav-links a, 
body.inner-page .navbar .logo h1 a {
    color: #fff;
}

.navbar.scrolled {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.scrolled .nav-links a, 
.navbar.scrolled .logo h1 a {
    color: var(--color-primary);
}

.logo h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Navigation Links */
.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.nav-links a::after {
    background-color: var(--color-accent);
    height: 2px;
}

/* Luxury Buttons */
.btn, .btn-outline {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.15em;
    border-radius: 0; /* Sharp, modern edges */
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--color-primary);
    transition: var(--transition-lux);
}

.btn::before, .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color-accent);
    transition: var(--transition-lux);
    z-index: -1;
}

.btn {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

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

.btn:hover::before {
    width: 100%;
    background-color: var(--color-accent);
}

.btn-outline {
    background-color: transparent;
}

.btn-outline:hover {
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.btn-outline:hover::before {
    width: 100%;
    background-color: var(--color-accent);
}

/* Hero Section Enhancements */
.hero-content h1 {
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Images & Cards */
.split-image, .portrait-parallax-wrapper {
    border-radius: 0;
    position: relative;
}

.split-image::after, .portrait-parallax-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: 10;
    transition: var(--transition-lux);
}

.split-image:hover::after, .portrait-parallax-wrapper:hover::after {
    inset: 15px;
    border-color: var(--color-accent);
}

/* Footer Refinement */
.footer {
    background-color: var(--color-primary);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.footer h3, .footer h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
}

/* Event Cards */
.event-card {
    border-radius: 0 !important;
    border: 1px solid rgba(0,0,0,0.05);
}

.event-card .event-date-badge {
    border-radius: 0 !important;
    background: var(--color-primary) !important;
    border-bottom: 2px solid var(--color-accent);
}

.event-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem !important;
    font-weight: 500;
}

.event-card p {
    font-family: var(--font-body);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.logo h1 {
    /* Animation removed per user request */
}
