/* style.css */
html, body {
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f9f6f0;
}
::-webkit-scrollbar-thumb {
    background: #adc2a3;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4a5a41;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

/* Masonry Gallery Grid */
.gallery-grid {
    column-count: 1;
    column-gap: 1.5rem;
}
@media (min-width: 640px) {
    .gallery-grid { column-count: 2; }
}
@media (min-width: 1024px) {
    .gallery-grid { column-count: 3; }
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 0.75rem;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
    transform: scale(1.07);
}

/* Floating WhatsApp Notification */
.whatsapp-float {
    animation: float 3s ease-in-out infinite;
    z-index: 50;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Hero Background Parallax */
.bg-hero {
    background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.bg-overlay {
    background: linear-gradient(to bottom, rgba(50, 60, 45, 0.5), rgba(249, 246, 240, 1));
}

/* Smooth Icon Hover */
.icon-container {
    transition: all 0.3s ease;
}
.icon-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
