/* Custom styles for Klempířství Jan Černý */

/* Global styles */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Header styles */
header {
    transition: background-color 0.3s ease;
}

/* Mobile menu animation */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 500px;
}

/* Gallery styles */
.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #95A5A6;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-dot.active {
    background-color: #E74C3C;
}

/* FAQ styles */
.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-toggle.active i {
    transform: rotate(180deg);
}

.faq-content {
    transition: max-height 0.3s ease-in-out, padding 0.3s ease;
    max-height: 500px;
    overflow: hidden;
    padding: 1rem 1.5rem;
}

.faq-content.hidden {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    visibility: hidden;
}

/* Smooth hover transitions */
a {
    transition: all 0.3s ease;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes slideInFromBottom {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-in {
    animation: slideInFromBottom 0.5s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Custom gallery modal styles will be added here later */
