* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #FFB6C1;
    --hot-pink: #FF69B4;
    --blush: #FFC0CB;
    --cream: #FFF5EE;
    --gold: #FFD700;
    --dark: #2c2c2c;
    --gray: #8B8B8B;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Fixed Logo Overlay - Loewe Style */
.logo-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.brand-logo {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--hot-pink);
    text-transform: uppercase;
    opacity: 0.12;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.2rem 2rem;
    border-bottom: 2px solid var(--pink);
    box-shadow: 0 2px 20px rgba(255, 182, 193, 0.1);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hot-pink);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--hot-pink);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '✨';
    position: absolute;
    font-size: 10rem;
    opacity: 0.05;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero-subtitle {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--hot-pink);
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--hot-pink);
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
    background: #FF1493;
}

.hero-decoration {
    position: absolute;
    bottom: 10%;
    right: 10%;
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
}

.timeline-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.timeline-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
}

.timeline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.timeline-card:hover .timeline-img {
    transform: scale(1.1);
}

.timeline-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 105, 180, 0.95), transparent);
    color: white;
    padding: 2.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.timeline-card:hover .timeline-overlay {
    transform: translateY(0);
}

.timeline-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.timeline-overlay p {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    padding: 2rem;
}

.about-tagline {
    font-size: 1.3rem;
    color: var(--hot-pink);
    margin: 1rem 0 2rem;
    font-weight: 600;
    font-style: italic;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark);
    margin-top: 2rem;
    letter-spacing: 0.02em;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--hot-pink);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-top: 0.5rem;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.about-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
}

.star-accent {
    font-size: 3rem;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Social Section */
.social-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);
}

.social-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.social-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.social-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.social-info {
    padding: 2rem;
}

.social-tagline {
    font-size: 1.2rem;
    color: var(--hot-pink);
    margin: 1rem 0 2rem;
    font-weight: 600;
    font-style: italic;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: var(--dark);
    padding: 1.8rem;
    background: white;
    border: 2px solid var(--pink);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
}

.social-link:hover {
    background: var(--hot-pink);
    color: white;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

.social-icon {
    font-size: 2rem;
}

.social-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.social-handle {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.social-desc {
    font-size: 0.85rem;
    opacity: 0.8;
}

.social-link:hover .social-desc {
    opacity: 1;
}

/* Footer */
.footer {
    background: var(--dark);
    color: #ffffff;
    text-align: center;
    padding: 2.5rem;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-logo {
        font-size: 2.5rem;
    }
    
    .nav-content {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .about-content,
    .social-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-form-container {
        max-width: 100%;
    }
    
    .story-form-wrapper {
        border-radius: 20px;
    }
    
    .story-form-overlay {
        padding: 1.5rem 1rem;
    }
    
    .story-title h3 {
        font-size: 1.2rem;
    }
    
    .checkbox-row {
        grid-template-columns: 1fr;
    }
    
    .story-checkbox {
        font-size: 0.7rem;
    }
    
    .about-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-section,
    .about-section,
    .social-section,
    .join-section {
        padding: 4rem 1.5rem;
    }
}


/* Join Section with Instagram Story Style Form */
.join-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.join-container {
    max-width: 1400px;
    margin: 0 auto;
}

.join-header {
    text-align: center;
    margin-bottom: 4rem;
}

.join-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

.story-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.story-form-wrapper {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.story-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.story-form-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-form-overlay::-webkit-scrollbar {
    width: 6px;
}

.story-form-overlay::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.story-form-overlay::-webkit-scrollbar-thumb {
    background: var(--hot-pink);
    border-radius: 10px;
}

.story-title {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 3px solid var(--pink);
}

.story-title h3 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.story-title p {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--hot-pink);
    transition: all 0.3s ease;
}

.story-name-field {
    background: linear-gradient(135deg, var(--hot-pink) 0%, #FF1493 100%);
    border: 3px solid white;
}

.story-name-field label {
    color: white !important;
}

.story-name-field input {
    border: 2px solid white;
    font-weight: 600;
}

.story-checkbox-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.story-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--cream) 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.story-checkbox:hover {
    border-color: var(--hot-pink);
    transform: scale(1.05);
}

.story-checkbox input[type="checkbox"] {
    display: none;
}

.star-check {
    font-size: 1.2rem;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.story-checkbox input[type="checkbox"]:checked ~ .star-check {
    opacity: 1;
    animation: starPop 0.3s ease;
}

@keyframes starPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3) rotate(15deg); }
}

.story-checkbox input[type="checkbox"]:checked ~ span:last-child {
    color: var(--hot-pink);
}

.story-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-question {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.story-question label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.story-question input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--pink);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
}

.story-question input:focus {
    outline: none;
    border-color: var(--hot-pink);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.2);
}

.story-submit {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--hot-pink) 0%, #FF1493 100%);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

.story-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
}

.story-submit:active {
    transform: translateY(0);
}

.story-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--hot-pink) 0%, #FF1493 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.success-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.success-content p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.success-instruction {
    font-size: 0.95rem !important;
    margin-top: 1.5rem !important;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.retry-button {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--hot-pink);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.retry-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.paste-reminder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: slideIn 0.5s ease;
}

.reminder-content {
    text-align: center;
    color: var(--dark);
    padding: 2rem;
    max-width: 90%;
}

.reminder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.reminder-text {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.reminder-instruction {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.reminder-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.tap-icon {
    font-size: 3rem;
    animation: tap 1s ease infinite;
}

@keyframes tap {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.paste-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
