/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: var(--spacing-sm) 0;
    transition: all var(--transition-medium);
    z-index: var(--z-navbar);
}

@media (max-width: 767px) {
    .navbar {
        padding: 10px 0;
        background-color: rgba(61, 74, 44, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.navbar.scrolled {
    background-color: rgba(61, 74, 44, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(61, 74, 44, 0.15);
    padding: 8px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: var(--color-white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 300;
    opacity: 0.75;
    line-height: 1.3;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-verse {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.4;
    margin-top: 4px;
    max-width: 420px;
}

.nav-verse span {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 11px;
    opacity: 0.6;
    letter-spacing: 0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--color-white);
    font-weight: 400;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast), opacity var(--transition-fast);
    position: relative;
    letter-spacing: 0.02em;
}

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

.nav-links a.active {
    color: var(--color-secondary);
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--color-accent-rose), var(--color-secondary));
    transition: width var(--transition-medium);
    border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links .btn-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    padding: 10px var(--spacing-md);
    border-radius: var(--radius-pill);
    transition: all var(--transition-medium);
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-links .btn-cta::after {
    display: none;
}

.nav-links .btn-cta:hover {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(94, 113, 66, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-medium);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 60px;
    background: linear-gradient(160deg, rgba(61, 74, 44, 0.82), rgba(78, 96, 53, 0.75), rgba(94, 113, 66, 0.72)), url('../images/hero/flowers-bg.jpg') center / cover no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

/* Animated grain texture overlay */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.03;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
}

/* Decorative botanical SVG overlay — leaves and branches */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.06;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 8 C28 18 16 35 40 68 C64 35 52 18 40 8Z' fill='white' opacity='0.4'/%3E%3Cpath d='M20 30 C15 25 10 35 20 45 C25 35 22 30 20 30Z' fill='white' opacity='0.2'/%3E%3Cpath d='M60 50 C55 45 50 55 60 65 C65 55 62 50 60 50Z' fill='white' opacity='0.2'/%3E%3C/svg%3E");
    background-size: 160px 160px;
    pointer-events: none;
    z-index: 1;
}

/* Floating decorative circles */
.hero-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-decor--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(196, 164, 160, 0.12) 0%, transparent 70%);
    animation: floatSlow 20s ease-in-out infinite;
}

.hero-decor--2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -80px;
    background: radial-gradient(circle, rgba(212, 197, 160, 0.1) 0%, transparent 70%);
    animation: floatSlow 25s ease-in-out infinite reverse;
}

.hero-decor--3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    animation: floatSlow 18s ease-in-out infinite 3s;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(15px, -20px) scale(1.03); }
    50% { transform: translate(-10px, 15px) scale(0.97); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Decorative vines hanging from hero card edges */
.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    width: 130px;
    height: 300px;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    background-size: contain;
    background-repeat: no-repeat;
    animation: vinesSway 8s ease-in-out infinite;
    transform-origin: top center;
}

.hero-content::before {
    top: -24px;
    left: -18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='300' viewBox='0 0 130 300' fill='none'%3E%3Cpath d='M62 0 C58 30 46 55 36 85 C26 115 30 150 38 190 C44 220 40 255 44 285 C45 292 44 297 45 300' stroke='rgba(196,164,160,0.7)' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3Cpath d='M50 40 C38 52 28 70 18 90' stroke='rgba(196,164,160,0.55)' stroke-width='1.6' stroke-linecap='round' fill='none'/%3E%3Cpath d='M38 110 C48 125 60 135 72 148' stroke='rgba(196,164,160,0.5)' stroke-width='1.4' stroke-linecap='round' fill='none'/%3E%3Cpath d='M36 195 C26 208 18 222 14 240' stroke='rgba(196,164,160,0.45)' stroke-width='1.3' stroke-linecap='round' fill='none'/%3E%3Cpath d='M58 15 C68 18 74 15 72 9' stroke='rgba(196,164,160,0.5)' stroke-width='1.1' stroke-linecap='round' fill='none'/%3E%3Cpath d='M28 88 C18 84 12 87 15 94' stroke='rgba(196,164,160,0.45)' stroke-width='1' stroke-linecap='round' fill='none'/%3E%3Cpath d='M42 170 C34 166 28 169 32 176' stroke='rgba(196,164,160,0.4)' stroke-width='1' stroke-linecap='round' fill='none'/%3E%3Cpath d='M70 148 C78 144 82 148 78 154' stroke='rgba(196,164,160,0.4)' stroke-width='1' stroke-linecap='round' fill='none'/%3E%3Cpath d='M46 38 C30 28 16 38 26 54 C36 48 46 42 46 38Z' fill='rgba(94,113,66,0.5)' stroke='rgba(94,113,66,0.35)' stroke-width='0.8'/%3E%3Cpath d='M22 82 C8 72 -2 82 10 98 C20 92 24 86 22 82Z' fill='rgba(107,132,72,0.45)' stroke='rgba(107,132,72,0.3)' stroke-width='0.8'/%3E%3Cpath d='M40 105 C56 94 68 105 56 120 C46 114 40 108 40 105Z' fill='rgba(196,164,160,0.5)' stroke='rgba(196,164,160,0.35)' stroke-width='0.8'/%3E%3Cpath d='M34 150 C18 140 6 150 18 166 C28 160 36 154 34 150Z' fill='rgba(148,167,107,0.5)' stroke='rgba(148,167,107,0.35)' stroke-width='0.8'/%3E%3Cpath d='M72 140 C84 132 92 140 84 152 C76 148 72 144 72 140Z' fill='rgba(212,197,160,0.5)' stroke='rgba(212,197,160,0.35)' stroke-width='0.8'/%3E%3Cpath d='M36 200 C22 190 10 200 22 216 C32 210 38 204 36 200Z' fill='rgba(196,164,160,0.45)' stroke='rgba(196,164,160,0.3)' stroke-width='0.8'/%3E%3Cpath d='M46 240 C56 232 66 240 58 254 C50 248 46 244 46 240Z' fill='rgba(94,113,66,0.4)' stroke='rgba(94,113,66,0.3)' stroke-width='0.7'/%3E%3Cpath d='M40 270 C30 264 22 270 30 280 C36 276 42 274 40 270Z' fill='rgba(255,255,255,0.25)' stroke='rgba(255,255,255,0.15)' stroke-width='0.6'/%3E%3Ccircle cx='18' cy='92' r='4' fill='rgba(196,164,160,0.7)'/%3E%3Ccircle cx='72' cy='148' r='3.5' fill='rgba(196,164,160,0.6)'/%3E%3Ccircle cx='14' cy='240' r='3' fill='rgba(212,197,160,0.55)'/%3E%3Ccircle cx='56' cy='188' r='3.5' fill='rgba(196,164,160,0.5)'/%3E%3Ccircle cx='24' cy='170' r='2.5' fill='rgba(148,167,107,0.6)'/%3E%3Ccircle cx='50' cy='260' r='2.8' fill='rgba(196,164,160,0.45)'/%3E%3Ccircle cx='16' cy='92' r='1.8' fill='rgba(255,255,255,0.3)'/%3E%3Ccircle cx='70' cy='146' r='1.5' fill='rgba(255,255,255,0.25)'/%3E%3C/svg%3E");
}

.hero-content::after {
    top: -24px;
    right: -18px;
    transform: scaleX(-1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='300' viewBox='0 0 130 300' fill='none'%3E%3Cpath d='M62 0 C58 30 46 55 36 85 C26 115 30 150 38 190 C44 220 40 255 44 285 C45 292 44 297 45 300' stroke='rgba(196,164,160,0.7)' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3Cpath d='M50 40 C38 52 28 70 18 90' stroke='rgba(196,164,160,0.55)' stroke-width='1.6' stroke-linecap='round' fill='none'/%3E%3Cpath d='M38 110 C48 125 60 135 72 148' stroke='rgba(196,164,160,0.5)' stroke-width='1.4' stroke-linecap='round' fill='none'/%3E%3Cpath d='M36 195 C26 208 18 222 14 240' stroke='rgba(196,164,160,0.45)' stroke-width='1.3' stroke-linecap='round' fill='none'/%3E%3Cpath d='M58 15 C68 18 74 15 72 9' stroke='rgba(196,164,160,0.5)' stroke-width='1.1' stroke-linecap='round' fill='none'/%3E%3Cpath d='M28 88 C18 84 12 87 15 94' stroke='rgba(196,164,160,0.45)' stroke-width='1' stroke-linecap='round' fill='none'/%3E%3Cpath d='M42 170 C34 166 28 169 32 176' stroke='rgba(196,164,160,0.4)' stroke-width='1' stroke-linecap='round' fill='none'/%3E%3Cpath d='M70 148 C78 144 82 148 78 154' stroke='rgba(196,164,160,0.4)' stroke-width='1' stroke-linecap='round' fill='none'/%3E%3Cpath d='M46 38 C30 28 16 38 26 54 C36 48 46 42 46 38Z' fill='rgba(94,113,66,0.5)' stroke='rgba(94,113,66,0.35)' stroke-width='0.8'/%3E%3Cpath d='M22 82 C8 72 -2 82 10 98 C20 92 24 86 22 82Z' fill='rgba(107,132,72,0.45)' stroke='rgba(107,132,72,0.3)' stroke-width='0.8'/%3E%3Cpath d='M40 105 C56 94 68 105 56 120 C46 114 40 108 40 105Z' fill='rgba(196,164,160,0.5)' stroke='rgba(196,164,160,0.35)' stroke-width='0.8'/%3E%3Cpath d='M34 150 C18 140 6 150 18 166 C28 160 36 154 34 150Z' fill='rgba(148,167,107,0.5)' stroke='rgba(148,167,107,0.35)' stroke-width='0.8'/%3E%3Cpath d='M72 140 C84 132 92 140 84 152 C76 148 72 144 72 140Z' fill='rgba(212,197,160,0.5)' stroke='rgba(212,197,160,0.35)' stroke-width='0.8'/%3E%3Cpath d='M36 200 C22 190 10 200 22 216 C32 210 38 204 36 200Z' fill='rgba(196,164,160,0.45)' stroke='rgba(196,164,160,0.3)' stroke-width='0.8'/%3E%3Cpath d='M46 240 C56 232 66 240 58 254 C50 248 46 244 46 240Z' fill='rgba(94,113,66,0.4)' stroke='rgba(94,113,66,0.3)' stroke-width='0.7'/%3E%3Cpath d='M40 270 C30 264 22 270 30 280 C36 276 42 274 40 270Z' fill='rgba(255,255,255,0.25)' stroke='rgba(255,255,255,0.15)' stroke-width='0.6'/%3E%3Ccircle cx='18' cy='92' r='4' fill='rgba(196,164,160,0.7)'/%3E%3Ccircle cx='72' cy='148' r='3.5' fill='rgba(196,164,160,0.6)'/%3E%3Ccircle cx='14' cy='240' r='3' fill='rgba(212,197,160,0.55)'/%3E%3Ccircle cx='56' cy='188' r='3.5' fill='rgba(196,164,160,0.5)'/%3E%3Ccircle cx='24' cy='170' r='2.5' fill='rgba(148,167,107,0.6)'/%3E%3Ccircle cx='50' cy='260' r='2.8' fill='rgba(196,164,160,0.45)'/%3E%3Ccircle cx='16' cy='92' r='1.8' fill='rgba(255,255,255,0.3)'/%3E%3Ccircle cx='70' cy='146' r='1.5' fill='rgba(255,255,255,0.25)'/%3E%3C/svg%3E");
    animation-delay: 2s;
}

@keyframes vinesSway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

/* Override sway for mirrored ::after to combine with scaleX(-1) */
@keyframes vinesSwayMirrored {
    0%, 100% { transform: scaleX(-1) rotate(0deg); }
    50% { transform: scaleX(-1) rotate(2deg); }
}

.hero-content::after {
    animation-name: vinesSwayMirrored;
}

.hero-label {
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: var(--spacing-xs);
    color: #FFFFFF;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--font-size-5xl), 16vw, 150px);
    font-weight: normal;
    font-style: normal;
    margin-bottom: var(--spacing-sm);
    color: #FFFFFF;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(212, 197, 160, 0.6),
        0 0 100px rgba(196, 164, 160, 0.5),
        0 0 150px rgba(196, 164, 160, 0.3),
        0 2px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.03em;
    line-height: 1.05;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.95);
    paint-order: stroke fill;
}

.hero-date-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(196, 164, 160, 0.25), rgba(212, 197, 160, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    padding: 8px var(--spacing-md);
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-time,
.hero-location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-time svg,
.hero-location svg {
    opacity: 0.7;
    width: 18px;
    height: 18px;
}

/* Curved divider from hero to about */
.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
    line-height: 0;
}

.hero-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    background-color: var(--color-bg-cream);
    padding-top: var(--spacing-3xl);
    position: relative;
}

.about-text {
    font-size: var(--font-size-lg);
    color: var(--color-dark);
    line-height: 1.8;
    text-align: left;
    max-width: 640px;
    margin: 0 auto var(--spacing-md);
    font-weight: 300;
    letter-spacing: 0.01em;
}

.about-text p {
    margin-bottom: var(--spacing-md);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text--after {
    margin-top: 0;
}

/* Bible verse blockquote */
.about-verse {
    position: relative;
    max-width: 680px;
    margin: 0 auto var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(196, 164, 160, 0.1), rgba(212, 197, 160, 0.08));
    border-radius: var(--radius-xl);
    border-left: 3px solid var(--color-accent-rose);
    text-align: center;
}

.about-verse::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--color-accent-rose);
    opacity: 0.25;
    line-height: 1;
}

.about-verse p {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-style: italic;
    font-weight: 500;
    color: var(--color-primary-dark);
    line-height: 1.7;
    margin-bottom: var(--spacing-xs);
}

.about-verse cite {
    display: block;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-style: normal;
    font-weight: 300;
    color: var(--color-gray);
    letter-spacing: 0.03em;
}

/* Highlights list */
.highlights-list {
    max-width: 640px;
    margin: 0 auto;
}

.highlights-subtitle {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 600;
    font-style: italic;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
}

.highlights-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-md);
    color: var(--color-dark);
    line-height: 1.7;
    font-weight: 300;
}

.highlights-list li:last-child {
    margin-bottom: 0;
}

.highlights-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-rose), var(--color-accent));
}

/* Gallery carousel */
.gallery-section {
    background-color: var(--color-bg-cream);
    padding-bottom: var(--spacing-md);
}

.gallery-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 600;
    font-style: italic;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
}

.gallery-carousel {
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 var(--container-padding);
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex-shrink: 0;
    width: 340px;
    height: 230px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-medium);
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

/* Section divider — organic wave between about and speakers */
.section-divider {
    position: relative;
    height: 50px;
    margin-top: -1px;
    overflow: hidden;
    line-height: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* =============================================
   SCHEDULE SECTION
   ============================================= */
.schedule {
    background-color: var(--color-bg-cream);
    position: relative;
}

.schedule-card {
    max-width: 460px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(94, 113, 66, 0.06);
}

.schedule-row {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    padding: 9px 0;
    border-bottom: 1px solid rgba(94, 113, 66, 0.06);
}

.schedule-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-row:first-child {
    padding-top: 0;
}

.schedule-row .schedule-time {
    flex-shrink: 0;
    width: 40px;
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.01em;
}

.schedule-row .schedule-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 500;
    font-style: italic;
    color: var(--color-dark);
    line-height: 1.5;
}

.schedule-row .schedule-text em {
    display: block;
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    font-style: normal;
    font-weight: 300;
    color: var(--color-primary);
    margin-top: 1px;
}

.schedule-row--break .schedule-text {
    font-weight: 400;
    color: var(--color-gray-light);
    font-size: var(--font-size-xs);
    font-style: italic;
}

.schedule-row--break .schedule-time {
    color: var(--color-gray-light);
}

/* =============================================
   SPEAKERS SECTION
   ============================================= */
.speakers {
    background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, #6B8448 100%);
    position: relative;
}

.speakers .section-title {
    color: var(--color-white);
}

.speakers .section-title::after {
    background: linear-gradient(90deg, var(--color-accent-rose), var(--color-secondary));
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 720px;
    margin: 0 auto;
}

.speakers-single {
    display: flex;
    justify-content: center;
    max-width: 480px;
    margin: 0 auto;
}

/* =============================================
   REGISTRATION SECTION
   ============================================= */
.registration {
    background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 40%, #6B8448 65%, var(--color-accent) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Decorative pattern in registration section */
.registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='white'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    pointer-events: none;
}

.registration .section-title {
    color: var(--color-white);
}

.registration .section-title::after {
    background: linear-gradient(90deg, var(--color-accent-rose), var(--color-secondary));
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    position: relative;
    z-index: 2;
}

.registration-info h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.registration-info p {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
    font-weight: 300;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-item {
    display: flex;
    align-items: start;
    gap: var(--spacing-sm);
    background-color: rgba(255, 255, 255, 0.08);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.info-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.info-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: var(--font-size-md);
}

.info-item p {
    margin-bottom: 0;
    opacity: 0.85;
    font-size: var(--font-size-sm);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: var(--spacing-3xl) 0 var(--spacing-md);
    position: relative;
}

/* Decorative top border for footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-rose), var(--color-secondary), var(--color-accent));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-section p {
    opacity: 0.75;
    font-size: var(--font-size-sm);
    line-height: 1.8;
    font-weight: 300;
}

.footer-section a {
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.contact-person {
    margin-bottom: var(--spacing-sm);
}

.contact-name {
    font-size: var(--font-size-md);
    font-weight: 500;
    margin-bottom: 4px;
    opacity: 0.95;
}

.contact-phone {
    font-size: var(--font-size-sm);
    opacity: 0.8;
    transition: all var(--transition-fast);
    font-weight: 300;
    letter-spacing: 0.03em;
}

.contact-phone:hover {
    color: var(--color-secondary);
    opacity: 1;
}

.telegram-channel {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 14px var(--spacing-lg);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition-medium);
    font-size: var(--font-size-md);
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.telegram-channel:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.5;
    font-size: var(--font-size-xs);
    font-weight: 300;
    letter-spacing: 0.03em;
}

/* =============================================
   ABOUT DIVIDER IMAGE
   ============================================= */
.about-divider-img {
    display: block;
    max-width: 420px;
    margin: var(--spacing-lg) auto;
    opacity: 0.85;
}

/* =============================================
   VIDEO CONTAINER (replaces gallery carousel)
   ============================================= */
.video-container {
    max-width: 720px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
}

/* =============================================
   HERO FLOWER DECOR
   ============================================= */
.hero-flower-decor {
    position: absolute;
    right: -10%;
    bottom: -10%;
    max-width: 900px;
    opacity: 0.75;
    z-index: 3;
    pointer-events: none;
    filter: brightness(1.4) drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
}

/* =============================================
   REGISTRATION DEADLINE & CLOSED
   ============================================= */
.registration-deadline {
    text-align: center;
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-style: italic;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.registration-closed {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xl);
}

.registration-closed-content {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    backdrop-filter: blur(12px);
}

.registration-closed-content svg {
    margin-bottom: var(--spacing-md);
}

.registration-closed-content h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-style: italic;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.registration-closed-content p {
    font-size: var(--font-size-md);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}
