
/* --- Import Anta Font --- */
@import url('https://fonts.googleapis.com/css2?family=Anta&family=Marck+Script&family=Rock+Salt&family=Square+Peg&display=swap');
/* --- 1. The Stationary Background & Body --- */
body, html {
    height: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    /* background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?q=80&w=2070&auto=format&fit=crop"); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),  url("images/LnC_Site_Background.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* --- 2. A "Hero" Section for your Podcast Title --- */
.title-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.logo {
    height: 100px;
}

.title-text {
    color: #ffffff;
    font-family: "Anta", sans-serif;
    font-size: 3rem;
    padding: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
}

.title-subtext {
    color: #ffffff;
    margin-top: 0;
    font-family: "Anta", sans-serif;
    font-size: 2rem;
    padding: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
}
h1 {
    font-family: "Anta", sans-serif;
}
h2 {
    font-family: "Anta", sans-serif;
}

/* --- 3. The Main Scrolling Content Containers --- */
.content-container {
    padding: 50px 10%; /* Use percentage for padding to be more responsive */
    background-color: transparent;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    min-height: 300px;
    /* UPDATED: Center the content (like titles) inside the containers */
    text-align: center; 
}

/* --- 4. LATEST EPISODE (YOUTUBE) SECTION --- */
/* This container makes the YouTube video responsive */
.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 880px; /* Max width for the video on large screens */
    margin: 20px auto; /* Center the video container */
    padding-top: 56.25%; /* Aspect ratio 16:9 */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* border: 3px solid #fff;  Optional: adds a white border */
    /* border-radius: 8px;  Optional: rounded corners */
}

/* --- 5. HOST PROFILE SECTION --- */
/* NEW */
/* Base styles - these are generally good and flexible */
.host-profile-container {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 40px; /* Space between image and text */
    max-width: 900px; /* Set a max width for readability */
    margin: 40px auto; /* Center the whole container */
}

/* This modifier class will reverse the order for alternating layout */
.host-profile-container.reverse {
    flex-direction: row-reverse;
}

.host-image {
    width: 350px;
    height: 450px;
    border-radius: 3%;
    object-fit: cover;
    flex-shrink: 0;
}

.host-bio {
    font-size: 1.1rem; /* Using rem for scalable font size */
}

.host-bio h3 {
    font-family: "Anta", sans-serif;
    font-size: 1.8rem; /* Using rem for scalable font size */
    margin-top: 0;
}

/* --- Imported Font for Title Sections --- */
.anta-regular {
  font-family: "Anta", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* --- Media Queries for Responsiveness --- */

/* For screens smaller than 768px (e.g., tablets in portrait or large phones) */
@media (max-width: 768px) {
    .host-profile-container {
        flex-direction: column; /* Stack image and bio vertically */
        text-align: center; /* Center text when stacked */
        gap: 20px; /* Reduce gap when stacked */
        margin: 30px 20px; /* Adjust margin for smaller screens, add side padding */
    }

    /* Reset flex-direction for the reverse class when stacked */
    .host-profile-container.reverse {
        flex-direction: column; /* Maintain column order regardless of 'reverse' */
    }

    .host-image {
        width: 250px; /* Smaller image width */
        height: 250px; /* Make image more square on smaller screens */
        border-radius: 5%; /* Optionally make it a circle for a different look */
    }

    .host-bio {
        font-size: 1rem; /* Slightly smaller font size for body text */
    }

    .host-bio h3 {
        font-family: "Anta", sans-serif;
        font-size: 1.5rem; /* Smaller heading size */
    }
}

/* For screens smaller than 480px (e.g., typical smartphones) */
@media (max-width: 480px) {
    .host-profile-container {
        margin: 20px 15px; /* Further reduce margins/padding */
        gap: 15px;
    }

    .host-image {
        width: 200px; /* Even smaller image */
        height: 200px;
    }

    .host-bio {
        font-size: 0.95rem; /* Slightly smaller text */
    }

    .host-bio h3 {
        font-family: "Anta", sans-serif;
        font-size: 1.3rem; /* Further reduce heading size */
    }
}

/* --- 6. SOCIAL MEDIA LINKS SECTION --- */
/* NEW */

.social-links {
    margin-top: 30px; /* You might adjust this with a media query if needed */
    display: flex; /* Make it a flex container */
    justify-content: center; /* Center the links horizontally */
    flex-wrap: wrap; /* Allow links to wrap to the next line if space is limited */
    gap: 10px; /* Add some consistent spacing between links */
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem; /* Using rem for scalable font size */
    margin: 0 10px; /* Reduce horizontal margin slightly for smaller screens */
    padding: 8px 12px; /* Slightly reduce padding for smaller buttons */
    border: 0px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    /* Optional: Ensure text doesn't break awkwardly */
    white-space: nowrap;
}

.social-links a:hover {
    background-color: #fff;
    color: #000;
    text-shadow: none; /* Remove text shadow on hover */
}

.social-links a img {
    /* Styles for the actual social icon image */
    width: 50px; /* Consistent width for icons */
    height: 50px; /* Consistent height for icons */
    display: block; /* Removes any extra space below the image */
    object-fit: contain; /* Ensures the whole image is visible within its dimensions */
    filter: invert(0); /* This can make white icons if your originals are black */
}

.social-links a:hover img {
    filter: invert(1); /* On hover, revert to original image colors (if using filter: invert) */
    /* Or if your images are already colored and you want them to turn black on hover: */
    /* filter: brightness(0); */
}

/* --- Media Queries for Smaller Screens --- */

/* Small screens (e.g., smartphones in portrait mode) */
@media (max-width: 768px) {
    .social-links {
        margin-top: 20px; /* Slightly reduce top margin */
        flex-direction: column; /* Stack links vertically */
        align-items: center; /* Center items when stacked */
        gap: 15px; /* Increase gap between vertically stacked links */
    }

/*  --- May no longer be needed
    .social-links a {
        font-size: 1rem; /* Smaller font size on small screens 
        margin: 0; /* Remove horizontal margin when stacked 
        width: 50%; /* Make buttons take up more width (adjust as needed) 
        text-align: center; /* Center text within the button 
    }
*/
    .social-links a img {
        width: 40px; /* Smaller icon size for small screens */
        height: 40px;
    }
}

/* Even smaller screens (e.g., very small phones) */
@media (max-width: 480px) {
    .social-links {
        margin-top: 15px;
        gap: 10px;
    }
/*  --- May no longer be needed
    .social-links a {
        font-size: 0.9rem; /* Even smaller font size
        padding: 6px 10px; /* Smaller padding
        width: 90%; /* Take up more width 
    }
*/
    .social-links a img {
        width: 30px; /* Even smaller icon size */
        height: 30px;
    }
}


/* Using min() for dynamic margin (alternative to media queries for specific properties) */
/* This will make the margin-top always be at least 15px, but can go up to 30px */
/* You could apply this to padding or font-size as well */
/* .social-links {
    margin-top: min(30px, 5vw + 15px);
} */
