/* hero section - background */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: clip;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    color: white;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-name {
    display: block;
    font-size: 3.5rem;
    color: #ffd700;
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Fallback for Font Awesome icon */
.hero-scroll i.fas.fa-heart::before {
    content: "♥";
    display: flex;
    font-size: 2.5rem;
    color: white;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-img {
    width: 18rem;
}

.placeholder-photo {
    width: 360px;
    height: 480px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.placeholder-photo i {
    font-size: 3rem;
    margin-bottom: 1rem;
}