/* CSS Variables for MissFoofy's Pink Blingy Theme */
:root {
    --primary-pink: #ff69b4;
    --hot-pink: #ff1493;
    --light-pink: #ffb6c1;
    --pale-pink: #ffc0cb;
    --sparkle-gold: #ffd700;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --background-light: #fff5f7;
    --background-soft: #ffe0e6;
    --border-pink: #ffb6c1;
    --shadow: 0 4px 20px rgba(255, 105, 180, 0.2);
    --glow: 0 0 20px rgba(255, 105, 180, 0.4);
    --transition: all 0.3s ease;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--hot-pink);
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--primary-pink);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.8rem;
    color: var(--hot-pink);
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.logo-sparkle {
    animation: sparkle 2s infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-pink);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hot-pink), var(--light-pink));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--hot-pink);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background-soft) 0%, var(--background-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sparkle-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 192, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--light-pink), var(--pale-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: var(--glow);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero h1 {
    margin-bottom: 1rem;
}

.hero .tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Newsletter & Contact Forms */
.newsletter-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 2rem auto;
    text-align: center;
    border: 2px solid var(--border-pink);
    position: relative;
    overflow: hidden;
}

.newsletter-form h3 {
    color: var(--hot-pink);
    margin-bottom: 0.5rem;
    position: relative;
}

.newsletter-form p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.form-group input, .form-control input, .form-control textarea {
    flex: 1;
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-pink);
    border-radius: 25px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

.form-control {
    margin-bottom: 1.5rem;
}

.form-control label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-control input, .form-control textarea {
    border-radius: 8px;
}
.form-control textarea {
    resize: vertical;
}


.form-group input:focus, .form-control input:focus, .form-control textarea:focus {
    outline: none;
    border-color: var(--hot-pink);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.btn {
    background: linear-gradient(135deg, var(--hot-pink), var(--primary-pink));
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    position: relative;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    background: linear-gradient(135deg, var(--primary-pink), var(--hot-pink));
}

.btn::after {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}


/* Content Sections */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-pink), var(--pale-pink));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: var(--glow);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    animation: sparkle 2s infinite;
}

.about-image::after {
    content: '💖';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

/* Reflections/Blog Cards */
.reflections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reflection-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.reflection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hot-pink), var(--light-pink), var(--sparkle-gold));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.reflection-card:hover::before {
    transform: translateX(0);
}

.reflection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    border-color: var(--border-pink);
}

.reflection-date {
    font-size: 0.85rem;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.reflection-card h3 {
    color: var(--hot-pink);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--background-soft);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--border-pink);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-pink);
}

/* Animations */
@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.2) rotate(180deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(20px) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) rotate(360deg);
    }
}

@keyframes explodeSparkle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0);
        opacity: 1;
    }
    100% {
        transform: 
            translate(-50%, -50%) 
            rotate(var(--angle)) 
            translateX(var(--distance))
            scale(1.5);
        opacity: 0;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 50px rgba(255, 105, 180, 0.8);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(255, 105, 180, 1);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow);
        min-height: 100vh;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }

    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
      font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        height: 300px;
    }

    .form-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Accessibility */
:focus {
    outline: 3px solid var(--hot-pink);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}