@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@700&display=swap');

:root {
    --primary-red: #cc0000;
    --text-white: #f2f2f1;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-red);
    color: var(--text-white);
    overflow-x: hidden;
    margin: 0;
}

.cursive {
    font-family: 'Dancing Script', cursive;
}

/* Glass Buttons */
.glass-button {
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.3);
    background: #ffffff;
}

/* Social Icons */
.social-icon {
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    opacity: 1;
}

/* WhatsApp Pulse */
#whatsapp-icon-wrapper {
    animation: pulse 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Background & Overlays */
.bg-overlay {
    background: linear-gradient(180deg, rgba(204, 0, 0, 0.3) 0%, rgba(204, 0, 0, 1) 100%);
}

.subject-image {
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* New Arrival Cards */
.arrival-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.arrival-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}