/**
 * About Us Page Styles
 * Enhanced modern design for Bethel Guest House
 */

/* ============================================
   VAN Image Hero Section
   ============================================ */
.about-van-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #0a0a0a;
}

.about-van-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    animation: vanImageReveal 1.2s ease-out 0.3s forwards;
}

@keyframes vanImageReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.about-van-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, transparent 100%);
    pointer-events: none;
}

.about-van-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-van-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-van-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.about-van-badge svg {
    width: 20px;
    height: 20px;
    fill: #d4af37;
}

.about-van-badge span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-van-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

.about-van-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    color: #ffffff;
}

/* ============================================
   Function Rooms Section Spacing
   ============================================ */
#gdlr-core-column-2 {
    margin-top: 50px;
}

/* ============================================
   Section Animations
   ============================================ */
.about-section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Enhanced Content Sections
   ============================================ */
.gdlr-core-title-item-title {
    position: relative;
}

.gdlr-core-title-item-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a1a1a, #d4af37);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.6s ease-out 0.3s;
}

.about-section-animate.visible .gdlr-core-title-item-title::after {
    opacity: 1;
    transform: scaleX(1);
}

/* ============================================
   Gallery Enhancement
   ============================================ */
.gdlr-core-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gdlr-core-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Simple Image Slider
   ============================================ */
.about-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.about-slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.about-slider-slide {
    min-width: 100%;
    position: relative;
}

.about-slider-slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.about-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.about-slider-nav:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.about-slider-nav svg {
    width: 20px;
    height: 20px;
    fill: #333;
}

.about-slider-prev {
    left: 15px;
}

.about-slider-next {
    right: 15px;
}

.about-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.about-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-slider-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.about-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Button Enhancement
   ============================================ */
.gdlr-core-button {
    transition: all 0.3s ease !important;
}

.gdlr-core-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(22, 114, 252, 0.4) !important;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    .about-van-hero {
        height: 350px;
    }

    .about-van-title {
        font-size: 32px;
    }

    .about-van-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
}

/* ============================================
   Scroll Animations
   ============================================ */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.scroll-animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   Enhanced About Bethel Section
   ============================================ */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

/* Inset slider — centered with padding, similar size to cafe slider */
.about-section .about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f3f4f6;
    overflow: hidden;
}

.about-slider-inset {
    width: 100%;
    max-width: 100%;
}

.about-section .about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
}

.about-section .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-section .about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-section .about-badge svg {
    width: 18px;
    height: 18px;
    fill: #d4af37;
}

.about-section .about-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.about-section .about-description {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    margin: 0 0 32px 0;
}

.about-section .about-features {
    display: flex;
    gap: 30px;
    margin-bottom: 32px;
}

.about-section .about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section .about-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-radius: 10px;
}

.about-section .about-feature-icon svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.about-section .about-feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .about-section .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-section .about-image {
        height: 400px;
    }

    .about-section .about-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .about-section .about-title {
        font-size: 32px;
    }

    .about-section .about-features {
        flex-direction: column;
        gap: 16px;
    }

    .about-section .about-content {
        padding: 40px 24px;
    }
}

/* ── Cafe Filomena Section ── */
.cafe-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.cafe-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cafe-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cafe-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 12px 0 20px 0;
    line-height: 1.15;
}

.cafe-description {
    font-size: 16px;
    line-height: 1.8;
    color: #515151;
    margin: 0;
}

.cafe-image {
    position: relative;
}

.cafe-image .about-slider {
    width: 100%;
}

@media (max-width: 1024px) {
    .cafe-wrapper {
        gap: 40px;
        padding: 0 24px;
    }
    .cafe-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .cafe-section {
        padding: 60px 0;
    }
    .cafe-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cafe-title {
        font-size: 28px;
    }
}
