/* 
  Custom overrides and specific styling for El Platanal
  Note: Most layout is handled by Tailwind utility classes.
*/

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fffdf9;
}
::-webkit-scrollbar-thumb {
    background: #d1fae5;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6ee7b7;
}

/* Image hover zoom effect */
.img-zoom-container {
    overflow: hidden;
}
.img-zoom-container img {
    transition: transform 0.5s ease;
}
.img-zoom-container:hover img {
    transform: scale(1.05);
}

/* Button Hover Lift */
.btn-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.2);
}

/* Form Focus Ring */
input:focus, textarea:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 4px #d1fae5;
}
