/* Custom styles for soundproofing website */
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
 
.page {
    display: block;
}
 
.page.hidden {
    display: none !important;
}
 
/* Smooth transitions */
button, a {
    transition: all 0.3s ease;
}
 
/* Hover effects for cards */
.hover\:border-red-600:hover {
    border-color: rgb(220, 38, 38) !important;
}
 
.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
 
/* Details/Summary styling */
details summary::-webkit-details-marker {
    display: none;
}
 
details[open] summary {
    color: rgb(220, 38, 38);
}
 
/* Gallery image hover effect */
.gallery-card:hover img {
    transform: scale(1.05);
}
 
.gallery-card img {
    transition: transform 0.3s ease;
}
 
/* Form focus styles */
input:focus, textarea:focus {
    outline: none;
    border-color: rgb(220, 38, 38);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
 
/* Pagination active state */
.pagination-active {
    background-color: rgb(220, 38, 38);
    color: white;
}
 
/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
 
/* Animation for page transitions */
.page {
    animation: fadeIn 0.3s ease-in;
}
 
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}