/* =========================================
   BASE STYLES & VARIABLES
========================================= */
:root {
    --pink-light: #ffb6c1;
    --pink-main: #ff1493;
    --pink-deep: #c71585;
    --pink-hot: #ff69b4;
    --purple-light: #dda0dd;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --bg-color: #fff0f5; /* LavenderBlush */
    --white: #ffffff;
    
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--pink-main);
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px var(--pink-light);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.text-pink {
    color: var(--pink-hot);
}

/* =========================================
   UTILITIES & COMPONENTS
========================================= */
.section-padding {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.1);
    margin: 2rem 5%;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-hot), var(--pink-main));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--pink-main);
    border: 2px solid var(--pink-main);
}

.btn-secondary:hover {
    background: var(--pink-light);
    color: var(--white);
    border-color: var(--pink-light);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--pink-light);
    color: var(--pink-deep);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* =========================================
   BACKGROUND EFFECTS (Blobs)
========================================= */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.5;
    animation: drift 20s infinite alternate ease-in-out;
}

.pink-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--pink-hot);
    top: -100px;
    left: -100px;
}

.pink-blob-2 {
    width: 500px;
    height: 500px;
    background: var(--pink-light);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.purple-blob {
    width: 300px;
    height: 300px;
    background: var(--purple-light);
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* =========================================
   NAVIGATION
========================================= */
.glass-nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.15);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--pink-hot);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--pink-hot);
}

.nav-links a:hover::after {
    width: 100%;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, var(--pink-light), var(--pink-hot));
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
    animation: morphFrame 8s ease-in-out infinite alternate;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes morphFrame {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    33% { border-radius: 50% 50% 30% 70% / 70% 30% 50% 50%; }
    66% { border-radius: 70% 30% 50% 50% / 30% 70% 70% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    mask-image: radial-gradient(white, black);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--pink-main);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    left: -10%;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: -1.5s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.1);
    transition: var(--transition-bounce);
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--pink-light);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--pink-light);
    color: var(--pink-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

/* =========================================
   HOBBIES SECTION
========================================= */
.hobbies-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hobby-list {
    list-style: none;
    margin-top: 2rem;
}

.hobby-list li {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.hobby-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.15);
}

.hobbies-image-grid {
    position: relative;
    height: 500px;
}

.hobby-img {
    position: absolute;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
    object-fit: cover;
    transition: var(--transition-bounce);
}

.hover-float:hover {
    transform: translateY(-15px) rotate(-2deg);
    z-index: 10;
}

.img-large {
    width: 70%;
    height: 80%;
    top: 0;
    right: 0;
}

.img-small {
    width: 60%;
    height: 60%;
    bottom: 0;
    left: 0;
    border: 10px solid var(--white);
}

/* =========================================
   PETS SECTION (Marquee)
========================================= */
.pets {
    overflow: hidden;
}

.pets-marquee {
    width: 100vw;
    margin-left: -5%; /* Counteract glass-panel margin */
    background: var(--pink-hot);
    padding: 2rem 0;
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    gap: 3rem;
    padding-left: 3rem;
}

.pet-tag {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255,255,255,0.2);
    padding: 1rem 3rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.5rem)); }
}

/* =========================================
   FOOTER
========================================= */
.footer {
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-color), var(--pink-light));
    margin-top: 5rem;
}

.footer-content h2 {
    font-size: 3rem;
}

.footer-content p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.copyright {
    margin-top: 4rem;
    font-size: 1rem !important;
    color: var(--pink-deep) !important;
}

.wobble:hover {
    animation: wobble 1s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg) scale(1.05); }
    25% { transform: rotate(-3deg) scale(1.05); }
    50% { transform: rotate(3deg) scale(1.05); }
    75% { transform: rotate(-3deg) scale(1.05); }
}

/* =========================================
   ANIMATIONS & EFFECTS
========================================= */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Scroll Reveals */
.reveal-up { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease-out; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease-out; }
.reveal-in { opacity: 0; transform: scale(0.9); transition: all 0.8s ease-out; }

.active.reveal-up { opacity: 1; transform: translateY(0); }
.active.reveal-left { opacity: 1; transform: translateX(0); }
.active.reveal-right { opacity: 1; transform: translateX(0); }
.active.reveal-in { opacity: 1; transform: scale(1); }

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media screen and (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
    }

    .hero-content {
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .image-frame {
        max-width: 400px;
    }

    .hobbies-container {
        grid-template-columns: 1fr;
    }
    
    .hobbies-image-grid {
        margin-top: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links on mobile for simplicity, keep CTA */
    }
    
    .glass-nav {
        justify-content: space-between;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .section-padding {
        padding: 3rem 5%;
    }
}
