/* Wedding Package (weddingpackage.html) - Love Theme */

:root {
    --wedding-rose: #e83e8c;
    --wedding-rose-dark: #b62b67;
    --wedding-blush: #fff0f6;
    --wedding-ink: #1f2937;
}

.wedding-hero {
    background:
        linear-gradient(135deg, rgba(232,62,140,0.25) 0%, rgba(0,53,128,0.65) 55%, rgba(0,0,0,0.30) 100%),
        url('https://images.unsplash.com/photo-1639945506968-3dea2042c861?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
    background-attachment: fixed;
    padding: 110px 0 85px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.wedding-hero::before,
.wedding-hero::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.9;
}

.wedding-hero::before {
    top: -45%;
    right: -10%;
    background: radial-gradient(circle at 30% 30%, rgba(254,187,2,0.18), transparent 60%);
    animation: float 9s ease-in-out infinite;
}

.wedding-hero::after {
    bottom: -50%;
    left: -12%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.14), transparent 60%);
    animation: float 11s ease-in-out infinite;
}

.wedding-hero .container {
    position: relative;
    z-index: 2;
}

.love-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    font-weight: 700;
}

.love-pill i { color: #febb02; }

.wedding-title {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.6px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.25);
}

.wedding-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 740px;
}

.wedding-hero-card {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 22px 55px rgba(0,0,0,0.25);
    position: relative;
    transform: translateZ(0);
}

.wedding-hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.22) 40%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.85s ease;
    pointer-events: none;
}

.wedding-hero-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.6s ease;
    display: block;
}

.wedding-hero-card:hover img { transform: scale(1.08); }
.wedding-hero-card:hover::after { transform: translateX(120%); }

.wedding-hero-overlay {
    position: absolute;
    inset: auto 16px 16px 16px;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
}

.wedding-section-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--wedding-ink);
}

.wedding-soft {
    background: linear-gradient(135deg, #ffffff 0%, var(--wedding-blush) 100%);
}

.love-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.love-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,62,140,0.25);
    box-shadow: 0 24px 55px rgba(0,0,0,0.10);
}

.love-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--wedding-rose) 0%, var(--wedding-rose-dark) 100%);
    box-shadow: 0 12px 30px rgba(232,62,140,0.22);
}

.gallery-tile {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0b1b33;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transform: translateZ(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.gallery-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.62) 78%, rgba(0,0,0,0.72) 100%);
    z-index: 1;
}

.gallery-tile img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s ease;
    display: block;
}

.gallery-tile:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(0,0,0,0.18); }
.gallery-tile:hover img { transform: scale(1.10); }

.gallery-overlay {
    position: absolute;
    inset: auto 16px 16px 16px;
    z-index: 2;
    color: #fff;
}

.wedding-form-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 22px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

.wedding-form-header {
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(232,62,140,0.12) 0%, rgba(254,187,2,0.12) 100%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.wedding-form-body { padding: 22px; }

.map-embed {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 55px rgba(0,0,0,0.08);
    background: #fff;
}

.wedding-input {
    border: 2px solid #f0dbe7;
    border-radius: 12px;
    padding: 12px 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    background-color: #fff8fb;
}

.wedding-input:focus {
    border-color: var(--wedding-rose);
    box-shadow: 0 0 0 4px rgba(232,62,140,0.12);
    background-color: #fff;
}

.wedding-btn {
    background: linear-gradient(135deg, var(--wedding-rose) 0%, var(--wedding-rose-dark) 100%);
    border: none;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.3px;
    padding: 12px 18px;
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wedding-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(232,62,140,0.25);
    color: #fff;
}

.wedding-cta {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(232,62,140,0.85) 0%, rgba(0,53,128,0.90) 100%),
        url('https://images.unsplash.com/photo-1529636798458-92182e662485?q=80&w=1920&auto=format&fit=crop') center/cover;
}

.wedding-cta .container { position: relative; z-index: 2; }

@media (max-width: 991.98px) {
    .wedding-hero { background-attachment: scroll; padding: 90px 0 75px; }
    .wedding-title { font-size: 2.6rem; }
    .wedding-hero-card img { height: 300px; }
    .gallery-tile img { height: 240px; }
}
