/* Custom styles for Westdale Caffe */

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

/* Decorative floating circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: float 8s ease-in-out infinite;
}

.c1 {
    width: 300px;
    height: 300px;
    background: #ffcca8;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.c2 {
    width: 200px;
    height: 200px;
    background: #fad0d9;
    top: 60%;
    right: -3%;
    animation-delay: -2s;
}

.c3 {
    width: 150px;
    height: 150px;
    background: #fff8f6;
    bottom: 15%;
    left: 10%;
    animation-delay: -4s;
}

.c4 {
    width: 100px;
    height: 100px;
    background: #fad0d9;
    top: 25%;
    right: 15%;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(3deg);
    }
    66% {
        transform: translateY(10px) rotate(-2deg);
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile menu link styles */
.mobile-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #fce7eb;
    font-size: 1.05rem;
}

.mobile-link:last-child {
    border-bottom: none;
}

/* Navbar scrolled state */
.navbar-scrolled {
    background: rgba(255, 248, 246, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(161, 24, 56, 0.08);
}

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

::-webkit-scrollbar-track {
    background: #fff8f6;
}

::-webkit-scrollbar-thumb {
    background: #fad0d9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f5a5b8;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #a11838;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .decorative-circle {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal {
        transition: none;
    }
}
