/* ----------------------------------------------------
   Podcast Alchemy Theme Variables
------------------------------------------------------- */
:root {
    --color-bg: #0a0a0a;
    --color-text: #e5e5e5;
    --color-accent: #E67E22;
    /* Podcast Alchemy Orange */
    --color-accent-hover: #D35400;
    /* Darker Orange */
    --color-header-bg: rgba(0, 0, 0, 0.8);
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Cinzel', serif;
    /* New Heading Font */
}

/* ----------------------------------------------------
   Reset & Base
------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent);
}

.gh-viewport {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ----------------------------------------------------
   New Alchemy Header
------------------------------------------------------- */
/* ----------------------------------------------------
   New Alchemy Header
------------------------------------------------------- */
/* ----------------------------------------------------
   New Alchemy Header
------------------------------------------------------- */
.alchemy-header {
    position: relative;
    width: 100%;
    /* No fixed height, let image define it */
    min-height: 200px;
    /* Fallback */
    overflow: hidden;
    /* Contain resize */
    border-bottom: 4px solid var(--color-accent);
}

.alchemy-header-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Ensure full image is shown */
}

.alchemy-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    /* Just for shading if needed, but we wanted clean image */
    /* Remove gradient if user wants clean image */
    /* background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.1)); */
}

.alchemy-header-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    /* Align Nav Right */
    align-items: flex-start;
    padding-top: 2rem;
}

.alchemy-nav {
    display: flex;
    gap: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    /* Removed margin-top */
}

.alchemy-nav a:hover {
    color: var(--color-accent);
}

.search-icon {
    display: none;
}


/* ----------------------------------------------------
   Podcast Grid Section
------------------------------------------------------- */
/* ... */


/* ----------------------------------------------------
   Podcast Grid Section
------------------------------------------------------- */
/* ----------------------------------------------------
   Podcast Grid Section
------------------------------------------------------- */
/* ----------------------------------------------------
   Podcast Grid Section
------------------------------------------------------- */
.podcast-grid-section {
    padding: 3rem 0;
    background-color: #111;
}

.grid-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 2rem;
}

.podcast-card-large {
    background-color: #1a1a1a;
    /* Dark card background */
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.podcast-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
    /* Orange Glow */
}

.podcast-card-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    /* Square covers */
    object-fit: cover;
}

/* NEW: Card Content Styles */
.podcast-card-content {
    padding: 1.5rem;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.podcast-title {
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.podcast-author {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.listen-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-top: auto;
    transition: background-color 0.2s;
}

.listen-btn:hover {
    background-color: #ccc;
    color: #000;
}


/* ----------------------------------------------------
   Team Section (Circles)
------------------------------------------------------- */
.team-section {
    padding: 4rem 2rem;
    background-color: #0f0f0f;
    text-align: left;
}

.team-inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* Headings Override */
.sans-heading {
    font-family: var(--font-sans) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-heading {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.team-subheading {
    color: #ccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.team-grid-circles {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    text-align: center;
    max-width: 300px;
}

.team-avatar {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    color: var(--color-accent);
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.team-name {
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}


/* ----------------------------------------------------
   About & Contact
------------------------------------------------------- */
.about-section {
    padding: 4rem 2rem;
    background-color: var(--color-bg);
}

.about-title,
.contact-title {
    color: var(--color-accent);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1rem;
    /* Smaller font */
    color: #ccc;
    font-family: var(--font-sans);
    text-align: justify;
    /* Justify Text */
    display: block;
    /* Layout: block flow */
}

.about-logo {
    float: left;
    /* Inline float */
    width: 200px;
    height: auto;
    margin: 0.5rem 2rem 0.5rem 0;
    /* Improved Margins for Wrapping */
    /* shape-outside removed to prevent overlap with opaque JPG */
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.5;
    /* Tighter lines */
}

.about-content::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .about-content {
        text-align: left;
    }

    .about-logo {
        float: none;
        display: block;
        margin: 0 auto 2rem auto;
    }
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #121212;
}

.contact-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container {
    text-align: left;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
}

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

.contact-submit-btn {
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s;
    width: 100%;
    border-radius: 4px;
}

.contact-submit-btn:hover {
    background-color: var(--color-accent-hover);
}

/* ----------------------------------------------------
   Footer
------------------------------------------------------- */
.gh-footer {
    padding: 3rem 2rem;
    background-color: #050505;
    text-align: center;
    border-top: 1px solid #222;
}

.gh-footer-copyright {
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
}

/* ----------------------------------------------------
   Responsive
------------------------------------------------------- */
@media (max-width: 768px) {
    .alchemy-header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .alchemy-nav {
        margin-top: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .grid-inner {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}