/* Custom Styles for HappilyWeds */

/* Import Google Fonts if needed */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Playfair Display', serif;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

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

/* Better focus styles */
:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* Animation for contact cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeInUp 0.5s ease-out;
}

/* Loading spinner */
.spinner-border.pink {
    color: var(--primary-pink);
}