:root {
    --bg-dark: #0d0d0d;
    --bg-panel: #141414;
    --bg-card: #1a0505;
    /* Dark Red Black */
    --text-primary: #f0f0f0;
    --text-secondary: #c0a0a0;
    --accent-gold: #c5a059;
    --accent-gold-light: #e6c885;
    --accent-red: #800000;
    --accent-purple: #4a0e2e;
    --velvet-gradient: radial-gradient(circle at center, #600000 0%, #200000 60%, #000000 100%);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, var(--accent-gold-light), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: -1.5rem auto 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.nav-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    background: url('assets/hero.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(13, 13, 13, 0.3) 0%, rgba(13, 13, 13, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
    /* Opacity will be controlled by JS */
}

.hero-logo {
    height: 120px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--accent-gold));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-sub {
    color: var(--accent-gold-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

/* Main Content Wrapper */
.main-content {
    background: var(--bg-dark);
    /* Solid background to cover hero */
    background-image: var(--velvet-gradient);
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    /* Pushes content below viewport */
    border-top: 2px solid var(--accent-red);
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.8);
}

/* About Section */
.about-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--accent-gold-light);
}

/* Calendar Section */
.schedule-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.schedule-time ul {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 2rem;
    border-left: 2px solid var(--accent-gold);
}

.schedule-time li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-time li:last-child {
    border-bottom: none;
}

.schedule-time .time {
    color: var(--accent-gold);
    font-weight: 600;
}

.event-card {
    background: linear-gradient(145deg, var(--bg-card), #2a0a0a);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    border: 1px solid var(--accent-purple);
    box-shadow: 0 0 30px var(--accent-purple-glow);
    /* Purple glow */
}

.event-date {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.event-date span {
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
}

.event-date .year {
    font-size: 0.8rem;
}

.event-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.event-time {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.event-amenities {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.event-amenities li::before {
    content: "•";
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.event-note {
    font-style: italic;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.calendar-note {
    text-align: center;
    background: rgba(74, 14, 46, 0.4);
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid var(--accent-purple);
}

/* Pets Section */
.pets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pet-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.pet-card:hover {
    transform: translateY(-10px);
}

.pet-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
    transition: var(--transition);
}

.pet-card:hover .pet-image {
    filter: grayscale(0%);
}

.pet-info {
    padding: 1.5rem;
    text-align: center;
    border-top: 2px solid var(--accent-gold);
}

.pet-info h3 {
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.pet-info p {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.location-details {
    padding: 3rem;
}

.location-details h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.accessibility-info {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
}

.accessibility-info h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accessibility-info ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.accessibility-info strong {
    color: var(--accent-gold-light);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #101010;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    margin-top: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .schedule-layout,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}