/* ===================================
   The TrailBlazeHers Podcast Landing Page
   Color Palette:
   - Primary Purple: #540d40
   - Primary Gold: #c59655
   - White: #FFFFFF
   - Black/Dark Gray: #000000, #333333
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    background-color: #FFFFFF;
}

/* Top Strip */
.top-strip {
    background-color: #540d40;
    padding: 10px 0;
    text-align: center;
}

.top-strip p {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 56px;
    color: #000000;
}

h2 {
    font-size: 42px;
    color: #540d40;
}

h3 {
    font-size: 24px;
    color: #000000;
    font-weight: 600;
}

p {
    margin-bottom: 1.2em;
}

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #E5E5E5;
}

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

.logo {
    height: 60px;
    width: auto;
}

/* Buttons */
.btn-cta {
    background-color: #c59655;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 45px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(197, 150, 85, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background-color: #b38649;
    box-shadow: 0 4px 12px rgba(197, 150, 85, 0.4);
    transform: translateY(-2px);
}

.btn-cta-large {
    font-size: 20px;
    padding: 22px 55px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F5F8 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 150, 85, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #540d40;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-text {
    margin-bottom: 40px;
}

.hero-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-hosts-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    animation: fadeInUp 0.8s ease;
}

.hero-hosts-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.btn-cta-hero {
    display: inline-block;
    margin-top: 10px;
}

/* Why Guest Section */
.why-guest {
    background-color: #F9F5F8;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

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

.section-subtitle {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: #555555;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.benefit-icon {
    font-size: 48px;
    color: #c59655;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotateY(360deg);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #540d40;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 0;
}

/* Topics Section */
.topics {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.topics-content {
    max-width: 800px;
    margin: 50px auto 0;
}

.topics-intro {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #333333;
}

.topics-list {
    list-style: none;
    margin: 40px 0;
}

.topics-list li {
    font-size: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    color: #333333;
}

.topics-list li:last-child {
    border-bottom: none;
}

.topics-list li i {
    color: #c59655;
    margin-right: 20px;
    font-size: 20px;
}

.topics-closing {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
    color: #540d40;
    font-style: italic;
}

/* Who Should Apply Section */
.who-should-apply {
    background-color: #F9F5F8;
    padding: 80px 0;
}

.criteria-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.criteria-item {
    background-color: #FFFFFF;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 4px solid #c59655;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.criteria-item:hover {
    border-left-width: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.criteria-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.criteria-header i {
    color: #540d40;
    font-size: 28px;
    margin-right: 15px;
    flex-shrink: 0;
}

.criteria-header h3 {
    font-size: 22px;
    margin-bottom: 0;
    color: #540d40;
}

.criteria-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 0;
    margin-left: 43px;
}

/* Industries Section */
.industries {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin: 30px auto 50px;
    max-width: 800px;
    color: #333333;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.industry-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background-color: #F9F5F8;
    border-radius: 8px;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.industry-item:nth-child(1) { animation-delay: 0.1s; }
.industry-item:nth-child(2) { animation-delay: 0.2s; }
.industry-item:nth-child(3) { animation-delay: 0.3s; }
.industry-item:nth-child(4) { animation-delay: 0.4s; }
.industry-item:nth-child(5) { animation-delay: 0.5s; }
.industry-item:nth-child(6) { animation-delay: 0.6s; }
.industry-item:nth-child(7) { animation-delay: 0.7s; }
.industry-item:nth-child(8) { animation-delay: 0.8s; }
.industry-item:nth-child(9) { animation-delay: 0.9s; }

.industry-item:hover {
    background-color: #540d40;
    color: #FFFFFF;
    transform: translateX(10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(84, 13, 64, 0.3);
}

.industry-item i {
    color: #c59655;
    font-size: 28px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.industry-item:hover i {
    color: #c59655;
}

.industry-item span {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.industry-item:hover span {
    color: #FFFFFF;
}

.industries-closing {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-top: 50px;
    color: #540d40;
    font-style: italic;
}

/* Podcast Showcase Section */
.podcast-showcase {
    background: linear-gradient(135deg, #540d40 0%, #7a1258 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.podcast-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 150, 85, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.podcast-showcase::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.showcase-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.showcase-content-centered .section-title {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.showcase-tagline {
    font-size: 22px;
    font-weight: 500;
    color: #c59655;
    margin-bottom: 40px;
    font-style: italic;
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 600px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #c59655;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.9;
}

.showcase-description {
    font-size: 17px;
    line-height: 1.8;
    margin: 30px 0;
    opacity: 0.95;
}

.podcast-links {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.podcast-link {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.podcast-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.podcast-link i {
    font-size: 20px;
}

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

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

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #540d40 0%, #7a1258 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.cta-section .section-title {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: #FFFFFF;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
}

.footer-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.footer-social a {
    color: #c59655;
    font-size: 28px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #FFFFFF;
    transform: scale(1.2);
}

.footer-copyright {
    font-size: 14px;
    color: #999999;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1, .hero-title {
        font-size: 48px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero::before {
        width: 400px;
        height: 400px;
    }
    
    .hero-wrapper {
        gap: 50px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .showcase-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    h1, .hero-title {
        font-size: 38px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo {
        height: 40px;
    }
    
    .btn-cta {
        padding: 15px 35px;
        font-size: 16px;
    }
    
    .btn-cta-large {
        padding: 18px 40px;
        font-size: 18px;
    }
    
    .hero {
        padding: 60px 0 70px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .why-guest,
    .topics,
    .who-should-apply,
    .industries,
    .cta-section {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .showcase-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .criteria-item p {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .criteria-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .criteria-header i {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    h1, .hero-title {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .benefit-card,
    .criteria-item,
    .industry-item {
        padding: 20px;
    }
    
    .topics-list li {
        font-size: 16px;
        padding: 15px 0;
    }
}