/* ===== VARIABLES ===== */
:root {
    --primary: #c49b63;
    --primary-dark: #a67c3b;
    --secondary: #2c3e50;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #f5f5f5;
    --gray-dark: #333333;
    --text: #444444;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
}

/* ===== SIMPLE HEADER ===== */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="15" fill="none" stroke="white" stroke-width="2"/></svg>') repeat;
    background-size: 60px 60px;
    pointer-events: none;
}

.header-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-content {
    color: var(--light);
}

.header-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease;
}

.header-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.2s both;
}

.header-legacy {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: var(--light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.4s both;
}

.header-description {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    padding-top: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    animation: fadeInUp 1s ease 0.6s both;
}

/* ===== HERO SECTION WITH BACKGROUND ===== */
.hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 300;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary);
    text-transform: uppercase;
    font-size: 14px;
}

.hero-btn:hover {
    background: transparent;
    color: var(--light);
    border-color: var(--light);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--light);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* ===== TRIBUTE SECTION ===== */
.tribute-section {
    padding: 80px 5%;
    background: var(--light);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.section-description {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

/* ===== SLIDER/CAROUSEL DESIGN ===== */
.slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow-y: auto;
}

.slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 500px !important;
}

.slide {
    flex: 0 0 100%;
    min-height: 450px;
    position: relative;
}

.slide-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--light);
}

.slide-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.slide-quote {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 20px;
}

.slide-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    /* allow the text to expand so users don't need to scroll */
    max-height: none;
    overflow: visible;
    padding-right: 20px;
    color: var(--light);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.slide-author {
    text-align: right;
    margin-top: auto;
}

.author-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--light);
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 40px;
    height: 3px;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator.active {
    background: var(--primary);
    width: 60px;
}

/* Slider Counter */
.slider-counter {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 500;
}

.slider-counter .current {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    padding: 80px 5%;
    color: var(--light);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .header-title {
        font-size: 56px;
    }
    
    .header-legacy {
        font-size: 28px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
        .slide-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px; 
    max-height: 327px;
    overflow-y: auto;
    padding-right: 20px;
    color: var(--light);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}
}

@media (max-width: 768px) {
    .header {
        padding: 40px 20px;
    }
    
    .header-title {
        font-size: 42px;
    }
    
    .header-subtitle {
        font-size: 20px;
    }
    
    .header-legacy {
        font-size: 24px;
    }
    
    .header-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .slider-container {
        padding: 0 40px;
    }
    
    .slide-content {
        padding: 40px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slide-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px; 
    max-height: 596px;
    overflow-y: auto;
    padding-right: 20px;
    color: var(--light);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}
}

@media (max-width: 480px) {
    .header-title {
        font-size: 32px;
    }
    
    .header-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .header-legacy {
        font-size: 20px;
    }
    
    .header-description {
        font-size: 14px;
    }
    
    .slide-content {
        padding: 30px;
    }
    
    .slider-container {
        padding: 0 20px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slide-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px; 
    max-height: 596px;
    overflow-y: auto;
    padding-right: 20px;
    color: var(--light);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}
}