﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/*a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}*/

/* Provide sufficient contrast against white background */
/*a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}*/

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
/*html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}*/

/* Sticky footer styles
-------------------------------------------------- */
/*html {
  position: relative;
  min-height: 100%;
}

body {*/
  /* Margin bottom by footer height */
  /*margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;*/ /* Vertically center the text there */
/*}*/

  /* --- Basic Styling & Reset --- */
        :root {
            --color-primary: #004d40; /* Deep Teal/Green for calm */
            --color-secondary: #ff7043; /* Bright Coral for CTAs */
            --color-light: #f4f6f8;
            --color-dark: #333;
            --font-main: 'Montserrat', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            color: var(--color-dark);
            line-height: 1.6;
            background-color: white;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1, h2, h3 {
            font-family: var(--font-heading);
            color: var(--color-primary);
            margin-bottom: 0.5em;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            padding-top: 1em;
            margin-bottom: 1em;
        }

        a {
            text-decoration: none;
            color: var(--color-primary);
            transition: color 0.3s;
        }

            a:hover {
                color: var(--color-secondary);
            }
        /* --- Navigation --- */
        header {
            background-color: white;
            padding: 1rem 0;
            border-bottom: 1px solid var(--color-light);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-primary) !important;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

            .nav-links li {
                margin-left: 20px;
            }
        /* --- Hero Section (Video) --- */
        .hero {
            background-color: var(--color-light);
            text-align: center;
            padding: 4rem 0;
            position: relative;
        }

        .hero-content {
            z-index: 5;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--color-dark);
            margin-bottom: 0.2em;
        }

        .hero p {
            font-size: 1.5rem;
            color: #555;
            margin-bottom: 2rem;
        }

.video-placeholder {
    width: 90%;
    max-width: 800px;
    height: 450px; /* Adjust height as needed */
    margin: 2rem auto 0;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

    .video-placeholder span {
        font-size: 1.2rem;
        padding: 20px;
        object-fit: cover;
    }

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

        /* --- CTA Button --- */
        .cta-button {
            display: inline-block;
            background-color: var(--color-secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: background-color 0.3s, transform 0.2s;
            border: none;
        }

            .cta-button:hover {
                background-color: #e55a30;
                color: white;
                transform: translateY(-2px);
            }
        /* --- Classes Section --- */
        .classes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding-bottom: 4rem;
        }

        .class-card {
            background-color: var(--color-light);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

            .class-card:hover {
                transform: translateY(-5px);
            }

            .class-card h3 {
                color: var(--color-secondary);
                font-size: 1.2rem;
                margin-bottom: 10px;
            }
        /* --- About Section --- */
        #about {
            background-color: var(--color-primary);
            color: white;
            padding: 4rem 0;
        }

            #about h2 {
                color: white;
                padding-top: 0;
                margin-bottom: 0.5em;
            }

            #about p {
                font-size: 1.1rem;
                max-width: 800px;
                margin: 0 auto;
                text-align: center;
            }
        /* --- Footer & Contact --- */
        footer {
            background-color: var(--color-dark);
            color: var(--color-light);
            padding: 3rem 0;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        footer h3 {
            color: var(--color-secondary);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }

        .contact-info a {
            color: var(--color-light);
            display: block;
            margin-top: 5px;
        }

            .contact-info a:hover {
                color: var(--color-secondary);
            }

        .whatsapp-cta {
            background-color: #25D366; /* WhatsApp Green */
            color: white !important;
            padding: 8px 15px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            margin-top: 10px;
        }

            .whatsapp-cta:hover {
                background-color: #128C7E;
            }
        /* --- Mobile Responsiveness --- */
        @media (max-width: 768px) {
            .nav-links {
                display: none; /* Simple hiding for mobile menu - use JS for a toggle menu */
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .video-placeholder {
                height: 300px;
            }

            .footer-grid {
                text-align: center;
            }
        }
  