:root {
    --primary-color: #ffafbd;
    --secondary-color: #ffc3a0;
    --accent-color: #ff6b6b;
    --text-color: #2c3e50;
    --bg-color: #fdfbfb;
    --card-bg: rgba(255, 255, 255, 0.25);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    color: var(--text-color);
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 50px;
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 2px;
}

header ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

header a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

header a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Using one of the provided images as hero background or just a nice gradient/pattern. 
       Let's use a nice gradient overlay + maybe an image if we knew which one was landscape. 
       For now, a beautiful abstract gradient */
    background: radial-gradient(circle at 50% 50%, #fce4ec, #f8bbd0);
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections */
section {
    padding: 100px 50px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* About Overlay */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.1);
    /* For parallax effect initialization */
}

/* Kitten Section */
.kitten-section {
    background: #fff0f5;
    text-align: center;
}

.floating-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: #888;
}

/* Gallery Masonry */
.gallery-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    /* Zoom effect */
}

/* Footer */
footer {
    text-align: center;
    padding: 50px;
    background: #fff;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }

    header {
        padding: 10px 20px;
    }

    .glass-nav {
        display: none;
        /* Simplify for mobile or add burger menu logic if needed, giving priority to visuals */
    }
}

/* Love Request Section */
.love-section {
    background: radial-gradient(circle at center, #ffd1dc, #fff0f5);
    text-align: center;
    overflow: visible;
}

.love-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 20px;
}

.love-interface {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.2);
    margin-top: 20px;
    position: relative;
}

.love-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 10;
}

.love-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.4);
}

.love-status {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    min-height: 1.5em;
}

/* Heart Explosion Particles */
.heart-particle {
    position: fixed;
    color: #e91e63;
    font-size: 20px;
    pointer-events: none;
    z-index: 9999;
}