
/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
/* Text shadows */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.text-shadow-lg {
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}
/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Mobile First Approach */
@media (max-width: 767px) {
    /* Hero Section */
    .hero-section {
        height: 80vh !important;
    }

    .hero-section h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    .hero-section p {
        font-size: 1.1rem !important;
    }

    /* Navigation */
    custom-navbar {
        padding: 0.5rem 1rem !important;
    }

    /* Program Section */
    .flex-col.md\:flex-row {
        flex-direction: column !important;
    }

    .md\:w-1\/3, .md\:w-2\/3 {
        width: 100% !important;
    }

    /* Testimonials */
    .grid.md\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Pricing */
    #price .max-w-xl {
        width: 100% !important;
        padding: 1.5rem !important;
    }

    /* Modal */
    #registrationModal {
        align-items: flex-end !important;
    }

    #registrationModal > div {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 1rem 1rem 0 0 !important;
    }

    /* Utility Classes */
    .py-20 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .mb-16 {
        margin-bottom: 2rem !important;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .grid.md\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hero-section h1 {
        font-size: 4rem !important;
    }
}
/* Base Mobile Improvements */
.btn-primary {
    padding: 0.8rem 1.5rem !important;
    font-size: 1rem !important;
}

.section-title {
    font-size: 2.2rem !important;
}

/* Video Testimonials */
.aspect-w-16 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.aspect-w-16 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* Form Elements */
input, button {
    font-size: 1rem !important;
}
