@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #F3115B;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d00a4d;
}

/* Glassmorphism */


.glass-dark {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Swiper Adjustments */
.swiper-pagination-bullet {
    background: #F3115B !important;
}

/* Modal Animations */
.modal-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Pulse Glow */
.pulse-glow {
    box-shadow: 0 0 0 0 rgba(243, 17, 91, 0.7);
    animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 17, 91, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(243, 17, 91, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 17, 91, 0); }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 0.75rem;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


