﻿/* SLIDES LAYOUT STANDARD */
html.slide-page, html.slide-page body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-dark, #061426);
}

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.slide {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 4rem; /* Top padding to account for fixed navbar */
    position: relative;
}

.slide:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.slide-content {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 127, 29, 0.1);
    color: var(--orange, #F57F1D);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--gold, #D9A866);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'DM Serif Display', serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate, #98A0A6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grids for Slides */
.slide-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-6 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Card Animations & Styles */
.slide-card {
    background: #091C33;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(30px);
}
.slide-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.slide-card:hover {
    transform: translateY(-8px) !important;
    border-color: var(--gold, #D9A866);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 15px rgba(217,168,102,0.15);
}

.slide-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border: 1px solid rgba(217, 168, 102, 0.3);
}

.slide-card h3 {
    color: var(--gold, #D9A866);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}
.slide-card p {
    color: var(--slate, #98A0A6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Quote/Highlight */
.slide-highlight {
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(217, 168, 102, 0.1) 100%);
    border-left: 4px solid var(--gold, #D9A866);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: left;
}
.slide-highlight-text {
    font-size: 1.5rem;
    color: var(--white, #FFFFFF);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.slide-highlight-author {
    color: var(--orange, #F57F1D);
    font-weight: 600;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
