/* Base Styles */
:root {
    --kiddiwinks-blue: #2a4ca5;
    --kiddiwinks-red: #e63946;
    --kiddiwinks-pink: #f48fb1;
    --kiddiwinks-yellow: #ffd166;
    --kiddiwinks-light-blue: #a8dadc;
}

body {
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Custom Container */
.container-custom {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .container-custom {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s;
    transform: translateY(0);
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: var(--kiddiwinks-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--kiddiwinks-blue);
}

.btn-secondary {
    background-color: var(--kiddiwinks-blue);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--kiddiwinks-red);
}

/* Card Styles */
.card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

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

/* Header Styles */
header.scrolled {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Mobile Menu */
#mobile-menu {
    display: none;
}

#mobile-menu.active {
    display: flex;
}

/* Testimonial Slider */
.testimonial-container {
    overflow: hidden;
}

.testimonial-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-lightbox .close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--kiddiwinks-blue);
    box-shadow: 0 0 0 3px rgba(42, 76, 165, 0.2);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4a5568;
}