/* ================= FONTS ================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Poppins:wght@400;500&display=swap');

/* ================= VARIABLES ================= */
:root {
    --primary: #FF5A87;
    --secondary: #FF8BB1;
    --font-base: "Poppins", sans-serif;
    /* body/content text */
    --font-title: "Glacial Indifference",
        sans-serif;
    /* titles/headings */
    --dark: #2C3E50;
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ================= BODY ================= */
body {
    font-family: var(--font-base);
    background: linear-gradient(-45deg, #FFD1DC, #FFB6C1, #FF8BB1, #FFE3E8);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--dark);
    overflow-x: hidden;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10%;
    font-weight: 900;
    font-size: 2rem;
    position: sticky;
    top: 0;
    background: inherit;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.logo {
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-title);
    /* logo as title */
}

.logo:hover {
    color: var(--primary);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s;
    font-family: var(--font-base);
    /* nav links in body font */
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

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

.nav-links a:hover {
    color: var(--primary);
}

/* ================= HERO ================= */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    opacity: 0;
    animation: fadeInContent 1.5s forwards;
}

@keyframes fadeInContent {
    to {
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px;
    font-family: var(--font-title);
    /* hero title */
}

/* ================= CHOICE CARDS ================= */
.choice-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.choice-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
}

.choice-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 4px solid rgba(255, 90, 135, 0.5);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.choice-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 90, 135, 0.4);
    border-color: rgba(255, 90, 135, 0.8);
}

.choice-card button {
    margin-top: 15px;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    background: var(--primary);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-title);
    /* buttons as titles */
}

.choice-card button:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* ================= BLOBS ================= */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    z-index: 1;
}

.blob1 {
    width: 400px;
    height: 400px;
    background: #FF5A87;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite alternate;
}

.blob2 {
    width: 300px;
    height: 300px;
    background: #FF8BB1;
    bottom: -80px;
    right: -80px;
    animation: float 10s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 20px) rotate(20deg);
    }

    100% {
        transform: translate(-20px, 30px) rotate(-20deg);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .choice-card {
        width: 200px;
    }

    .choice-card img {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .choice-container {
        flex-direction: column;
        gap: 25px;
    }

    .choice-card {
        width: 150px;
    }

    .choice-card img {
        height: 150px;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
        font-size: 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ================= TITLES ================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
}

p,
li,
span,
a,
button,
body {
    font-family: var(--font-base);
}

