/* Base Styles */
:root {
    --primary-color: #1e2b4d;
    --gold-color: #c39d63;
    --text-color: #333;
    --light-bg: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

h1,
h2,
h3,
.logo,
.btn,
nav ul li a {
    font-family: 'Oswald', sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-gold {
    background-color: var(--gold-color);
    color: #fff;
}

.btn-gold:hover {
    background-color: #aa8652;
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 35px;
    font-size: 1.25rem;
}

.shadow-btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Header */
header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 28px;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    padding-bottom: 3px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #fff;
    border-bottom: 2px solid var(--gold-color);
}

nav ul li a.btn {
    color: #fff;
    border-bottom: none;
    padding-bottom: 10px;
}

nav ul li a.btn:hover {
    color: #fff;
    border-bottom: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 550px;
    background: url('cover.jpg') no-repeat center 40%/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 43, 77, 0.4), rgba(49, 13, 89, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

/* About Section */
.about-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.about-image {
    flex: 1;
    max-width: 450px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-text {
    flex: 1.2;
    padding-top: 10px;
    min-width: 0;
}

.about-text h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #444;
    font-weight: 400;
}

.quote {
    margin-top: 35px;
    position: relative;
    padding: 10px 40px 10px 50px;
}

.quote::before {
    content: '\201C';
    font-family: serif;
    font-size: 4.5rem;
    color: var(--gold-color);
    position: absolute;
    left: 0;
    top: -15px;
    line-height: 1;
}

.quote::after {
    content: '\201D';
    font-family: serif;
    font-size: 4.5rem;
    color: var(--gold-color);
    position: absolute;
    right: 0;
    bottom: -35px;
    line-height: 1;
}

.quote blockquote {
    font-style: italic;
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 500;
}

.quote-author {
    font-weight: 700;
    color: #222;
    text-align: right;
    font-size: 1.1rem;
}

/* Books Section */
.books {
    background-color: var(--primary-color);
    color: #fff;
    padding: 70px 0;
}

.books-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.books-image {
    flex: 0 1 240px;
}

.books-image img {
    width: 100%;
    height: auto;
    box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.4);
    transform: perspective(800px) rotateY(15deg);
    border-radius: 2px;
}

.books-text {
    flex: 0 1 400px;
}

.books-text h3 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }

    .about-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    nav ul li {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .books-container {
        flex-direction: column;
        text-align: center;
    }

    .books-image img {
        transform: none;
    }
}

/* --- V2 Updates: Media & Books Sections --- */

.bg-light {
    background-color: var(--light-gray);
}

.media-header {
    text-align: center;
    margin-bottom: 2rem;
}

.media-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.media-logo {
    height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

/* US Rowing: keep it slightly muted to match row, full colour on hover */
.media-logo--color {
    filter: grayscale(30%) opacity(0.75);
}
.media-logo--color:hover {
    filter: grayscale(0%) opacity(1);
}


.media-kit-download {
    text-align: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.media-kit-download p {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
}

.book-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.book-card:hover {
    transform: translateY(-5px);
}

.book-card img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.2);
}

.book-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.book-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.book-card .rating {
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #e67e22;
    /* slight orange for stars if needed, or stick to gold */
}

/* Responsive adjustments for v2 */
@media (max-width: 768px) {
    .books-grid {
        grid-template-columns: 1fr;
    }
}

/* --- New Mini Testimonials --- */

/* --- Scrolling Testimonials Marquee --- */

.testimonials-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    margin-top: 3rem;
    position: relative;
    padding-bottom: 20px;
}

/* Gradient fades on the left and right edges for a premium look */
.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.testimonials-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.testimonials-marquee {
    display: inline-flex;
    gap: 2rem;
    animation: scroll-marquee 35s linear infinite;
    padding: 10px 0;
}

/* Pause animation on hover */
.testimonials-marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 1rem));
    }
}

.mini-testimonial {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    width: 350px;
    flex-shrink: 0;
    white-space: normal;
}

@media (max-width: 768px) {
    .mini-testimonial {
        width: 300px;
    }
}

.testimonial-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.mini-testimonial-text p {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.mini-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
}

/* --- Contact Booking --- */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   WHAT PEOPLE ARE SAYING — Testimonials
   ============================================ */
.wps-section {
    background-color: var(--primary-color);
    color: #fff;
}

.wps-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wps-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
    color: #fff;
}

.wps-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
}

.wps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wps-card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(195, 157, 99, 0.3);
    border-left: 4px solid var(--gold-color);
    border-radius: 6px;
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.wps-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.1);
}

.wps-role {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-bottom: 0.8rem;
}

.wps-quote-mark {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--gold-color);
    line-height: 0.8;
    margin-bottom: 0.8rem;
}

.wps-quote {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

.wps-attr {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: normal;
}

@media (max-width: 900px) {
    .wps-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PODCAST APPEARANCES — Icon Card Grid
   ============================================ */
.podcast-section {
    background-color: #f7f7f7;
    color: var(--text-color);
}

.podcast-section .wps-header h3 {
    color: var(--primary-color);
}

.podcast-section .wps-header p {
    color: #666;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.podcast-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-bottom: 3px solid transparent;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--gold-color);
}

.podcast-icon {
    font-size: 2.6rem;
    margin-bottom: 0.9rem;
    line-height: 1;
}

.podcast-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.3px;
    margin-bottom: 0.3rem;
}

.podcast-sub {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

@media (max-width: 768px) {
    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .podcast-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 35, 0.78);
    backdrop-filter: blur(4px);
    z-index: 900;
    animation: lb-fade-in 0.2s ease;
}

.lb-overlay.active {
    display: block;
}

.lb-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem 2.8rem;
    max-width: 580px;
    width: 90%;
    z-index: 1000;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    animation: lb-slide-in 0.25s ease forwards;
}

.lb-modal.active {
    display: block;
}

@keyframes lb-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes lb-slide-in {
    from { opacity: 0; transform: translate(-50%, -44%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

.lb-tag {
    display: inline-block;
    background-color: var(--gold-color);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.lb-modal h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.lb-modal p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.lb-body {
    color: #444 !important;
    font-size: 0.95rem !important;
    line-height: 1.7;
}

.lb-quote {
    border-left: 3px solid var(--gold-color);
    margin: 1rem 0;
    padding: 0.8rem 1.2rem;
    font-style: italic;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
    background: #fafafa;
    border-radius: 0 4px 4px 0;
}

.lb-attr {
    font-size: 0.85rem !important;
    color: #888 !important;
    margin-top: 0.3rem;
}

.lb-link {
    display: inline-block;
    margin-top: 1.2rem;
    background: var(--gold-color);
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.lb-link:hover {
    background: #aa8652;
}

.lb-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.lb-close:hover {
    color: var(--primary-color);
}