/* Custom Styles for G&R'S Pictures & More */

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

/* Diagonal clip for hero */
.clip-diagonal {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Custom animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

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

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

::-webkit-scrollbar-thumb {
    background: #064e3b;
    border-radius: 5px;
}

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

/* Hover effects for gallery images */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clip-diagonal {
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    h1 {
        font-size: 3.5rem !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #d9f99d;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    nav,
    #contact-form,
    button {
        display: none;
    }
}
