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

    body {
        font-family: 'Georgia', serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%23fd5"/><stop offset="1" stop-color="%23fc6d26"/></radialGradient></defs><g opacity="0.4"><circle fill="url(%23a)" cx="200" cy="200" r="100"/><circle fill="url(%23a)" cx="800" cy="800" r="150"/><circle fill="url(%23a)" cx="400" cy="600" r="80"/><circle fill="url(%23a)" cx="700" cy="300" r="120"/></g></svg>');
        animation: float 20s ease-in-out infinite;
    }

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

    .hero-content {
        text-align: center;
        color: white;
        z-index: 2;
        position: relative;
    }

    .hero h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
        animation: fadeInUp 2s ease;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero p {
        font-size: 1.5rem;
        animation: fadeInUp 2s ease 0.5s both;
        opacity: 0.9;
    }

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

    /* Navigation */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem;
        transition: all 0.3s ease;
    }

    .nav.scrolled {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }

    .nav ul {
        display: flex;
        justify-content: center;
        list-style: none;
    }

    .nav li {
        margin: 0 2rem;
    }

    .nav a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav.scrolled a {
        color: #333;
    }

    .nav a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #ff6b9d;
        transition: width 0.3s ease;
    }

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

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

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

    .section-title {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 3rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    /* Love Story Section */
    .love-story {
        background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    }

    .story-timeline {
        position: relative;
        padding: 2rem 0;
    }

    .story-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(to bottom, #ff6b9d, #c44569);
        transform: translateX(-50%);
    }

    .story-item {
        display: flex;
        align-items: center;
        margin: 3rem 0;
        position: relative;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.6s ease;
    }

    .story-item.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .story-item:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .story-content {
        flex: 1;
        background: white;
        padding: 2rem;
        border-radius: 15px;
        margin: 0 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        position: relative;
    }

    .story-content::before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border: 15px solid transparent;
    }

    .story-item:nth-child(odd) .story-content::before {
        right: -30px;
        border-left-color: white;
    }

    .story-item:nth-child(even) .story-content::before {
        left: -30px;
        border-right-color: white;
    }

    .story-date {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: #ff6b9d;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: bold;
        z-index: 2;
    }

    /* Poems Section */
    .poems {
        background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    }

    .poem-card {
        background: white;
        padding: 3rem;
        border-radius: 20px;
        margin: 2rem 0;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease;
    }

    .poem-card.animate {
        transform: translateY(0);
        opacity: 1;
    }

    .poem-card h3 {
        color: #c44569;
        margin-bottom: 2rem;
        font-size: 2rem;
        text-align: center;
    }

    .poem-text {
        font-style: italic;
        line-height: 2;
        font-size: 1.2rem;
        color: #555;
        text-align: center;
    }

    /* Gallery Section */
    .gallery {
        background: linear-gradient(135deg, #fce38a 0%, #f38181 100%);
    }

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

    .photo-item {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        transform: scale(0.9);
        opacity: 0;
        transition: all 0.6s ease;
        cursor: pointer;
    }

    .photo-item.animate {
        transform: scale(1);
        opacity: 1;
    }

    .photo-item:hover {
        transform: scale(1.05);
    }

    .photo-placeholder {
        width: 100%;
        height: 300px;
        background: linear-gradient(45deg, #ff9a9e, #fecfef);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .photo-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        display: flex;
        align-items: flex-end;
        padding: 2rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .photo-item:hover .photo-overlay {
        opacity: 1;
    }

    .photo-caption {
        color: white;
        font-size: 1.1rem;
    }

    /* Letters Section */
    .letters {
        background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
    }

    .letter-container {
        background: #fff8e7;
        padding: 3rem;
        margin: 2rem 0;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        position: relative;
        transform: rotateX(15deg) rotateY(-5deg);
        transition: all 0.6s ease;
    }

    .letter-container.animate {
        transform: rotateX(0) rotateY(0);
    }

    .letter-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            #ff6b9d 20px,
            #ff6b9d 21px
        );
        border-radius: 15px 15px 0 0;
    }

    .letter-date {
        text-align: right;
        color: #888;
        font-style: italic;
        margin-bottom: 2rem;
        margin-top: 1rem;
    }

    .letter-content {
        font-size: 1.2rem;
        line-height: 2;
        color: #333;
        margin-top: 2rem;
    }

    .letter-signature {
        text-align: right;
        font-style: italic;
        color: #c44569;
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    /* Quotes Section */
    .quotes {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .quote-card {
        text-align: center;
        padding: 3rem;
        margin: 2rem 0;
        position: relative;
        transform: scale(0.8);
        opacity: 0;
        transition: all 0.6s ease;
    }

    .quote-card.animate {
        transform: scale(1);
        opacity: 1;
    }

    .quote-text {
        font-size: 2rem;
        font-style: italic;
        margin-bottom: 1rem;
        position: relative;
    }

    .quote-text::before,
    .quote-text::after {
        content: '"';
        font-size: 3rem;
        color: rgba(255,255,255,0.3);
    }

    .quote-author {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.8);
    }

    /* Footer */
    .footer {
        background: #2c3e50;
        color: white;
        text-align: center;
        padding: 3rem 0;
    }

    .hearts {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1000;
    }

    .heart {
        position: absolute;
        color: #ff6b9d;
        font-size: 1rem;
        animation: heartFall linear infinite;
        opacity: 0.7;
    }

    @keyframes heartFall {
        0% {
            transform: translateY(-100vh) rotate(0deg);
            opacity: 1;
        }
        100% {
            transform: translateY(100vh) rotate(360deg);
            opacity: 0;
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero h1 { font-size: 2.5rem; }
        .hero p { font-size: 1.2rem; }
        .section-title { font-size: 2rem; }
        .story-timeline::before { left: 20px; }
        .story-item { flex-direction: column !important; }
        .story-content { margin: 1rem; }
        .story-date { position: relative; left: auto; top: auto; transform: none; margin: 1rem 0; }
        
        .nav ul { 
            display: none; 
            flex-direction: column; 
            text-align: center; 
        }
        
        .nav li { margin: 0.5rem 0; }
        .photo-grid { grid-template-columns: 1fr; }
    }