/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: "brother-1816", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-style: normal;
  background-color: #e9e7e3;
  color: #333;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "brother-1816", sans-serif;
}


.top-font a {
  color: #b88b2d;
  text-decoration: none;
}

.top-font a:hover {
  text-decoration: underline;
}
/* Top-Bar */

.top-bar {
  background-color: #1e2a38;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-family: "brother-1816", sans-serif;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 40%;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.top-bar-content span {
  margin: 5px 10px;
}


/* 🌟 Banner Section */
.banner {
  height: 65vh;
  background-image: url('./slide_4.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 90%;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
  padding: 0 5%;
  width: 100%;
  max-width: 1400px;
}

.banner-logo-left {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  background-color: transparent;
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.banner-logo-left:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(255, 193, 7, 0.9);
}

.banner-text {
  max-width: 700px;
}


.banner-text h1 {
  font-family: "brother-1816", sans-serif;
  font-size: 3.5rem;
  color: #ffcc00;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  animation: fadeIn 1.2s ease forwards;
}

.banner-text p {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 15px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  animation: slideUp 1.5s ease forwards;
}


@media (max-width:1000px) {
  .overlay {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    width: 80px;
    height: 80px;
  }

  .text h1 {
    font-size: 1.8rem;
  }

  .text p {
    font-size: 1rem;
  }
}


/* Content Below */
.content-below {
  background-color: #f2f0eb;
  padding: 100px 30px;
  display: flex;
  justify-content: center;
}

.content-wrapper {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.section-title {
  font-size: 3rem;
  font-family: "brother-1816", sans-serif;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 90px;
  height: 4px;
  background-color: #b88b2d;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-box {
  background: linear-gradient(135deg, #fffaf3, #f6e9d7);
  padding: 50px 35px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: slideFadeIn 1s ease forwards;
}

.feature-box h3 {
  font-size: 2rem;
  color: #b88b2d;
  font-family: "brother-1816", sans-serif;
  margin-bottom: 15px;
}

.feature-box p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #4b4b4b;
}

.feature-box:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(184, 139, 45, 0.2);
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.animate-delay-4 { animation-delay: 0.8s; }

/* Instructor Section */
.instructor-section {
  background-color: #ffffff;
  padding: 100px 30px;
}

.instructor-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.instructor-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.instructor-content {
  flex: 1;
  min-width: 280px;
}

.instructor-content p {
  font-size: 1.2rem;
  color: #4b4b4b;
  line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
  background-color: #f2f0eb;
  padding: 50px 30px;
  text-align: center;
}

.pricing-container {
  max-width: 1250px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.pricing-box {
  background: #fff;
  border: 2px solid #e6e1d5;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.pricing-box h3 {
  font-size: 1.5rem;
  color: #1e2a38;
  margin-bottom: 10px;
}

.pricing-box .price {
  font-size: 1.3rem;
  color: #b88b2d;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-box p {
  font-size: 0.9rem;
  color: #555;
}

.pricing-box:hover {
  transform: scale(1.05);
}

.premium {
  border-color: #b88b2d;
  background: linear-gradient(135deg, #fffaf3, #f7ecd8);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(80% to right, #d4af37, #b88b2d);
  color: #fff;
  text-align: center;
  padding: 90px 30px;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 2.6rem;
  font-family: "brother-1816", sans-serif;
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: 1.2rem;
  margin-bottom: 35px;
}

.cta-button {
  display: inline-block;
  background-color: #1e2a38;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #000;
}

/* Contact Section */
.contact-details-section {
  background-color: #f7f5f0;
  padding: 100px 30px;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-details {
  font-size: 1.2rem;
  color: #444;
}

.contact-details p {
  margin-bottom: 18px;
}

.contact-details a {
  color: #b88b2d;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-heading {
  font-size: 2.8rem;
  color: #1e2a38;
  font-family: "brother-1816", sans-serif;
  margin-bottom: 40px;
  position: relative;
}

.contact-heading::after {
  content: '';
  width: 80px;
  height: 3px;
  background-color: #b88b2d;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Animations */
@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Responsive Fixes */
@media (max-width: 768px) {
  .banner-inner {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0 20px;
    text-align: center;
  }

  .banner-logo-left {
    width: 150px;
  }

  .banner-text h1 {
    font-size: 2rem;
  }

  .banner-text p {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .instructor-flex {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .cta-subtext {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}
/* Custom Styles for Google Reviews + Contact Form */
/* 💬 Reviews Section */
.reviews-section {
  background-color: #f2f0eb;
  padding: 100px 30px;
  text-align: center;
}
.reviews-section h2 {
  font-size: 3rem;
  font-family: "brother-1816", sans-serif;
  color: #1e2a38;
  margin-bottom: 40px;
}
#reviews-container {
  max-width: 80%px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:30px;
}
.review-card {
  padding: 20px;
  border-radius: 15px;
  border: 2px solid #e6e1d5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-width: 45%;
  flex: 1 1 calc(45% - 20px);
  text-align: left;
  transition: transform 0.3s ease;
  border-color: #b88b2d;
  background: linear-gradient(135deg, #fffaf3, #f7ecd8);
}
.review-card:hover {
  transform: scale(1.02);
}
.review-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.review-author {
  font-weight: bold;
  color: #1e2a38;
  font-size: 1.2rem ;
  margin-bottom: 5px;
}
.review-stars {
  font-size: 1.2rem;
  color: #ffb400;
  margin-bottom: 10px;
}
.review-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .review-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/* Improved Form Section Styles */
.form-section {
background-color: #f2f0eb;
padding: 100px 30px;
text-align: center;
}

.form-section h2 {
font-size: 3rem;
font-family: "brother-1816", sans-serif;
color: #1e2a38;
margin-bottom: 40px;
}

form {
max-width: 700px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 25px;
background: #fff;
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

form label {
font-weight: 600;
color: #1e2a38;
text-align: left;
}

input, select, textarea {
padding: 15px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 10px;
font-family: "brother-1816", sans-serif;
transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
border-color: #b88b2d;
outline: none;
}

button {
background-color: #b88b2d;
font-family: "brother-1816", sans-serif;
color: white;
border: none;
padding: 15px;
font-size: 1rem;
border-radius: 10px;
cursor: pointer;
transition: background 0.3s ease;
}

button:hover {
background-color: #a07823;
}



/* Footer */

.bottom-bar {
  background-color: #1e2a38;
  color: #fff;
  text-align: center;
  padding: 20px 0;
 font-family: "brother-1816", sans-serif;
  font-size: 0.95rem;
}

.bottom-bar-content {
  max-width: 1200px;
  margin: 0 auto;
}

/*Back to Top*/

#backToTopBtn {
  display: block; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 100;
  font-size: 25px;
  border: none;
  outline: none;
  background-color: #d5b36a;
  color: white;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 50%;
  transition: 0.3s ease;
  opacity: 90%;
}

#backToTopBtn:hover {
  background-color: #b88b2d;
}

#button-link{
  color: #ffffff;
  text-decoration: none;
}


#button-89 {

  font-family: "brother-1816", sans-serif;
  margin-top: 40px;
  margin-left: 10px;
  --b: 3px;   /* border thickness */
  --s: .5em; /* size of the corner */
  --color:#ffcc00;
  
  padding: calc(.3em + var(--s)) calc(.9em + var(--s));
  color: var(#fff);
  --_p: var(--s);
  background:
    conic-gradient(from 90deg at var(--b) var(--b),#000000 0deg,var(--color) 0)
    var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
  transition: .1s linear, color 0s, background-color 0s;
  outline: var(--b) solid #ffcc00;
  outline-offset: .2em;
  font-size: 16px;

  border: 0;

  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#button-89:hover,#button-89:focus-visible{
  --_p: 0px;
  outline-color: var(--color);
  outline-offset: .05em;
}

#button-89:active {
  background: var(--color);
  color: #fff;
}

.hst{
  font-size: 10px;
}

/*Photo Gallery*/

/* Hide scrollbar for WebKit browsers */
.scroll-container::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.scroll-container {
  scrollbar-width: none;
}

/* Hide scrollbar for Internet Explorer and Edge */
.scroll-container {
  -ms-overflow-style: none;
}

.photo-gallery {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  max-height: 500px;
  max-height: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.gallery-image {
  flex: 0 0 auto; /* Don't shrink */
  width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.gallery-image:hover {
  transform: scale(1.05);
}

@media (min-width: 600px) {
  .gallery-image {
    flex: 0 0 calc(50% - 40px); /* 2 per row on tablet */
  }
}

@media (min-width: 900px) {
  .gallery-image {
    flex: 0 0 calc(25% - 40px); /* 4 per row on desktop */
  }
}
