@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Dancing+Script:wght@400;700&display=swap');

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(252, 245, 229, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #FF7F50, #B19CD9);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #B19CD9, #FF7F50);
}

/* Custom selections */
::selection {
    background: rgba(255, 127, 80, 0.3);
    color: #2D3748;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom font classes */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-script {
    font-family: 'Dancing Script', cursive;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* Gradient text animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Custom button hover effects */
.btn-romantic {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-romantic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-romantic:hover::before {
    left: 100%;
}
/* Image hover effect */
.img-romantic {
    transition: all 0.3s ease;
    filter: brightness(0.95) contrast(1.1);
}

.img-romantic:hover {
    filter: brightness(1.05) contrast(1.05);
    transform: scale(1.02);
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .img-romantic {
        width: 16rem !important;
        height: 16rem !important;
    }
}

@media (max-width: 640px) {
    .img-romantic {
        width: 12rem !important;
        height: 12rem !important;
    }
}
/* Background pattern */
.bg-romantic-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 127, 80, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(177, 156, 217, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
/* Heart pulse animation */
@keyframes heart-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.heart-pulse {
    animation: heart-pulse 2s ease-in-out infinite;
}

/* RSVP Form Styles */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hide radio inputs visually but keep accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
