/* Specific Styles for Index Page Sections */

/* About Intro Section */
.about-intro-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.about-intro-container {
    max-width: 800px;
}
.about-intro-tag {
    justify-content: center;
    margin-bottom: 1rem;
}
.about-intro-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.about-intro-desc {
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.about-intro-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.event-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding-right: 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.event-date .day {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(201, 160, 42, 0.2);
}

.event-date .month {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.event-image-wrapper {
    margin-left: 2.5rem;
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-item:hover .event-img {
    transform: scale(1.08);
}

.event-details {
    flex-grow: 1;
    padding: 0 2.5rem;
}

.event-details h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.event-details p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-family: 'Lora', serif;
    font-style: italic;
}

.event-action {
    min-width: 160px;
    text-align: right;
}

/* Videos Grid (Slider) */
.video-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2.5rem;
    padding-bottom: 1.5rem; /* space for scrollbar */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(255,255,255,0.05);
}

.video-grid::-webkit-scrollbar {
    height: 6px;
}
.video-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}
.video-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.video-wrapper {
    flex: 0 0 calc(33.333% - 1.66rem);
    min-width: 280px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.testimonial-card {
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.testimonial-author {
    margin-top: 2rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Dynamic Clients Marquee — pure CSS, GPU-accelerated */
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding: 1.5rem 0;
}

/* Fade-out edges */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--background-navy) 0%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--background-navy) 0%, transparent 100%);
}

/* The scrolling track — two identical groups side-by-side */
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Each group is a flex row of cards */
.marquee-group {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    flex-shrink: 0;
}

/* Individual brand card */
.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    flex-shrink: 0;
    cursor: default;
}

/* Logo container — no fixed height, no clip, borderless */
.client-logo-wrapper {
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    border-radius: 12px;
}

.client-card:hover .client-logo-wrapper {
    transform: translateY(-4px) scale(1.04);
}

.client-logo {
    width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(20%) opacity(0.8);
    transition: filter 0.35s ease;
    display: block;
    border-radius: 8px;
}

.client-card:hover .client-logo {
    filter: grayscale(0%) opacity(1);
}

/* Brand name under card */
.client-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.client-card:hover .client-name {
    color: rgba(255, 255, 255, 0.7);
}

/* Auto-spotlight: card in center of marquee */
.client-card.is-center .client-logo-wrapper {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 36px rgba(201, 160, 42, 0.3), 0 0 0 1.5px rgba(201, 160, 42, 0.35);
    border-radius: 12px;
}

.client-card.is-center .client-logo {
    filter: grayscale(0%) opacity(1) drop-shadow(0 2px 8px rgba(201, 160, 42, 0.4));
}

.client-card.is-center .client-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Category Pills */
.btn-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-pill.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(201, 160, 42, 0.3);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .marquee-track {
        animation-duration: 30s;
    }
    .event-item {
        flex-direction: column;
        text-align: left;
        padding: 1.5rem;
        border-radius: 16px;
    }
    .event-date {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
        align-items: baseline;
    }
    .event-date .day {
        font-size: 2.5rem;
    }
    .event-date .month {
        margin-top: 0;
    }
    .event-image-wrapper {
        margin: 0 0 1.5rem 0;
        width: 100%;
        height: 220px;
        border-radius: 12px;
    }
    .event-details {
        padding: 0;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    .event-details h3 {
        font-size: 1.4rem;
    }
    .event-action {
        width: 100%;
        text-align: left;
    }
    .event-action .btn {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .client-logo-wrapper {
        width: 140px;
    }
    .marquee-group {
        gap: 1.25rem;
    }
}

/* Promo Event Section */
.promo-event-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.promo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.promo-main {
    display: flex;
    flex-direction: column;
}
.promo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}
.promo-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}
.artist-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.artist-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.artist-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #fff;
}
.promo-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}
.promo-text.text-sm {
    font-size: 0.85rem;
}
.promo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.promo-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}
.promo-list li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}
.mt-2 {
    margin-top: 2rem;
}
.btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    background: #0f172a; /* Dark blue background matching the image book button */
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
    line-height: 1.2;
}
.btn-block:hover {
    background: var(--teal);
    color: #fff;
}
/* ==========================================================================
   Responsive Overrides — Index Page
   ========================================================================== */

/* --- Tablet (992px) --- */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .event-item {
        flex-direction: column;
        text-align: left;
        padding: 1.5rem;
        border-radius: 16px;
    }

    .event-date {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
        align-items: baseline;
    }

    .event-date .day { font-size: 2.5rem; }
    .event-date .month { margin-top: 0; }

    .event-image-wrapper {
        margin: 0 0 1.5rem 0;
        width: 100%;
        height: 220px;
        border-radius: 12px;
    }

    .event-details {
        padding: 0;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .event-details h3 { font-size: 1.4rem; }

    .event-action {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    .event-action .btn { 
        width: 100%; 
        justify-content: center;
    }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {
    /* Promo Section */
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .promo-card {
        padding: 1.5rem;
    }

    .promo-card-title {
        font-size: 1rem;
    }

    .btn-block {
        padding: 1rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* Event items */
    .event-details h3 { font-size: 1.2rem; }

    /* Testimonials */
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    /* Category Pills */
    .event-categories {
        gap: 0.6rem !important;
    }

    .btn-pill {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Marquee */
    .client-logo-wrapper {
        width: 120px;
    }
    .marquee-group {
        gap: 1rem;
    }

    /* Promo section */
    .promo-event-section {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* --- Mobile Small (480px) --- */
@media (max-width: 480px) {
    .event-image-wrapper {
        height: 180px;
    }

    .promo-card {
        padding: 1.2rem;
        border-radius: 8px;
    }

    .artist-avatar {
        width: 42px;
        height: 42px;
    }

    .artist-name {
        font-size: 0.9rem;
    }

    .client-logo-wrapper {
        width: 100px;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 50px;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .btn-pill {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Animated Quotes & Testimonials Carousel */
.quotes-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.quotes-carousel-container {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quotes-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quotes-carousel-container {
    position: relative;
    width: 100%;
}

.quote-slide {
    display: none;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-slide.active {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.quote-card-borderless {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
}

.quote-icon-gold {
    font-size: 2.8rem;
    color: var(--gold);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 12px rgba(201, 160, 42, 0.45));
    display: inline-block;
}

.quote-text-content {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    line-height: 1.85;
    color: #f8fafc;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.quote-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.quote-author-name {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.quote-author-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #94a3b8;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

.quotes-carousel-controls {
    display: none !important;
}

@media (max-width: 768px) {
    .quote-card-borderless {
        padding: 1rem 0.5rem;
    }
    .quote-icon-gold {
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }
    .quote-text-content {
        font-size: 1.1rem;
        line-height: 1.75;
        margin-bottom: 1.5rem;
    }
}


