/* =========================
   Base Typography and Fonts
   ========================= */
body {
    font-family: "Century Gothic", 'Lato', sans-serif;
}

h1, .et-hero-tabs {
    font-family: 'Audiowide', sans-serif;
}

h3, li {
    font-family: 'Merienda', cursive;
}

h2 {
    font-family: 'Unkempt', cursive;
    font-weight: 700;
}

h4 {
    font-family: 'Annie Use Your Telescope', cursive;
    font-size: 1.5rem;
}

/* Font Classes (Optional) */
.audiowide-regular {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.merienda-<uniquifier> {
    font-family: "Merienda", cursive;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.unkempt-bold {
    font-family: "Unkempt", cursive;
    font-weight: 700;
    font-style: normal;
}

.annie-use-your-telescope-regular {
    font-family: "Annie Use Your Telescope", cursive;
    font-weight: 400;
    font-style: normal;
}

/* =========================
   Hero & Slide Sections
   ========================= */
.et-hero-tabs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Keep full screen for hero */
    position: relative;
    text-align: center;
    padding: 4em 2em 6em; /* Top & bottom padding to prevent overlap with tabs */
    background-image: url("/static/images/logo-enhanced.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.et-slide {
    width: 100%;
    position: relative;
    text-align: center;
    padding: 4em 2em;
    /*background: #eee;*/
    box-sizing: border-box;
}

.et-slide + .et-slide {
    margin-top: 100vh; /* or however much spacing you want */
}

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

.et-hero-tabs {
    background-image: url("/static/images/logo-enhanced.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.et-hero-tabs > * {
    position: relative;
    z-index: 2;
}

.et-hero-tabs h1,
.et-slide h1 {
    font-size: 2rem;
    margin: 0;
    letter-spacing: 1rem;
    color: black;
}

.et-hero-tabs h3,
.et-slide h3,
li {
    font-size: 1rem;
    letter-spacing: 0.3rem;
    opacity: 0.6;
    color: black;
}

/* =========================
   Hero Tab Navigation
   ========================= */
.et-hero-tabs-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 10;
}

.et-hero-tabs-container--top {
    position: fixed;
    top: 0;
}

.et-hero-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #000;
    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
    font-size: 0.8rem;
}

.et-hero-tab:hover {
    color: white;
    background: rgba(102, 177, 241, 0.8);
}

.et-hero-tab-slider {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 6px;
    background: #66B1F1;
    transition: left 0.3s ease;
}

/* =========================
   Hero Text Overlay
   ========================= */
.hero-text {
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem 2rem;
    border-radius: 10px;
    text-align: center;
}

/* =========================
   Responsive Typography
   ========================= */
@media (min-width: 800px) {
    .et-hero-tabs h1,
    .et-slide h1 {
        font-size: 3rem;
    }

    .et-hero-tabs h3,
    .et-slide h3 {
        font-size: 1rem;
    }

    .et-hero-tab {
        font-size: 1rem;
    }
}

/* =========================
   Animal Bio Section
   ========================= */
.animal-bio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3rem 0;
    gap: 2rem;
    flex-wrap: wrap;
}

animal-bio img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
}

.bio-text {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.bio-text h2 {
    font-weight: bold; /* Bold */
    text-decoration: underline; /* Underline */
}

.animal-bio.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .animal-bio,
    .animal-bio.reverse {
        flex-direction: column;
        text-align: center;
    }

    .bio-text {
        max-width: 90%;
    }
}

/* =========================
   Scrollable Content Box
   ========================= */
.scroll-box {
    max-height: 70vh;
    overflow-y: auto;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    scroll-snap-type: y mandatory;
}

.scroll-box::-webkit-scrollbar {
    width: 8px;
}

.scroll-box::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

/* =========================
   Healing List
   ========================= */
.healing-list {
    list-style-type: disc;
    padding-left: 0;
    margin: 2rem auto 0;
    text-align: center;
    max-width: 600px;
}

.healing-list li {
    margin: 0.5rem 0;
}

/* =========================
   General Images
   ========================= */
.image {
    margin-top: 2rem;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* =========================
   Image Pair Buttons
   ========================= */
.image-pair {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 2rem 0;
}

.image-pair img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-pair.single-button {
   justify-content: center;
}


.hover-button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.hover-button img {
    display: block;
    width: 200px;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    text-shadow: 1px 1px 2px #fff;
}

.hover-button:hover img {
    opacity: 0.3;
}

.hover-button:hover {
    box-shadow: 0 0 20px 4px #00ff00;
}

.hover-button:hover .hover-text {
    opacity: 1;
}