/* =========================================================
   HERO CARD
   ========================================================= */

.hero-card {
    max-width: 850px;
    width: 100%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(18px);
    border-radius: 35px;
    padding: 70px 50px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 20px 50px rgba(130, 90, 180, 0.12);
    position: relative;
    overflow: hidden;
}

/* Decorative shapes */
.hero-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: rgba(233, 214, 255, 0.5);
    border-radius: 50%;
}

.hero-card::after {
    content: "✿";
    position: absolute;
    bottom: 25px;
    right: 35px;
    font-size: 2rem;
    color: rgba(170, 130, 220, 0.45);
}

/* =========================================================
   TEXT
   ========================================================= */

.subtitle {
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #b08acb;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: #6c4f8d;
    margin-bottom: 20px;
}

.script-text {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #c295d8;
    margin-top: 10px;
}

.description {
    margin-top: 25px;
    font-size: 1rem;
    line-height: 1.8;
    color: #7d6c91;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   MINI CARDS (Photos / Videos / Stories)
   ========================================================= */

.bottom-cards {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mini-card {
    width: 140px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(to bottom right, #f8eeff, #ead8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8d68af;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(160, 130, 200, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(130, 90, 180, 0.16);
}