body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    background: url("https://media.discordapp.net/attachments/1503446714239946843/1503789504228626643/background.jpg?ex=6a04a09c&is=6a034f1c&hm=0ff17c92ac30b6d203d555fcf94b7548ff469cb9987f04bb9f3b796d80fc27e6&=&format=webp&width=1065&height=799")
    no-repeat center center fixed;

    background-size: cover;
    min-height: 100vh;
}

/* =========================
   CUSTOM CURSOR
========================= */

/* Big Lady Bug Cursor */
* {
    cursor: url('https://cdn.cursors-4u.net/previews/big-lady-bug-790c23a5-32.webp') 32 32, auto !important;
}

a,
button,
.facts-container,
.view-card,
header nav a {
    cursor: url('https://cdn.cursors-4u.net/previews/big-lady-bug-790c23a5-32.webp') 32 32, pointer !important;
}

.background-section {
    width: 100%;
    height: 698px;
    position: relative;

    display: flex;
    justify-content: center;  /* centers horizontally */
}

/* SLIDER */
.slider {
    cursor: grab;

    width: 1240px;
    height: 698px;

    position: relative;
    overflow: hidden;

    margin-top: 0;

    /* BIGGER DECORATIVE BORDER */
    border: 18px solid transparent;

    border-image-source:
        url("https://foollovers.com/mat/menu05/51a-none.gif");

    border-image-slice: 18;

    border-image-repeat: round;
    
}

.slider:active {
    cursor: grabbing;
}

.slides {
    display: flex;
    width: calc(1240px * 3);
    height: 698px;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
    flex-shrink: 0;
}

.slide {
    width: 1240px;
    height: 698px;

    flex-shrink: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}

/* TEXT CONTENT */
.wild-cats-banner {
    text-decoration: none;
    color: white;
    display: block;
    
    position: absolute;
    top: 25px;
    left: 42px;

    font-family: "Baskerville Old Face", serif;
    font-weight: normal;

    z-index: 100;
}

.wild-cats-banner:hover {
    opacity: 0.8;
    cursor: pointer;
}

.wild {
    font-size: 42pt;
    letter-spacing: 1px;
    margin: 0;
    line-height: 0.9;

    text-shadow: none;
}

.cats {
    font-size: 42pt;
    letter-spacing: 1px;
    margin: 0;
    line-height: 0.9;
}

header {
    position: absolute;
    top: 30px;
    right: 42px;

    z-index: 100;
}

/* =========================
   HEADER CONTAINER
========================= */

header {
    position: absolute;
    top: 25px;
    right: 42px;

    z-index: 100;
}

/* TRANSPARENT GLASS CONTAINER */
hheader nav {
    display: flex;
    gap: 18px;

    padding: 14px 24px;

    border-radius: 18px;

    /* BROWN GRADIENT */
    background: linear-gradient(
        135deg,
        rgba(70, 45, 25, 0.85),
        rgba(35, 20, 10, 0.75)
    );

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.05);
}


/* NAV BUTTONS */
header nav a {
    position: relative;

    padding: 12px 28px;

    font-size: 22px;

    color: white;
    text-decoration: none;

    border-radius: 12px;

    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

    letter-spacing: 1px;

    background: linear-gradient(
        145deg,
        rgba(70,70,70,0.45),
        rgba(20,20,20,0.75)
    );

    border: 1px solid rgba(255,255,255,0.08);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

header nav a {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* GIF overlay (hidden by default) */
header nav a::after {
    content: "";
    position: absolute;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: 120px;
    height: 80px;

    background-image: url("https://i.pinimg.com/originals/ca/85/65/ca8565841d017d9784a539fee2cd4f77.gif");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    opacity: 0;
    transition: opacity 0.25s ease;

    pointer-events: none;

    z-index: 0;
}

/* show GIF only on hover of THAT button */
header nav a:hover::after {
    opacity: 1;
}

header nav a::after {
    width: 160px;
    height: 120px;
    opacity: 0;
    filter: brightness(0.9);
    z-index: -1;
}

/* HOVER EFFECT */
header nav a:hover {
    transform: translateY(-2px);

    background: linear-gradient(
        145deg,
        rgba(90,90,90,0.65),
        rgba(25,25,25,0.9)
    );

    box-shadow:
        0 6px 18px rgba(0,0,0,0.55),
        0 0 12px rgba(255,255,255,0.08);
}

/* CLICK EFFECT */
header nav a:active {
    transform: scale(0.96);
}
.felines-text {
    position: absolute;

    top: 260px;
    left: 50%;

    transform: translateX(-50%);

    font-size: 90pt;

    font-family: 'Franklin Gothic Demi Cond', 'Arial Black', sans-serif;
    font-weight: bold;

    color: white;

    letter-spacing: 4px;
    text-align: center;

    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);

    z-index: 10;
}

/* RECOMMENDED VIEWING SECTION */

.recommended-section {
    width: 1240px;
    margin: 0 auto 40px auto;
    margin-top: 20px;
    color: white;
    font-family: Arial, sans-serif;
}

.recommended-title {
    font-size: 42px;
    margin-bottom: 25px;
    padding-left: 10px;

    font-family: "Baskerville Old Face", serif;
    font-weight: normal;

    text-shadow: none;
}

.recommended-title {
    position: relative;
    z-index: 1;
}

.recommended-title::before {
    content: "";
    position: absolute;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: 600px;   /* adjust size here */
    height: 140px;  /* adjust size here */

    background-image: url("https://media.discordapp.net/attachments/1503446714239946843/1504111091347886100/tree-removebg-preview.png?ex=6a05cc1d&is=6a047a9d&hm=c679bc08338c4a23cc1f4e4db4df61617be40b146ad85794892428d0d8186e14&=&format=webp&quality=lossless&width=625&height=625");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    z-index: -1;
    opacity: 0.7;
}

.viewing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.view-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    transition: transform 0.3s ease;
}

.view-card:hover {
    transform: scale(1.03);
}

.view-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.view-card h3 {
    font-size: 28px;
    margin: 18px 18px 10px;

    font-family: "Baskerville Old Face", serif;
    font-weight: normal;

    text-shadow: none;
}

.view-card p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 18px 20px;

    color: #cccccc;

    font-family: "Baskerville Old Face", serif;

    text-shadow: none;
}





.view-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.why-felines-section {
    width: 1240px;
    margin: 60px auto;
    color: white;
    font-family: "Baskerville Old Face", serif;

    background-color: rgba(32, 22, 22, 0.85);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.why-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: normal;
}

.why-text {
    font-size: 20px;
    line-height: 1.8;
    color: #dddddd;
}

.facts-section {
    width: 1240px;
    margin: 60px auto;
    position: relative;

    display: block;
}

.facts-image {
    width: 100%;
    display: block;

    border-radius: 12px;
}

.facts-label {
    position: absolute;
    bottom: 25px;
    left: 25px;

    background: rgba(46, 125, 50, 0.85);

    color: white;

    padding: 14px 22px;

    font-size: 28px;

    font-family: "Baskerville Old Face", serif;

    border-radius: 10px;

    backdrop-filter: blur(4px);
}

.facts-section {
    width: 1240px;
    margin: 60px auto;
}

.facts-container {
    position: relative;
    cursor: pointer;
}

.facts-image {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.facts-label {
    position: absolute;
    bottom: 25px;
    left: 25px;

    background: rgba(46, 125, 50, 0.88);

    color: white;

    padding: 14px 22px;

    font-size: 28px;

    font-family: "Baskerville Old Face", serif;

    border-radius: 10px;

    backdrop-filter: blur(4px);
}

.facts-dropdown {
    max-height: 0;
    overflow: hidden;

    background: rgba(20,20,20,0.92);

    color: white;

    transition: max-height 0.6s ease, padding 0.4s ease;

    border-radius: 0 0 12px 12px;

    padding: 0 30px;

    font-family: "Baskerville Old Face", serif;
}

.facts-dropdown.active {
    max-height: 5000px;
    padding: 30px;
}

.facts-dropdown h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: normal;
}

.facts-dropdown p {
    font-size: 21px;
    line-height: 1.8;
    color: #dddddd;
}

/* ALL TITLES -> IMPACT */

.wild,
.cats,
.slide-title,
.third-title,
.recommended-title,
.why-title,
.facts-label,
.facts-dropdown h2,
.view-card h3,
header nav a {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 1px;
}

.wild,
.cats {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 2px;
}

/* SLIDE DARK OVERLAY */
.slide-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.45)
        );

    z-index: 1;
}

.slide-text {
    position: absolute;

    bottom: 80px;
    left: 60px;

    width: 700px;

    font-size: 42px;
    line-height: 1.3;

    color: white;

    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

    letter-spacing: 1px;

    z-index: 5;

    text-shadow:
        2px 2px 10px rgba(0,0,0,0.85);
}


