/* Basic Global Styles */
body {
    font-family: 'Merriweather', serif; /* Primary body font */
    color: #4A4A4A; /* Dark Grey for readability */
    margin: 0;
    line-height:  1.7; /* Slightly increase line height for better readability */
    letter-spacing: 0.02em; /* Add very subtle letter spacing */
    background-color:  linear-gradient(to bottom, #FEF5E7 0%, #FDFBF8 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif; /* Heading font */
    color: #A0522D; /* Sienna (Primary Accent) for headings */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.75em; }
h4 { font-size: 1.5em; }

a {
    color: #A0522D; /* Sienna for links */
    text-decoration: none; /* Remove underline by default */
}

a:hover {
    text-decoration: underline; /* Underline on hover for clarity */
}

.container {
    max-width: 1200px; /* Max width for content */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Add some padding on the sides */
}

/* Header Styles */
header {
    background-color: #A0522D; /* Sienna (Primary Accent) */
    color: #FEF5E7; /* Light Cream text */
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* Updated logo styles to handle text instead of images */
.logo h1 {
    font-family: 'Lora', serif;
    font-size: 1.8em; /* Adjust the size for a nice, prominent logo */
    color: #FEF5E7; /* Light Cream text for the logo */
    margin: 0;
}



header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: #FEF5E7; /* Light Cream for nav links */
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #FFA07A; /* Light Salmon on hover */
    text-decoration: none;
}

/* Footer Styles */
footer {
    background-color: #4A4A4A; /* Dark Grey for footer background */
    color: #FEF5E7; /* Light Cream text */
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Hero Section - General */
.hero-section {
    background-color: #FFA07A; /* Light Salmon */
    color: #A0522D; /* Sienna text for contrast */
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 30px;
}

/* Start of Hero Section CSS code to copy into style.css */

/* Hero Section - Two Column Layout */
.hero-section {
    background-color: #FFA07A; /* Light Salmon background for the whole section */
    padding: 60px 0; /* Padding for the entire section top/bottom */
    margin-bottom: 30px;
}

.hero-section .container {
    display: flex; /* Enable Flexbox for side-by-side layout */
    align-items: center; /* Vertically align items in the center */
    gap: 40px; /* Space between the content and image columns */
}

.hero-content {
    flex: 1; /* Allow content to grow and shrink */
    padding-right: 20px; /* Add some space if content is against image */
    color: #A0522D; /* Sienna text color for hero content */
    text-align: center;
}

.hero-content h2 {
    font-size: 3em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #A0522D; /* Explicitly set heading color */
}

.hero-content p {
    font-size: 1.2em;
    line-height: 1.5;
}

.hero-image {
    flex: 1; /* Allow image column to grow and shrink */
    display: flex; /* Use flex to center image if it's smaller */
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
}

.hero-image img {
    max-width: 100%; /* Ensure image doesn't overflow its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Slightly rounded corners for the image */
    box-shadow: 0 12px 24px rgba(0,0,0,0.2), 0 4px 8px rgba(0,0,0,0.15); /* Add a subtle shadow to the image */
}

/* Responsive Design for Hero Section */
@media (max-width: 992px) { /* On tablets and smaller screens */
    .hero-section .container {
        flex-direction: column; /* Stack content and image vertically */
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        padding-bottom: 30px; /* Add space below content when stacked */
    }

    .hero-content h2 {
        font-size: 2.5em;
    }

    .hero-image {
        width: 90%; /* Make image take up more width when stacked */
    }
}

@media (max-width: 576px) { /* On mobile phones */
    .hero-section {
        padding: 40px 0;
    }

    .hero-content h2 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .hero-image {
        width: 100%;
    }
}
/* End of Hero Section CSS code for style.css */
/* General Content Section Padding */
.welcome-message,
.what-we-offer,
.call-to-action,
.testimonials,
.payment-methods,
.contact-us-home,
.our-story-home {
    padding: 30px 0;
    margin-bottom: 20px;
}

/* Specific Section Styles */

.welcome-message {
    background-color: #FFF; /* White background for welcome text */
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
}

.welcome-message blockquote {
    font-style: italic;
    border-left: 5px solid #FFA07A; /* Light Salmon border */
    padding-left: 20px;
    margin: 20px 0;
    color: #A0522D; /* Sienna for blockquote text */
}

.what-we-offer h4 {
    color: #A0522D; /* Sienna */
    margin-top: 20px;
}

.what-we-offer ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
}

.what-we-offer ul li {
    background-color: #FFF;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.02);
}

.what-we-offer ul li ul { /* Nested list for course levels */
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.what-we-offer ul li ul li {
    background: none; /* No background for nested list items */
    box-shadow: none;
    padding: 5px 0 5px 15px; /* Adjust padding for nested items */
    margin-bottom: 5px;
    font-size: 0.95em;
    color: #555;
}

.call-to-action {
    text-align: center;
    background-color: #A0522D; /* Sienna background */
    color: #FEF5E7; /* Light Cream text */
    padding: 50px 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.call-to-action blockquote {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #FEF5E7; /* Light Cream */
    font-style: normal; /* Override italic for impactful quote */
}

.call-to-action .button {
    display: inline-block;
    background-color: #FFA07A; /* Light Salmon button */
    color: #A0522D; /* Sienna text for button */
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.call-to-action .button:hover {
    background-color: #FF8C68; /* Slightly darker salmon on hover */
    transform:  translateY(-5px); /* Make it lift a bit more */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Add a subtle shadow on hover */ /* Slight lift effect */
    text-decoration: none;
}

.testimonials {
    background-color: #FFF;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow:  0 10px 20px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.1);
}

.testimonial-item {
    background-color: #FEF5E7; /* Light Cream background for each testimonial */
    border-left: 5px solid #FFA07A; /* Light Salmon border */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-style: italic;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.08);
}

.testimonial-item p {
    margin-bottom: 10px;
    color: #4A4A4A; 
    
}

.testimonial-item cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: bold;
    color: #A0522D; /* Sienna for the name */
}

.payment-methods ul {
    list-style: disc; /* Use standard bullet points */
    padding-left: 20px;
}

.payment-methods ul li {
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-us-home ul {
    list-style: none;
    padding: 0;
}

.contact-us-home ul li {
    margin-bottom: 10px;
}

.contact-us-home ul li strong {
    color: #A0522D; /* Sienna for bold contact details */
}

.our-story-home blockquote {
    font-style: italic;
    border-left: 5px solid #FFA07A; /* Light Salmon border */
    padding-left: 20px;
    margin: 20px 0;
    color: #A0522D; /* Sienna for blockquote text */
}


/* Responsive Design - Basic */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        flex-direction: column;
        margin-top: 10px;
    }

    header nav ul li {
        margin: 5px 0;
    }

    .hero-section {
        padding: 50px 15px;
    }

    .hero-section h2 {
        font-size: 2em;
    }

    h1 { font-size: 2em; }
    h2 { font-size: 1.75em; }
    h3 { font-size: 1.5em; }
    h4 { font-size: 1.25em; }

    .welcome-message,
    .what-we-offer,
    .call-to-action,
    .testimonials,
    .payment-methods,
    .contact-us-home,
    .our-story-home {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .hero-section h2 {
        font-size: 1.8em;
    }
    .call-to-action blockquote {
        font-size: 1.2em;
    }
    .call-to-action .button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}/* General Page Title Hero for non-homepage sections */
.page-title-hero {
    background-color: #A0522D; /* Sienna */
    color: #FEF5E7; /* Light Cream text */
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 30px;
}

.page-title-hero h2 {
    color: #FEF5E7; /* Ensure heading is light cream */
    font-size: 2.8em;
    margin-bottom: 10px;
}

.page-title-hero p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
}

/* General styling for content sections on other pages */
.content-section {
    background-color: #FFF; /* White background for main content blocks */
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-bottom: 30px; /* Space between sections */
}

.content-section h3 {
    color: #A0522D; /* Sienna */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.content-section h3::after { /* Underline effect for section titles */
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FFA07A; /* Light Salmon */
    margin: 10px auto 0;
    border-radius: 2px;
}

.content-section ul {
    list-style: none;
    padding: 0;
}

.content-section ul li {
    margin-bottom: 10px;
    padding-left: 25px; /* Space for custom bullet */
    position: relative;
}

.content-section ul li::before {
    content: '✓'; /* Custom bullet point */
    color: #FFA07A; /* Light Salmon color for bullet */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.content-section blockquote {
    font-style: italic;
    border-left: 5px solid #FFA07A; /* Light Salmon border */
    padding-left: 20px;
    margin: 20px 0;
    color: #A0522D; /* Sienna for blockquote text */
}

/* Specific adjustment for "Why Choose Us" list to align checkmarks */
.why-choose-us ul li {
    padding-left: 25px; /* Ensure consistency */
}

/* Responsive adjustments for other pages */
@media (max-width: 768px) {
    .page-title-hero {
        padding: 40px 15px;
    }

    .page-title-hero h2 {
        font-size: 2.2em;
    }

    .content-section {
        padding: 30px 15px;
        margin-bottom: 20px;
    }

    .content-section h3 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
}/* Specific styles for Courses Page */

/* Individual Course Level Blocks */
.course-level-block {
    background-color: #FEF5E7; /* Light Cream background */
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #F0E6D2; /* Subtle border */
}

.course-level-block h4 {
    color: #A0522D; /* Sienna for level titles */
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left; /* Align h4 to left */
}

.course-level-block p {
    margin-bottom: 15px;
}

.course-level-block ul {
    list-style: none; /* Remove default bullet */
    padding: 0;
    margin-left: 0;
}

.course-level-block ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #4A4A4A;
}

.course-level-block ul li::before {
    content: '•'; /* Simple round bullet for course details */
    color: #FFA07A; /* Light Salmon color */
    font-size: 1.5em; /* Make bullet slightly larger */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px; /* Adjust vertical position */
}

.course-level-block blockquote {
    background-color: #FFF; /* White background for quotes within course blocks */
    border-left-color: #A0522D; /* Sienna border for blockquotes */
    padding: 15px 20px;
    margin: 20px 0 0; /* Adjust margin */
    border-radius: 5px;
    font-style: italic;
    color: #4A4A4A;
}

/* Adjust for Class Schedule list */
.class-schedule ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.class-schedule ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-left: 0; /* Remove padding if any from .content-section ul li */
}

.class-schedule ul li::before {
    content: ''; /* Remove custom bullet */
}

/* Adjust for "Who These Courses Are For" list */
.courses-for-who ul {
    list-style: disc; /* Use default bullet points */
    padding-left: 20px;
    margin-left: 0;
}

.courses-for-who ul li {
    padding-left: 0; /* Remove custom padding */
}

.courses-for-who ul li::before {
    content: ''; /* Remove custom bullet */
}

/* Responsive adjustments for Courses Page */
@media (max-width: 768px) {
    .course-level-block {
        padding: 20px 20px;
    }

    .course-level-block h4 {
        font-size: 1.4em;
    }

    .course-level-block ul li {
        font-size: 0.95em;
    }
}/* Specific styles for Enrollment Page */

.enrollment-form-section .google-form-embed {
    position: relative;
    overflow: hidden;
    /* Responsive aspect ratio for iframes */
    padding-top: 75%; /* Adjust this percentage based on your form's typical height-to-width ratio. 75% is a good starting point for a tall form. You can adjust this to make the form look better. */
}

.enrollment-form-section .google-form-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Adjust list styles for "What You're Signing Up For" to use checkmarks */
.what-youre-signing-up-for ul {
    list-style: none;
    padding: 0;
}

.what-youre-signing-up-for ul li {
    padding-left: 25px; /* Space for custom bullet */
    position: relative;
    margin-bottom: 10px;
}

.what-youre-signing-up-for ul li::before {
    content: '✓'; /* Checkmark bullet */
    color: #FFA07A; /* Light Salmon color for bullet */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive adjustments for Enrollment Page */
@media (max-width: 768px) {
    .enrollment-form-section .google-form-embed {
        padding-top: 100%; /* Make form relatively taller on smaller screens if needed */
    }
}/* Specific styles for Contact Us Page */

.contact-details ul,
.social-media-find-us ul,
.office-hours ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
}

.contact-details ul li,
.office-hours ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    text-align: center; /* Center these list items */
}

.contact-details ul li strong,
.office-hours ul li strong {
    color: #A0522D; /* Sienna for labels */
}

.contact-details ul li a {
    color: #4A4A4A; /* Dark grey for direct contact links */
    text-decoration: underline; /* Always underline for clarity of being a link */
}

.contact-details ul li a:hover {
    color: #FFA07A; /* Light Salmon on hover */
}

.social-links {
    display: flex;
    flex-direction: column; /* Stack social links vertically */
    align-items: center; /* Center social links */
    margin-top: 20px;
}

.social-links li {
    margin-bottom: 15px;
}

.social-links li a {
    background-color: #FFA07A; /* Light Salmon button background */
    color: #A0522D; /* Sienna text */
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block; /* Allows padding and transformation */
    min-width: 250px; /* Give social buttons a consistent width */
    text-align: center;
}

.social-links li a:hover {
    background-color: #FF8C68; /* Slightly darker salmon on hover */
    transform: translateY(-2px);
}

/* Adjust blockquote for social media section */
.social-media-find-us blockquote {
    margin-top: 30px;
}

/* Responsive adjustments for Contact Us Page */
@media (max-width: 768px) {
    .contact-details ul li,
    .office-hours ul li {
        font-size: 1em;
    }

    .social-links li a {
        min-width: unset; /* Remove min-width on smaller screens */
        width: 100%; /* Take full width on smaller screens */
        box-sizing: border-box; /* Include padding in width */
    }
}
/* Specific styles for Rules and Regulations section */
.rules-and-regs h4 {
    color: #A0522D; /* Sienna */
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
    text-align: left;
}

.rules-and-regs ul {
    list-style: disc; /* Use a standard disc bullet */
    padding-left: 20px;
}

.rules-and-regs ul li {
    margin-bottom: 8px;
    padding-left: 0;
    font-size: 1em;
}

.rules-and-regs ul li::before {
    content: ''; /* Remove the checkmark bullet for this section */
}
/* Style for the logo container */
.logo {
    display: flex;
    align-items: center; /* This will vertically align the logo and flag */
    gap: 15px; /* Adds space between the logo and the flag */
}

/* Style for the school logo itself */
.logo img:first-child {
    height: 50px; /* Adjust as needed */
}

/* Style for the Spanish Flag */
.spanish-flag {
    height: 30px; /* Adjust the size of the flag */
    width: auto;
}