/* CSS Variables for Color Palette */
:root {
    --primary-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --soft-blue: #93c5fd;
    --light-pink: #f8c8dc;
    --dusty-purple: #8b5fbf;
    --charcoal: #374151;
    --light-gray: #f9fafb;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    text-align: center;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--light-pink), var(--dusty-purple));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-family: 'Source Sans Pro', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, var(--light-blue), var(--dusty-purple));
}

/* Header & Navigation */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: relative;
    padding-top: 81px; /* Space for the navbar */
}
/* Logo positioned to the left - ABOVE the navbar */
.logo-wrapper {
    position: absolute;
    top: 0;
    left: 72px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    z-index: 1001; /* ABOVE the sticky nav (1000) */
}

/* Logo image - adjust height if needed */
.logo-img {
    height: 180px; /* Or your preferred height */
    width: auto;
    transition: transform 0.3s ease;
}

/* STICKY NAVIGATION BAR */
.sticky-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000; /* Logo is 1001, so it's above */
    padding: 10px 0;
    height: 81px; /* Your height */
}

.sticky-nav-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Keep existing nav styles */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--charcoal);
    position: relative;
    padding: 5px 0;
    font-family: 'Source Sans Pro', sans-serif;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-pink);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .logo-wrapper {
        left: 20px; /* Align with container padding */
    }
}

@media (max-width: 992px) {
    .logo-img {
        height: 150px; /* Slightly smaller on tablet */
    }

    header {
        padding-top: 120px; /* Adjust for smaller logo */
    }
}

@media (max-width: 768px) {
    .logo-wrapper {
        position: relative;
        left: 0;
        text-align: center;
        width: 100%;
        padding-top: 10px;
    }

    .logo-img {
        height: 120px;
    }

    header {
        padding-top: 0;
    }

    .sticky-nav-bar {
        position: relative; /* Make non-sticky on mobile */
        padding: 0;
    }

    .sticky-nav-bar .container {
        flex-direction: column;
        padding: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }
}


/* Hero Section with Parallax */
.hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../images/JenniferJean2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    transform: translateZ(0);
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(30, 58, 138, 0.7) 0%,
        rgba(139, 95, 191, 0.6) 50%,
        rgba(248, 200, 220, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--light-pink);
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.about-subtitle {
    color: var(--dusty-purple);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.highlight {
    background-color: rgba(248, 200, 220, 0.3);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Podcasts Section */
.podcasts {
    background-color: var(--light-gray);
}

.podcast-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.podcast-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.podcast-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.podcast-image {
    height: 300px;
    overflow: hidden;
}

.podcast-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.podcast-card:hover .podcast-img {
    transform: scale(1.1);
}

.podcast-info {
    padding: 25px;
}

.podcast-name {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.podcast-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.podcast-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.podcast-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-blue);
    font-weight: 600;
}

.podcast-link:hover {
    color: var(--dusty-purple);
}

/* Contact Form */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Source Sans Pro', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 150px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.footer-logo-text span {
    color: var(--light-pink);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--light-pink);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--light-pink);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .parallax-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: block;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: 80vh;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: 70vh;
    }
}
