/* Wedding-specific styles */

/* Hello Pin Wrapper - Controls Pinning */
.hello-pin-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hello, We are Lima Bean Section Styles */
.hello-section {
    width: 100%;
    background: #f8f9fa;
    padding: 4rem 0;
}

.hello-content {
    text-align: center;
}

.animated-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 600;
    line-height: 0.9;
    color: var(--charcoal);
    margin-bottom: 3rem;
    word-spacing: -0.2em;
}

.title-line {
    display: block;
    margin-bottom: 0.2em;
}

.word {
    display: inline-block;
    margin-right: 0.3em;
    opacity: 0;
    transform: translateY(50px);
    filter: blur(0px);
}

.signature-word {
    color: var(--lima-bean-green);
}

.hello-text-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hello-text-box {
    background: var(--lima-bean-green);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0px);
    filter: blur(0px);
    text-align: center;
}

.hello-text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.hello-text-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    margin: 0;
}

.hello-text-box p {
    display: none;
}

/* Film Strip Gallery Styles */
.hello-film-strip {
    margin-top: 4rem;
    height: 200px;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: visible;
    z-index: 1;
    opacity: 1;
    transform: translateY(0px);
    filter: blur(0px);
}

.film-strip-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.film-strip-container {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scrollLeft 34s linear infinite;
    width: max-content;
}

.film-strip-container.paused {
    animation-play-state: paused;
}

.film-photo {
    flex: 0 0 auto;
    height: 150px;
    width: 200px;
    margin-right: 30px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: transform 0.3s ease, z-index 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

@media (hover: hover) {
    .film-photo:hover {
        transform: scale(2.6);
        z-index: 100;
        box-shadow: 0 20px 40px rgba(141, 184, 50, 0.4);
        border: 2px solid #8db832;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
    }
    
    .film-strip-wrapper:hover {
        overflow: visible;
        z-index: 50;
    }
    
    .hello-film-strip:has(.film-photo:hover) {
        overflow: visible;
        z-index: 50;
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-230px * 10));
    }
}

/* Packages CTA Button */
.packages-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hello-film-strip {
        height: 150px;
    }
    
    .film-photo {
        height: 120px;
        width: 160px;
        margin-right: 20px;
    }
    
    .animated-title {
        font-size: clamp(2rem, 8vw, 4rem);
        line-height: 1.2;
        white-space: normal;
    }
    
    .hello-text-boxes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hello-text-box {
        padding: 2rem 1.5rem;
    }
    
    .hello-text-box h3 {
        font-size: 1.5rem;
    }
    
    .hello-text-box p {
        font-size: 1rem;
    }
}