:root {
    --bg-color: #F9F4E8;
    --primary-text: #5a2e15;
    --accent-orange: #c96f42;
    --border-color: #8b6038;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lora', serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--primary-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeCycle 24s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }
.slide:nth-child(4) { animation-delay: 18s; }

@keyframes fadeCycle {
    0% { opacity: 0; transform: scale(1.05); }
    10% { opacity: 1; transform: scale(1); }
    25% { opacity: 1; transform: scale(1); }
    35% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    box-sizing: border-box;
    background: rgba(249, 244, 232, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 40px rgba(90, 46, 21, 0.3);
    min-height: 100vh;
    border-left: 2px solid rgba(139, 96, 56, 0.3);
    border-right: 2px solid rgba(139, 96, 56, 0.3);
}

/* Ornate borders mimicking the poster */
.page-container::before, .page-container::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    height: 10px;
    border-top: 2px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    opacity: 0.5;
}
.page-container::before { top: 10px; }
.page-container::after { bottom: 10px; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    margin-top: 0;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.aarabhi-logo {
    height: 60px;
    object-fit: contain;
}

.guru-logo {
    height: 80px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.ampersand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.guru-logo-text {
    text-align: left;
    line-height: 1;
}

.guru-script {
    font-family: 'Brush Script MT', cursive, var(--font-body); /* Fallback */
    font-size: 1.8rem;
    color: var(--accent-orange);
}

.parampara-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.foundation-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--accent-orange);
}

.invitation-text {
    margin-bottom: 40px;
}

.blessings {
    font-size: 0.9rem;
    font-style: italic;
    color: #724021;
    margin-bottom: 20px;
}

.cordially {
    font-family: 'Brush Script MT', cursive, var(--font-body);
    font-size: 2rem;
    color: var(--accent-orange);
    margin: 0;
}

.anniversary {
    font-size: 2.2rem;
    color: var(--primary-text);
    margin: 10px 0;
}

.date-venue {
    font-size: 1.1rem;
    font-weight: 500;
}

.main-title-container {
    margin: 50px 0;
}

.ornament-divider {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%23c96f42" xmlns="http://www.w3.org/2000/svg"><path d="M12 2L14.4 9.6L22 12L14.4 14.4L12 22L9.6 14.4L2 12L9.6 9.6L12 2Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.ornament-divider-full {
    width: 100%;
    height: 20px;
    margin: 30px 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 10" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5 Q 25 0, 50 5 T 100 5" stroke="%238b6038" fill="none" stroke-width="1" opacity="0.5"/></svg>');
    background-size: cover;
}

.ornament-small {
    width: 30px;
    height: 30px;
    margin: 0 auto 10px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%238b6038" xmlns="http://www.w3.org/2000/svg"><path d="M12 2L14.4 9.6L22 12L14.4 14.4L12 22L9.6 14.4L2 12L9.6 9.6L12 2Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.main-title {
    font-size: 3.5rem;
    color: var(--primary-text);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.subtitle-journey {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--border-color);
    margin-bottom: 15px;
}

.subtitle-symphony {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--accent-orange);
    font-style: italic;
}

.hero-violin {
    max-width: 100%;
    width: 350px;
    height: auto;
    margin: 20px auto;
    display: block;
    mix-blend-mode: multiply; /* Blends nicely with the background */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.schedule-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.session {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.4);
    border-radius: 10px;
    border: 1px solid rgba(139, 96, 56, 0.2);
}

.session-title {
    font-size: 1.8rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Brush Script MT', cursive, var(--font-body);
}

.title-desc {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--accent-orange);
    margin-top: 5px;
}

.compering {
    margin-top: 20px;
    font-size: 0.95rem;
}

.subtitle-symphony-small {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    color: var(--primary-text);
}

.time-onwards {
    font-size: 1.1rem;
    text-decoration: underline;
    text-decoration-color: var(--accent-orange);
    text-underline-offset: 4px;
    margin-bottom: 25px;
}

.chief-guest h4 {
    font-size: 1.8rem;
    color: var(--accent-orange);
    font-style: italic;
    font-family: 'Brush Script MT', cursive, var(--font-body);
    margin-bottom: 10px;
}

.chief-guest p {
    margin: 5px 0;
}

.section-heading {
    font-size: 2rem;
    color: var(--accent-orange);
    font-style: italic;
    font-family: 'Brush Script MT', cursive, var(--font-body);
    margin-bottom: 30px;
    text-align: center;
}

.dignitaries-list {
    list-style: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dignitaries-list li strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-text);
}

.dignitaries-list li span {
    display: block;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--accent-orange);
}

.felicitation-section {
    text-align: center;
    margin: 50px 0;
}

.felicitation-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-text);
    margin: 10px 0;
}

.felicitation-to {
    font-size: 1.2rem;
}

.evening-compering {
    margin-top: 20px;
    font-size: 1.1rem;
}

.cta-footer {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 30px;
}

.cta-button {
    background-color: var(--accent-orange);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 111, 66, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #a85830;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 111, 66, 0.6);
}

.share-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--border-color);
}

.home-link {
    color: var(--primary-text);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.home-link:hover {
    color: var(--accent-orange);
}

@media (max-width: 600px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle-symphony {
        font-size: 1.2rem;
    }
    
    .session {
        padding: 20px 15px;
    }
}
