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

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #45b7d1;
    --purple: #9b59b6;
    --orange: #f39c12;
    --green: #2ecc71;
    --pink: #e91e63;
    --yellow: #f1c40f;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 25%, #4facfe 50%, #00f2fe 75%, #43e97b 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

/* Cursor follower */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--gradient-2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
}

.logo-text {
    background: var(--gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
    border-radius: 3px;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Catchphrase Animation */
.catchphrase {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    text-align: left;
}

.hey {
    display: inline-block;
    color: var(--white);
    margin-right: 0.3rem;
    animation: bounceIn 0.6s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hey-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.hey-2 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.hey-3 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.its-haylee {
    display: inline-block;
    background: var(--gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInRight 0.8s ease-out 0.8s;
    animation-fill-mode: both;
    margin-left: 0.5rem;
    text-shadow: none;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Add hover effect to individual heys */
.hey:hover {
    animation: wiggle 0.5s ease-in-out;
    cursor: pointer;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg) scale(1.1); }
    75% { transform: rotate(-5deg) scale(1.1); }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(255, 107, 107, 0.3);
}

.shape2 {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
    background: rgba(78, 205, 196, 0.3);
}

.shape3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
    background: rgba(69, 183, 209, 0.3);
}

.shape4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
    background: rgba(155, 89, 182, 0.3);
}

.shape5 {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 80%;
    animation-delay: 3s;
    background: rgba(243, 156, 18, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.highlight {
    background: var(--gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.wave {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-10deg); }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--light);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.profile-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.profile-circle {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-hover);
    animation: pulse 3s ease-in-out infinite;
}

.profile-inner {
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset var(--shadow);
}

.profile-text {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    background: var(--gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    animation: floatEmoji 4s ease-in-out infinite;
}

.emoji1 {
    top: -10px;
    right: 20px;
    animation-delay: 0s;
}

.emoji2 {
    bottom: 20px;
    left: -10px;
    animation-delay: 1s;
}

.emoji3 {
    top: 50px;
    left: -20px;
    animation-delay: 2s;
}

.emoji4 {
    bottom: 50px;
    right: -10px;
    animation-delay: 3s;
}

@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Section styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Poetry Preview Section */
.poetry-preview {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 6rem 0;
}

.poetry-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.poem-preview {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-hover);
    border-left: 6px solid;
    border-image: var(--gradient-2) 1;
    position: relative;
    overflow: hidden;
}

.poem-preview::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    font-family: 'Fredoka One', cursive;
    background: var(--gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    z-index: 1;
}

.poem-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.poem-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.poem-publication {
    color: #666;
    font-size: 0.9rem;
}

.poem-publication a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.poem-publication a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.poem-excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    border: none;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.poem-line {
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.poem-line:first-child {
    animation-delay: 0.3s;
}

.poem-line:last-child {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.poem-footer {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.read-more a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.read-more a::after {
    content: '✨';
    transition: transform 0.3s ease;
}

.read-more a:hover::after {
    transform: scale(1.2);
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.bio-container {
    max-width: 1000px;
    margin: 0 auto;
}

.bio-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.bio-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.headshot {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-hover);
    border: 6px solid var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.headshot:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: var(--gradient-2);
    opacity: 0.1;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

.bio-text {
    text-align: left;
}

.bio-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--dark);
}

.bio-details, .bio-fun {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: left;
}

.bio-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text {
    font-weight: 600;
    color: var(--dark);
}

/* What's Coming Section */
.whats-coming {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-1:hover { border-top: 4px solid var(--primary-color); }
.card-2:hover { border-top: 4px solid var(--secondary-color); }
.card-3:hover { border-top: 4px solid var(--accent-color); }

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.card p {
    color: #666;
    line-height: 1.6;
}



/* Notify Section */
.notify {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    text-align: center;
}

.notify-content {
    max-width: 600px;
    margin: 0 auto;
}

.notify-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark);
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.email-input::placeholder {
    color: #999;
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--gradient-2);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.social-preview {
    margin-top: 2rem;
}

.social-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Contact Section */
.contact {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    text-align: center;
}

.contact-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-4);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.heart {
    color: var(--primary-color);
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .catchphrase {
        text-align: center;
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 2rem;
    }
    
    .profile-container {
        width: 250px;
        height: 250px;
    }
    
    .profile-circle {
        width: 250px;
        height: 250px;
    }
    
    .profile-inner {
        width: 150px;
        height: 150px;
    }
    
    .profile-text {
        font-size: 3rem;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
    

    
    .form-group {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: 100%;
        max-width: 400px;
    }
    
    .poem-preview {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .poem-excerpt {
        font-size: 1.1rem;
    }
    
    .poem-preview::before {
        font-size: 6rem;
    }
    
    .bio-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .bio-text {
        text-align: center;
    }
    
    .headshot {
        width: 250px;
        height: 250px;
    }
    
    .image-decoration {
        width: 290px;
        height: 290px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .catchphrase {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
} 