* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif; 
    scroll-behavior: smooth;
    background-color: #fff9f9;
    color: #4a4a4a;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: white;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    margin-bottom: 15px;
    animation: fadeIn 2s ease-in;
}

.hero p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
    font-size: 1.5rem;
}

/* CONTENT */
.content-section {
    padding: 100px 5%;
}
.card {
    background: linear-gradient(135deg, #f3d6db, #e8bfc7);
    padding: 80px;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(150, 80, 100, 0.15);
    margin-top: -120px;
    position: relative;
}


/* Üstte çok hafif ışık efekti */
.card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,182,193,0.25) 0%, transparent 70%);
    pointer-events: none;
}

/* Yazı alanı */
.bio-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: auto;
}

/* Paragraf */
.bio-content p {
    line-height: 2;
    font-size: 1.15rem;
    color: #4a4a4a;
    text-align: center;
    letter-spacing: 0.4px;
}

/* İlk harf büyük romantik stil */
.bio-content p::first-letter {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ff758c;
    font-family: 'Dancing Script', cursive;
}

/* Hafif fade-in efekti */
.bio-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.info-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 300;
    position: fixed;
}

.info-text {
    position: absolute;
    top: 140%;
    left: 0;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);

    padding: 12px 18px;
    border-radius: 16px;

    font-size: 0.9rem;
    color: #555;
    white-space: nowrap;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.3s ease;
}

.info-container:hover .info-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.info-icon {
    width: 26px;
    height: 26px;
    border: 1.5px solid #ff758c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff758c;
    font-weight: bold;
    font-size: 14px;
}




/* MUSIC */
.music-player {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.music-player button {
    background: white;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.music-player button:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Responsive */
@media (max-width: 900px) {
    .card-layout {
        flex-direction: column;
    }
}
.fall-area {
    position: absolute;
    top: 40%;              /* başlığın alt bölgesi */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    pointer-events: none;
    overflow: visible;
}
.falling-photo {
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 18px;

    background-size: cover;
    background-position: center;

    /* Daha yumuşak çerçeve */
    border: 2px solid rgba(255, 255, 255, 0.6);

    /* Sert glow yerine soft gölge */
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.12);

    /* Fotoğrafı yumuşatma */
    filter: brightness(0.95) saturate(0.9) contrast(0.90);

    opacity: 5;
    animation: softDrop 5s ease forwards;
}


@keyframes softDrop {
    0% {
        transform: translateY(-100px) rotate(-10deg) scale(0.8);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    50% {
        transform: translateY(0px) rotate(5deg) scale(1);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(40px) rotate(-5deg);
        opacity: 0;
    }
}
/* LETTER başlangıçta gizli */
#letter-section {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
    pointer-events: none;
}

#letter-section.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* QUIZ */
.quiz-section {
    padding: 120px 5%;
    display: flex;
    justify-content: center;
}

.quiz-card {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.quiz-card h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.quiz-sub {
    color: #888;
    margin-bottom: 40px;
}

.question {
    display: none;
    animation: fadeIn 0.6s ease;
}

.question.active {
    display: block;
}

.question p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.question button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: white;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.question button:hover {
    transform: scale(1.03);
}
.runaway {
    position: relative;
}
.quiz-section {
    transition: 0.8s ease;
}

.quiz-section.hide {
    opacity: 0;
    transform: translateY(-40px);
    pointer-events: none;
}
.love-footer {
    margin-top: 120px;
    padding: 100px 20px;
    text-align: center;
position: relative;
    /* Yumuşak koyu mavi */
    background: linear-gradient(135deg, #1e2a38, #243447);

    color: white;
}

.footer-content h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.footer-content p {
    max-width: 500px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
}
.love-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -60px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #1e2a38);
}
html, body {
    overflow-x: hidden;
}

section {
    width: 100%;
}

.hero,
.quiz-section,
.content-section,
.love-footer {
    width: 100%;
}
.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.quiz-card h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.footer-content h3 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.bio-content p {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
}
@media (max-width: 1200px) {
    .card {
        padding: 60px 40px;
    }
}

@media (max-width: 900px) {
    .content-section {
        padding: 80px 20px;
    }

    .card {
        padding: 45px 25px;
        margin-top: -70px;
        border-radius: 30px;
    }

    .bio-content {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .card {
        padding: 35px 20px;
        margin-top: -50px;
    }
}
@media (max-width: 900px) {

    .quiz-section {
        padding: 80px 20px;
    }

    .quiz-card {
        padding: 40px 25px;
        border-radius: 25px;
    }

    .question p {
        font-size: 1rem;
    }

    .question button {
        font-size: 0.9rem;
        padding: 11px;
    }
}
@media (max-width: 900px) {
    .fall-area {
        width: 90%;
        height: 160px;
        top: 45%;
    }

    .falling-photo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 500px) {
    .fall-area {
        top: 48%;
        height: 140px;
    }

    .falling-photo {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 500px) {
    .music-player {
        top: 15px;
        right: 15px;
    }

    .info-container {
        top: 15px;
        left: 15px;
    }
}
@media (max-width: 900px) {
    .love-footer {
        padding: 80px 20px;
        margin-top: 80px;
    }

    .footer-content p {
        font-size: 0.95rem;
    }
}
