body {
    font-family: 'Raleway', sans-serif !important;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #dcdcdc;
    color: white;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Buttons */
.button-style-1 {
    background: linear-gradient(135deg, #0F4145, #1B6F75); /* gradient base */
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    padding: 14px 40px;
    text-decoration: none;
    border: none;
    box-shadow: 0 3px 6px rgba(15, 65, 69, 0.3);
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
}

.button-style-1:hover {
    background: linear-gradient(135deg, #1B6F75, #289ba3); /* brighter gradient */
    box-shadow: 0 4px 8px rgba(15, 65, 69, 0.4);
    transform: translateY(-1.5px);
    color: #fff;
    text-decoration: none;
}


.navbar-toggler {
    border: none;
    outline: none;
    padding: 6px;
}

.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background-color: black;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: black;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}

/* When toggler is active (menu open) */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}


/* Navbar  */
.navbar {
    background-color: #ffffff;
}

.navbar li {
    text-transform: uppercase !important;
}

/* Default nav link color */
.navbar .nav-link {
    color: #000000 !important; 
}

.navbar .nav-link.active {
    font-weight: 700 !important;
}




/* Hero Section */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    /* dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 5.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.hero-content p {
    font-size: .8rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #ffffff;
}


/* About section */
#about {
    background-color: #DEDEDE;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

#about h1 {
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    font-weight: bolder;
}

#about h5 {
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 30px;
}

#about p {
    color: rgb(0, 0, 0);
    font-weight: light;
    letter-spacing: 2px;
    line-height: 1.8;
    text-align: left;
}

#about a {
    margin-top: 25px;
}

#about a:hover {
    background-color: #ff5a5a;
    transform: translateY(-2px);
}

.about-img-wrapper img {
    object-fit: cover;
    object-position: center 10%;
    height: 100%;
    max-height: 450px;
    width: 100%;
    transition: transform 0.4s ease;
    filter: brightness(0.95) contrast(1.05);
}

.about-img-wrapper img:hover {
    transform: scale(1.01);
}

.text-content {
    text-align: left;
}


/* Classes Section */
#classes {
    position: relative;
    background-image: url('../images/classes.jpg');
    background-position: center;
    background-size: cover;
    padding: 100px 0;
    overflow: hidden;
    z-index: 0;
}

#classes::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.574);
    z-index: 1;
    pointer-events: none;
}

#classes>* {
    position: relative;
    z-index: 2;
}

#classes h1 {
    text-transform: uppercase;
    color: white;
    font-weight: bolder;
}

#classes h5 {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
}

#classes p {
    color: rgba(255, 255, 255, 0.746);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 35px;
}
#classes .card p {
    color: rgba(0, 0, 0, 0.746);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0px;
}

#classes .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: white;
    align-items: end;
}

#classes .card-wrapper {
    width: 50%;
    margin: auto;
    z-index: 2;
    overflow: hidden;
    position: relative;
}

#classes .card {
    perspective: 1000px;
    height: 100%;
    border: none;
    background: transparent;
    margin: 40px 0px;
    overflow: hidden;
    position: relative;
}

#classes .card-front,
#classes .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#classes .card-inner {
    position: relative;
    width: 100%;
    height: 350px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    z-index: 1;
}

#classes .card:hover .card-inner {
    transform: rotateY(180deg);
}
#classes .card-front {
    background: linear-gradient(145deg, #e6e6e6, #f2f2f2);
    border-radius: 1rem;
    color: #000000;
}

#classes .card-front p {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600 !important;
    margin-bottom: 0px;
    color: #000000;
}

#classes .card-back {
    background: linear-gradient(145deg, #f2f2f2, #ffffff); 
    color: #000000; 
    transform: rotateY(180deg);
    font-size: 0.7rem;
    line-height: 1.4;
    letter-spacing: 1.5px;
    padding: 15px;
    overflow: auto;
    border-radius: 15px;
}




/* Team Section  */
#team {
    padding-top: 100px;
    padding-bottom: 100px;
}
#team.container-fluid{
    background-color: white !important;
}

#team .team-card {
    background-color: transparent;
    border-radius: 15px;
    transition: transform 0.5s ease;
    overflow: hidden;
}

#team .team-img {
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    object-position: top;
}
#team .team-card:hover {
    transform: scale(1.03);
}

/* Remove overlay scaling */
#team .team-card .card-img-overlay {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    transition: background 0.3s ease;
}

/* Optional: darken overlay on hover */
#team .team-card:hover .card-img-overlay {
    background: rgba(0, 0, 0, 0.6);
}

#team .team-card h6,
#team .team-card p {
    color: white;
}

#team h1 {
    text-align: center;
    text-transform: uppercase;
    color: rgb(0, 0, 0) !important;
}

#team h5 {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
    color: rgb(0, 0, 0) !important;
    text-transform: uppercase;
}

#team .team-card-wrapper {
    margin-top: 50px;
}

#team .social-card {
  background: linear-gradient(135deg, #0F4145, #1B6F75);
  border-radius: 1rem;
    border-radius: 15px;
    padding: 50px 0px;
    margin-top: 50px;
}

#team .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 2px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}

#team .social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#team .social-card h1 {
    text-transform: none;
    color: rgba(255, 255, 255, 0.578) !important;
}

#team .social-card p {
    text-transform: none;
    color: rgb(255, 255, 255) !important;
    max-width: 900px;
    margin: auto;
}

.patreon {
    background-color: #f96854;
}

.facebook {
    background-color: #3b5998;
}

.youtube {
    background-color: #ff0000;
}

.instagram {
    background-color: #e1306c;
}

.xiaohongshu {
    background-color: #d91a1a;
}


/* Videos Section  */
#inspirations {
    padding-bottom: 100px;
    padding-top: 100px;
}
#inspirations h1 {
    text-align: center;
    text-transform: uppercase;
    color: #000000 !important;
}

#inspirations h5 {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
    color: rgb(0, 0, 0) !important;
    text-transform: uppercase;

}

#inspirations .card {
    height: 250px;
    overflow: hidden;
    background-color: #003B3F;
    border-radius: 15px;
    border: #003B3F 1px solid;
}

#inspirations iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Book Now */
#book-session {
    position: relative;
    background-image: url('../images/hero.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    /* Centering */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center */
    align-items: center;     /* horizontal center */
    text-align: center;

    /* Spacing */
    min-height: 80vh;  /* responsive height */
    padding: 40px 20px; /* tighter padding */
    margin: 0 auto;     /* keep centered */

    /* Overlay safety */
    overflow: hidden;
    z-index: 0;
}

#book-session::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.815);
    z-index: 1;
    pointer-events: none;
}

#book-session>* {
    position: relative;
    z-index: 2;
}
#book-session h1 {
    text-align: center;
    text-transform: uppercase;
    color: white !important;
}

#book-session h5 {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
    color: white !important;
    text-transform: uppercase;

}
#book-session p {
    max-width: 950px;
    margin: none;
    margin-bottom: 25px;
}

/* Events Section  */
#events .text-wrapper{
    padding:70px 0;
    background-color: #003B3F;
}
#events .text-wrapper h1 {
    text-align: center;
    text-transform: uppercase;
    color: white !important;
}
#events .text-wrapper h5 {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0px;
    text-align: center;
    color: white !important;
    text-transform: uppercase;

}
#events .blog-wrapper {
    padding:50px 0;
}
#events .blog-wrapper .item {
    background-color: transparent;
    border-radius: 10px;
    padding: 30px;
    margin: 10px;
    text-align: center;
}

#events .blog-wrapper .item img {
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 2 / 1;
    margin: 30px auto;
    object-fit: cover;
    display: block;
}


#events .blog-wrapper .item h1 {
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
}
#events .blog-wrapper .item h5 {
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.583);
    font-weight: 600;
}
#events .blog-wrapper .item p {
    max-width: 90%;
    margin: auto;
    color: #000000;
}

#events .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

#events .owl-nav button {
    background: rgba(255, 255, 255, 0);
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    border: none;
    padding: 5px 5px;
    pointer-events: all;
    cursor: pointer;
    border-radius: 3px;
}


/* Blog Section */
#blog {
    position: relative;
    background-image: url('../images/hero.jpg');
    background-position: center;
    background-size: cover;
    padding: 100px 0;
    overflow: hidden;
    z-index: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#blog::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.815);
    z-index: 1;
    pointer-events: none;
}

#blog>* {
    position: relative;
    z-index: 2;
}
#blog h1 {
    text-align: center;
    text-transform: uppercase;
    color: white !important;
}

#blog h5 {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
    color: white !important;
    text-transform: uppercase;
    max-width: 700px;
    margin: auto;
}
#blog .blog-carousel{
    padding: 50px 0;
}
#blog .blog-carousel.owl-theme {
  display: flex;
  align-items: stretch;
}


#blog .blog-carousel .blog-card {
    background: #ffffff;
    color: rgb(255, 255, 255);
    padding: 0px;
    border-radius: 10px;
    margin: 15px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    height: 450px !important;
    display: flex;
    flex-direction: column;
}

#blog .blog-carousel .blog-card h3 {
    color: rgb(0, 0, 0)!important;
    text-align:center;
}

#blog .blog-carousel .blog-card p {
    color: rgb(0, 0, 0) !important;
    text-align:center;
}
#blog .blog-carousel .blog-card .text-wrapper {
    padding: 20px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}


#blog .blog-carousel .blog-card .text-wrapper a.btn {
    margin-top: auto; 
    align-self: stretch; 
}

#blog .blog-carousel .blog-card:hover {
    transform: translateY(-5px);
}

#blog .blog-carousel .blog-card img {
    width: 100%;
    height: 180px;
    object-fit:cover;
    object-position: center 20%;
    border-radius: 8px;
    margin-bottom: 15px;
}

#blog .blog-carousel .blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
}

#blog .blog-carousel .blog-card p {
    font-size: 0.95rem;
    color: #ccc;
}


/* Footer section  */
.footer {
    background-color: #003B3F;
    color: white;
    padding: 60px 0 0;
}

.footer h3 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer p {
    color: #ccc;
    font-size: 0.95rem;
}

.footer .form-control {
    background-color: #05121a9e;
    border: 1px solid #ffffff72;
    color: white;
}

.footer .form-control::placeholder {
    color: #ffffffc1;
}

.footer .btn {
    background-color: #d31e1e;
    border: none;
}

.footer .btn:hover {
    background-color: #a81414;
}

.footer .social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer .social-links a:hover {
    color: #d31e1e;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #012a2c;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #3d9196;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
