/* Custom Styles for Wegner-Clements Services */

html {
    scroll-behavior: smooth;
}

body {
    /* Custom properties for consistency */
    --color-burgundy: #722F37;
    --color-burgundy-dark: #562329;
    --color-blush: #F4EAE6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F4EAE6;
}
::-webkit-scrollbar-thumb {
    background: #722F37;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #562329;
}

/* Typography Tweaks */
.font-serif {
    letter-spacing: -0.02em;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Hover Effects */
img {
    max-width: 100%;
    height: auto;
}

/* Form Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(114, 47, 55, 0.2);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

/* Specific layout adjustments for the asymmetric hero */
@media (min-width: 1024px) {
    .hero-img-main {
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    }
    .hero-img-accent {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}
