/* Custom styles */
html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
}

/* Custom color classes */
.bg-custom-red {
    background-color: #FF9999; /* Lighter pastel red */
}

.text-custom-red {
    color: #FF9999; /* Lighter pastel red */
}

.hover\:bg-custom-red:hover {
    background-color: #FF8080; /* Slightly darker shade of pastel red */
}

.hover\:text-custom-red:hover {
    color: #FF9999; /* Lighter pastel red */
}

.bg-custom-black {
    background-color: #000000;
}

.text-custom-black {
    color: #000000;
}

.bg-custom-white {
    background-color: #FFFFFF;
}

.text-custom-white {
    color: #FFFFFF;
}

/* Mobile menu styles */
#mobile-menu {
    display: none;
    transition: opacity 0.3s ease-out;
    opacity: 0;
}

#mobile-menu.show {
    display: block;
    opacity: 1;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Additional custom styles */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.transform {
    transition-property: transform;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Form styles */
input:focus, textarea:focus {
    outline: none;
    border-color: #FF9999;
}

/* Add any additional custom styles here */
