@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600;700&family=Bebas+Neue&display=swap');

.font-display {
    font-family: 'Playfair Display', serif;
}

.font-bebas {
    font-family: 'Bebas Neue', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
}

.hero-gradient {
    background: linear-gradient(135deg, #01579b 0%, #0288d1 50%, #4fc3f7 100%);
}

.wave-divider {
    position: relative;
}

.wave-divider::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%23f8f3eb' d='M0,25 Q360,0 720,25 T1440,25 L1440,50 L0,50 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.scroll-smooth {
    scroll-behavior: smooth;
}
