/* ===== STORY PAGE - PREMIUM DESIGN ===== */

/* Hero Section */
.story-page-hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/Team_Group_1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.story-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 11, 10, 0.70), rgba(13, 11, 10, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.story-hero-overlay h1 {
    font-size: 4.5rem;
    color: #C89F4D;
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 1.3;
    padding: 0 50px;
    max-width: 1100px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    position: relative;
    z-index: 3;
}

/* First Paragraph Section */
.story-first-paragraph {
    padding: 120px 50px;
    background: #F5F1E9;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-first-photo {
    height: 550px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-first-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-first-text p {
    font-size: 1.5rem;
    color: #1A1613;
    line-height: 1.8;
    font-family: 'Georgia', serif;
}

/* The People Behind the Whiskey Section */
.story-people-section {
    padding: 120px 50px;
    background: #1A1613;
    text-align: center;
}

.story-people-section h2 {
    font-size: 3.5rem;
    color: #C89F4D;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
}

.people-subtitle {
    font-size: 1.3rem;
    color: #F5F1E9;
    margin-bottom: 10px;
    opacity: 0.85;
}

.people-tagline {
    font-size: 1.1rem;
    color: #C89F4D;
    font-style: italic;
    margin-bottom: 70px;
    opacity: 0.9;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.founder-card {
    background: transparent;
    text-align: center;
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
}

.founder-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    margin-bottom: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.founder-card h3 {
    font-size: 1.5rem;
    color: #C89F4D;
    margin-bottom: 8px;
    font-weight: 400;
    font-family: 'Georgia', serif;
}

.founder-card p {
    font-size: 1rem;
    color: #F5F1E9;
    font-style: italic;
    opacity: 0.75;
}

/* Body Text Sections */
/* ===== PREMIUM STORY SECTIONS - PROFESSIONAL GRADE ===== */

/* Section Base */
.story-premium-section {
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

/* Dark Section Background */
.dark-section {
    background: linear-gradient(135deg, #1A1613 0%, #0d0b0a 100%);
}

/* Gold Section Background */
.gold-section {
    background: linear-gradient(135deg, #6B4E23 0%, #8B6F3F 100%);
}

/* Content Container - Side by Side Layout */
.story-premium-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Reverse Layout for Visual Variation */
.story-premium-container.reverse {
    grid-template-columns: 1fr 1.3fr;
}

/* Content Side */
.story-premium-content {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
    animation-delay: 0.3s;
}

.story-premium-container.reverse .story-premium-content {
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.3s;
}

/* Title */
.story-premium-title {
    font-size: 4rem;
    color: #C89F4D;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    line-height: 1.2;
}

/* Lead Text */
.story-premium-lead {
    font-size: 1.6rem;
    color: #F5F1E9;
    font-style: italic;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

/* Body Text */
.story-premium-text {
    font-size: 1.15rem;
    color: #F5F1E9;
    line-height: 2;
    margin-bottom: 30px;
    opacity: 0.92;
    font-family: 'Georgia', serif;
}

/* Image Side */
.story-premium-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    border: 3px solid #C89F4D;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.6s;
}

.story-premium-container.reverse .story-premium-image {
    animation: fadeInLeft 1s ease forwards;
    animation-delay: 0.6s;
}

.story-premium-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-premium-image:hover .story-premium-img {
    transform: scale(1.05);
}

/* Image Caption Overlay */
.image-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 11, 10, 0.98) 0%, transparent 100%);
    padding: 30px;
    font-size: 1.8rem;
    color: #C89F4D;
    font-style: italic;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.story-premium-image:hover .image-caption-overlay {
    transform: translateY(0);
}

/* Decorative Gold Line Between Sections */
.story-premium-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent, #C89F4D 30%, #C89F4D 70%, transparent);
    opacity: 0.4;
}

/* Remove line from last section */
.story-premium-section:last-of-type::after {
    display: none;
}

/* Background Pattern Overlay */
.story-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(200, 159, 77, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

/* ANIMATIONS */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .story-premium-container,
    .story-premium-container.reverse {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .story-premium-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .story-premium-section {
        padding: 80px 20px;
    }
    
    .story-premium-container {
        gap: 40px;
    }
    
    .story-premium-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .story-premium-lead {
        font-size: 1.3rem;
    }
    
    .story-premium-text {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .story-premium-image {
        height: 400px;
    }
}

/* Print Styles */
@media print {
    .story-premium-section {
        page-break-inside: avoid;
    }
}

/* Rivers Run Deep Section */
.story-rivers-section {
    padding: 120px 50px;
    background: linear-gradient(135deg, #6B4E23 0%, #8B6F3F 100%);
    text-align: center;
}

.story-rivers-section h2 {
    font-size: 3.5rem;
    color: #F5F1E9;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
}

.story-rivers-section p {
    font-size: 1.25rem;
    color: #F5F1E9;
    line-height: 1.9;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.rivers-link {
    color: #F5F1E9;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.rivers-link:hover {
    opacity: 0.7;
}

/* End Section */
.story-end-section {
    padding: 120px 50px;
    background: #F5F1E9;
    text-align: center;
}

.story-end-subheading {
    font-size: 1.8rem;
    color: #1A1613;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.story-end-btn {
    display: inline-block;
    background: #C89F4D;
    color: #0d0b0a;
    padding: 18px 50px;
    border: 2px solid #C89F4D;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    font-weight: 600;
}

.story-end-btn:hover {
    background: transparent;
    color: #C89F4D;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-first-paragraph {
        grid-template-columns: 1fr;
        padding: 80px 30px;
    }
    
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .story-hero-overlay h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .story-first-paragraph {
        padding: 60px 20px;
        gap: 40px;
    }
    
    .story-first-photo {
        height: 400px;
    }
    
    .story-first-text p {
        font-size: 1.2rem;
    }
    
    .story-people-section {
        padding: 80px 20px;
    }
    
    .story-people-section h2 {
        font-size: 2.5rem;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-card img {
        height: 450px;
    }
    
    .story-body-block {
        padding: 60px 20px;
    }
    
    .story-body-block h2 {
        font-size: 2rem;
    }
    
    .story-body-text p {
        font-size: 1.1rem;
    }
    
    .story-rivers-section {
        padding: 80px 20px;
    }
    
    .story-rivers-section h2 {
        font-size: 2.5rem;
    }
    
    .story-end-section {
        padding: 80px 20px;
    }
    
    .story-end-subheading {
        font-size: 1.4rem;
    }
}

/* Fix nav logo sizing to match other pages */
.nav-logo-img {
    height: 50px !important;
    width: auto !important;
}

/* Add this at the end of your story page CSS */

@media (max-width: 768px) {
    .story-page-hero {
        background-attachment: scroll; /* Remove fixed positioning on mobile */
        min-height: 70vh; /* Slightly smaller on mobile */
    }
}