/* Style for Veteran Host heading */

.host-placeholder h3 {
    color: #4a3c2a !important;
}
/*
  B3U Podcast Color Palette
  Feminine Earthy Color Scheme:
    earth-brown: #bfae9e (Warm Taupe)
    earth-green: #a3b18a (Sage Green)
    earth-yellow: #e6cfc7 (Soft Clay Pink, soft yellow-beige)
    earth-accent: #c2b280 (Sand Yellow)
    earth-dark: #6b5d4f (Deep Earth Brown)
    earth-light: #f8f5f2 (Light Earth)
*/
/* CSS Custom Properties for theme */
:root {
  --earth-brown: #bfae9e;
  --earth-green: #6d8c5a;
  --earth-yellow: #e6cfc7;
  --earth-accent: #c2b280;
  --earth-dark: #6b5d4f;
  --earth-light: #f8f5f2;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4a3c2a;
    background-color: var(--earth-light);
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(191, 174, 158, 0.95); /* earth-brown with opacity */
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--earth-accent);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: transparent;
    border-radius: 15px;
    border: 2px solid var(--earth-green);
}

.nav-logo h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--earth-brown);
    letter-spacing: 2px;
}

.nav-logo span {
    font-size: 20px;
    color: var(--earth-green);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--earth-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--earth-accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--earth-brown);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid #ff6b35;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.nav-toggle-btn .bar {
  display: block !important;
  width: 28px !important;
  height: 4px !important;
  margin: 4px 0 !important;
  background: linear-gradient(90deg, #ff6b35 60%, #2c3e50 40%) !important;
  border-radius: 2px !important;
  opacity: 1 !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12), 0 0 0 1px #0a0a0a;
  transition: background 0.2s, transform 0.2s;
  border: none !important;
}

.nav-toggle-btn:focus .bar,
.nav-toggle-btn:hover .bar {
  background: #2c3e50 !important;
}

@media (max-width: 1024px) {
  .nav-toggle-btn {
    width: 52px;
    height: 52px;
    border-width: 2.5px;
    padding: 10px;
  }
  .nav-toggle-btn .bar {
    width: 34px !important;
    height: 5px !important;
    margin: 6px 0 !important;
    background: #ff6b35 !important;
    display: block !important;
    border-radius: 2px !important;
    opacity: 1 !important;
  }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--earth-light) 0%, var(--earth-brown) 100%);
    color: var(--earth-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 110px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23bfae9e" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-title {
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    color: var(--earth-brown);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    color: var(--earth-accent);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--earth-green);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--earth-brown);
    color: var(--earth-light);
    border-color: var(--earth-brown);
}

.btn-primary:hover {
    background: transparent;
    color: var(--earth-brown);
    border-color: var(--earth-brown);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--earth-dark);
    border-color: var(--earth-dark);
}

.btn-secondary:hover {
    background: var(--earth-light);
    color: var(--earth-brown);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.podcast-cover {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--earth-brown), var(--earth-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(191, 174, 158, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: opacity 0.1s ease;
}

.podcast-cover:hover {
    transform: rotate(0deg) scale(1.05);
}

.cover-placeholder {
    text-align: center;
    color: #f4f1ea;
}

.microphone-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.cover-placeholder h3 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.cover-placeholder p {
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #4a3c2a;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat p {
    color: #4a3c2a;
    font-size: 1rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--earth-light);
    color: #4a3c2a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #4a3c2a;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a3c2a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.host-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(163, 177, 138, 0.3);
    border: 4px solid var(--earth-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 5px;
}

.host-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(200, 149, 109, 0.4);
}

.host-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--earth-brown), var(--earth-green));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--earth-light);
    box-shadow: 0 15px 35px rgba(191, 174, 158, 0.3);
}

.veteran-badge {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #4a3c2a;
}

.about-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #4a3c2a;
}

.qualities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.quality {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: var(--earth-yellow);
    transition: transform 0.3s ease;
}

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

.quality-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.quality h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #5d4e37;
}

.quality p {
    color: #7a6b5d;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f1ea 0%, #e8dcc2 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.services .section-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.services .section-header h2,
.services .section-header p {
    grid-column: 2;
    margin: 0;
}

.services .section-header h2 {
    margin-bottom: 15px;
}

.services-images {
    display: contents;
}

.service-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(93, 78, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-self: center;
}

.service-image:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(93, 78, 55, 0.3);
}

.service-image:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
}

.service-image:last-child {
    grid-column: 3;
    grid-row: 1 / 3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: var(--earth-light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(191, 174, 158, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--earth-brown);
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 78, 55, 0.2);
    border-color: #c8956d;
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
}

.service-card h3 {
    color: #4a3c2a;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    flex-grow: 0;
}

.service-card p {
    color: #4a3c2a;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
    flex-grow: 1;
}

/* Episodes Section */
.episodes {
    padding: 100px 0;
    background: var(--earth-yellow);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.episode-card {
    background: var(--earth-light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(191, 174, 158, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.episode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--earth-brown);
}

.episode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.episode-number {
    display: inline-block;
    background: var(--earth-brown);
    color: var(--earth-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.episode-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #5d4e37;
}

.episode-card p {
    color: #7a6b5d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.episode-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #8b7355;
}

.episode-link {
    color: var(--earth-brown);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.episode-link:hover {
    color: var(--earth-green);
}

.episodes-cta {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--earth-brown);
    color: var(--earth-dark);
}

.contact .section-header h2,
.contact .section-header p {
    color: var(--earth-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4a3c2a;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a3c2a;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: #c8956d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon .icon-image {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-method h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #4a3c2a;
}

.contact-method p {
    color: #4a3c2a;
}

.contact-method a {
    color: #4a3c2a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--earth-brown);
    text-decoration: underline;
}

.contact-method p a {
    margin: 0 5px;
    white-space: nowrap;
}

.contact-method p a:first-child {
    margin-left: 0;
}

.contact-method p a:last-child {
    margin-right: 0;
}

.contact-form {
    background: var(--earth-green);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(163, 177, 138, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--earth-brown);
    border-radius: 8px;
    background: var(--earth-light);
    color: var(--earth-dark);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--earth-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--earth-brown);
    color: var(--earth-dark);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 2px solid var(--earth-green);
}

.footer-brand h3 {
    font-size: 2rem;
    color: #4a3c2a;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: #4a3c2a;
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4a3c2a;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #4a3c2a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--earth-brown);
}

.footer-bottom {
    border-top: 1px solid var(--earth-accent);
    padding-top: 30px;
    text-align: center;
    color: var(--earth-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(58, 52, 38, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle-btn {
        margin-right: 24px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .services .section-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .services .section-header h2,
    .services .section-header p {
        grid-column: 1;
    }

    .services-images {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }

    .service-image {
        width: 280px;
        height: 500px;
    }

    .service-image:first-child,
    .service-image:last-child {
        grid-column: unset;
        grid-row: unset;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .service-card {
        padding: 16px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .episodes-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .btn {
        width: 200px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 110px 20px 50px;
    }

    .podcast-cover {
        width: 300px;
        height: 300px;
    }

    .services-images {
        display: contents;
        gap: 25px;
    }

    .service-image {
        width: 350px;
        height: 350px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(93, 78, 55, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        justify-self: center;
    }

    .logo-img {
        height: 60px;
    }

    .footer-logo {
        height: 90px;
    }

    .host-image {
        width: 250px;
        height: 250px;
    }

    .contact-form {
        padding: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .footer-links {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .btn {
        width: 200px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--earth-green);
    outline-offset: 2px;
}

/* Loading animation for podcast cover */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Removed pulse animation from podcast-cover */

@media (max-width: 1024px) {
  .nav-toggle-btn {
    width: 52px !important;
    height: 52px !important;
    border-width: 2.5px !important;
    padding: 10px !important;
  }
  .nav-toggle-btn .bar {
    width: 34px !important;
    height: 5px !important;
    margin: 6px 0 !important;
    background: #ff6b35 !important;
    display: block !important;
    border-radius: 2px !important;
    opacity: 1 !important;
  }
}
