/* Custom Styles for Hilltop Bakery */

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

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

::-webkit-scrollbar-track {
    background: #0F172A;
}

::-webkit-scrollbar-thumb {
    background: #34D399;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #10B981;
}

/* Base Typography adjustments */
body {
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

/* Ensure images don't overflow containers */
img {
    max-width: 100%;
    height: auto;
}

/* Animation Utilities (for scroll reveal) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Geometric Shapes (CSS only decoration) */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #34D399, #10B981);
}

/* Button Hover Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn-primary:hover::after {
    left: 100%;
}
