/*------------------------------------*\
    General
\*------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  overflow-x: hidden;
  /* GRADIENT THEME: Full page gradient background */
  background: linear-gradient(to bottom, #05C9F9, #10B4DE, #1B9FC3, #268BA8, #30768D, #3B6172, #464C57) !important;
  background-attachment: fixed !important;
  color: #cdf4fe; /* GRADIENT THEME: Light text color */
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 12px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff; /* GRADIENT THEME: White headings */
}

h1 { font-size: 38px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

a {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #fff; /* GRADIENT THEME: White links */
}

a:hover, a:focus {
  text-decoration: none;
  outline: none;
  color: #9be9fd; /* GRADIENT THEME: Lighter blue for link hover */
  opacity: 0.9;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.white-text {
  color: #fff;
}

/* --- Section --- */
.section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: transparent; /* GRADIENT THEME: Sections are see-through */
}

.section-header {
  margin-bottom: 40px;
}

/* --- Background Image --- */
.bg-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
}
.bg-image.bg-parallax { background-attachment: fixed; }
.bg-image.overlay:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, #374050 0%, #798696 100%);
  opacity: 0.7;
}

/* --- Buttons --- */
.main-button {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid transparent;
  border-radius: 40px;
  transition: 0.2s all;
  /* GRADIENT THEME: Button colors */
  background-color: #05C9F9;
  color: #012832;
  font-weight: bold;
}

.main-button:hover,
.main-button:focus {
  background-color: #fff;
  border-color: #fff;
  color: #05C9F9;
}

.main-button.icon-button:after {
  content: "\f178";
  font-family: FontAwesome;
  position: absolute;
  width: 30px;
  right: 15px;
  text-align: center;
  opacity: 0;
  transition: 0.2s all;
}
.main-button.icon-button:hover:after { opacity: 1; }

/* --  Input  -- */
.contact-form label { color: #fff; }
input, textarea { color: #fff; }
input[type="text"], input[type="email"], input[type="password"],
input[type="number"], input[type="date"], input[type="url"],
input[type="tel"], textarea {
  height: 40px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: transparent;
  padding-left: 15px;
  padding-right: 15px;
  transition: 0.2s border-color;
}
textarea { padding: 10px 15px; }
input:focus, textarea:focus { border-color: #05C9F9; }

/*------------------------------------*\
    Header & Navigation
\*------------------------------------*/
#header {
  position: relative;
  border-bottom: 1px solid rgba(155, 233, 253, 0.2);
  background-color: rgba(38, 139, 168, 0.9); /* Blue (Munsell) from palette */
  z-index: 100;
}

.navbar-brand {
    padding: 10px 0;
}
.navbar-brand img {
  max-height: 40px;
  width: auto;
}

/* -- Desktop Nav -- */
.main-menu li a {
    padding: 20px 15px;
}
.main-menu li a:after {
  content: "";
  display: block;
  height: 2px;
  background-color: #05C9F9;
  width: 100%;
  transform: translateY(5px);
  opacity: 0;
  transition: 0.2s all;
}
.main-menu li a:hover:after,
.main-menu li a:focus:after {
  transform: translateY(0px);
  opacity: 1;
}

/*------------------------------------*\
    Hero Area
\*------------------------------------*/
#home.hero-area, #home-culinary.hero-area {
  height: 100vh;
  padding: 0;
}
.home-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

/*------------------------------------*\
    Hero Intro Offer
\*------------------------------------*/
.intro-offer {
  margin-top: 30px;
  background-color: rgba(0,0,0,0.5);
  padding: 20px 25px;
  border-radius: 6px;
  max-width: 500px;
}

.intro-offer h3 {
  color: #f4d35e; /* warm golden accent */
  margin-bottom: 10px;
}

.intro-offer p {
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.intro-offer em {
  color: #ffd27f; /* softer highlight */
}

/*------------------------------------*\
    About & Courses
\*------------------------------------*/
#about {
  padding-top: 40px;
}
.feature-img {
  width: 200px;
  float: left;
  margin: 5px 25px 10px 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.about-img img {
  width: 103%;
  height: auto;
  position: relative;
  top: 20px;
  float: right;
  right: -35px;
}

/* --- Course Card Base Styles --- */
.course {
  margin-bottom: 30px; /* Add spacing below cards */
  background-color: rgba(0,0,0,0.1);
  padding: 20px;
  border-radius: 4px;
}
.course .course-img {
  position: relative;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}
.course .course-img > img {
  width: 100%;
  height: auto;
}
.course .course-title {
  display: block;
  height: auto;
  margin: 10px 0;
}
.course .course-details {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: #cdf4fe;
}
.course-body .course-details span i {
  color: #05C9F9;
  margin-right: 5px;
}

/* --- FINAL Course Card Alignment --- */
#courses-wrapper.row {
  display: flex;
  flex-wrap: wrap;
}
#courses-wrapper [class*="col-"] {
  display: flex;
}
#courses-wrapper .course {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#courses-wrapper .course-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#courses-wrapper .course-body p {
  flex-grow: 1;
}


/*------------------------------------*\
    Footer
\*------------------------------------*/
#footer {
  background-color: rgba(70, 76, 87, 0.5);
}
#footer p { color: #cdf4fe; }

/*------------------------------------*\
    Preloader
\*------------------------------------*/
/*
#preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}
#preloader .preloader:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid #ebebeb;
  border-top: 2px solid #05C9F9;
  border-radius: 50%;
  animation: 1s preloader linear infinite;
}
@keyframes preloader {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
*/

/*------------------------------------*\
    MOBILE RESPONSIVE STYLES
\*------------------------------------*/
@media (max-width: 767px) {
  /* Center the logo on mobile screens */
  .navbar-header {
    width: 100%;
    text-align: center;
    position: relative;
    height: 60px;
  }
  .navbar-brand {
    float: none;
    display: inline-block;
    margin: 0;
    height: 100%;
    padding: 10px 0;
  }

  /* Mobile slide-out menu panel */
  #nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    max-width: 250px;
    height: 100vh;
    background: #fff;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    padding-top: 80px;
    padding-bottom: 40px;
    transform: translateX(100%);
    transition: 0.4s all cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 999;
  }
  #header.nav-collapse #nav {
    width: 100%;
    transform: translateX(0%);
  }
  .main-menu li a {
    color: #374050 !important; /* Dark color for links on white mobile menu */
  }

  /* Mobile Toggle Btn */
  .navbar-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    padding: 0;
    height: 40px;
    width: 40px;
    z-index: 9999;
    border: none;
    background: transparent;
  }
  .navbar-toggle > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s background;
  }
  .navbar-toggle > span:before,
  .navbar-toggle > span:after {
    content: "";
    position: absolute;
    left: 0;
    transition: 0.2s transform;
  }
  .navbar-toggle > span,
  .navbar-toggle > span:before,
  .navbar-toggle > span:after {
    height: 2px;
    width: 25px;
    background-color: #fff;
  }
  .navbar-toggle > span:before { top: -8px; }
  .navbar-toggle > span:after { top: 8px; }
  #header.nav-collapse .navbar-toggle > span { background: transparent; }
  #header.nav-collapse .navbar-toggle > span:before { transform: translateY(8px) rotate(45deg); }
  #header.nav-collapse .navbar-toggle > span:after { transform: translateY(-8px) rotate(-45deg); }

  /* Responsive Fix for About Section Collage */
  #about .row {
    display: block; /* Revert to default stacking on mobile */
  }

  .about-img img {
    /* Reset all the desktop positioning styles */
    position: static;
    float: none;
    right: auto;
    top: auto;
    width: 90%; /* Make the image 90% of the screen width */
    display: block;
    margin: 20px auto; /* Center the image and add space */
  }
}
/* Fix for Horizontal Footer Menu */
.footer-menu li {
  display: inline-block; /* This makes the menu items sit side-by-side */
  margin-left: 15px;   /* This adds a little space between each item */
}

/*------------------------------------*\
    Pixel Pricing Cards
\*------------------------------------*/
#index-pricing .row,
#pricing .row {
  display: flex;
  flex-wrap: wrap;
}

#index-pricing [class*="col-"],
#pricing [class*="col-"] {
  display: flex;
}

#index-pricing .course,
#pricing .course {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: rgba(0,0,0,0.1);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 30px;
}

#index-pricing .course-body,
#pricing .course-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#index-pricing .course-body p,
#pricing .course-body p {
  color: #cdf4fe;
  margin-bottom: 10px;
}

/*------------------------------------*\
    Adult Offerings Section
\*------------------------------------*/
.adult-offerings {
  background-color: rgba(0,0,0,0.1);
  padding: 30px;
  border-radius: 4px;
  height: 100%;
}

.adult-offerings h4 {
  color: #05C9F9; /* Vivid Sky Blue from your palette */
  margin-top: 0;
}

.adult-offerings p {
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 16px;   /* Increases the font size from the default */
  line-height: 1.4;  /* Adds a bit more space between the lines */
}

.offerings-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.offerings-list li {
  margin-bottom: 15px;
  font-size: 16px;
}

.offerings-list li i {
  color: #05C9F9; /* Use the bright blue for the icons */
  margin-right: 15px;
  width: 20px;
  text-align: center;
}
/* Align contact section columns */
.contact-row {
  display: flex;
  flex-wrap: wrap;
}
/* Secondary button for the hero area */
.secondary-button {
  margin-left: 15px;
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 25px;
  border-radius: 40px;
  transition: all 0.2s ease;
  background-color: rgba(0,0,0,0.4);

}
.secondary-button:hover {
  background-color: #fff;
  color: #05C9F9; /* Vivid Sky Blue */
}

/*------------------------------------*\
    Culinary Page Styles
\*------------------------------------*/

#home-culinary {
  height: 70vh; /* A slightly shorter hero for sub-pages */
}

/* Culinary Page Hero Text Alignment */
#home-culinary .home-wrapper {
  top: 40%; /* This moves the text block higher up the page */
  background-color: rgba(0,0,0,0.2);
  padding: 30px 20px;
}

/* Whisk Intro Offer Accent */
#home-culinary .intro-offer h3 {
  color: #f4d35e; /* warm golden accent */
}
#home-culinary .intro-offer em {
  color: #ffd27f; /* softer highlight */
}

/* Culinary Offerings Section */
#services {
    background-color: rgba(0,0,0,0.5);
    margin-top: 195px;
    min-height: 90vh;   /* let it grow if content is taller */
    height: auto;       /* override the fixed height */
    padding: 15px 20px;
}

/* Header */
#services .section-header {
}
#services .section-header h2,
#services .section-header .lead {
  color: #fff;
}

/* Services */
#services .feature {
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0,0,0,0.2);
  border-radius: 4px;
  margin-bottom: 30px;
  transition: all 0.3s;
  height: calc(100% - 60px);
  display: flex;
  align-items: flex-start;
}

#services .feature:hover {
  border-color: #05C9F9;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

#services .feature .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background: #05C9F9;
  color: #FFF;
  font-size: 24px;
  margin-right: 20px;
}

#services .feature .feature-content h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #fff;
}

#services .feature .feature-content p {
  color: #cdf4fe;
}

/*------------------------------------*\
    Culinary Pricing Cards
\*------------------------------------*/
#pricing .row {
  display: flex;
  flex-wrap: wrap;
}
#pricing [class*="col-"] {
  display: flex;
}

#pricing .course {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: rgba(0,0,0,0.1);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 30px;
}

#pricing .course h3 {
  color: #fff;
  margin-bottom: 15px;
}

#pricing .course-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* spaces text evenly */
}

#pricing .course-body p {
  color: #cdf4fe;
  margin-bottom: 10px;
}

/*------------------------------------*\
    Artisan Bread Section Styles
\*------------------------------------*/

#bread-offerings {
  padding-top: 40px;
}

/* This new class ONLY targets the row with the bread boxes */
.bread-box-row {
  display: flex;
  flex-wrap: wrap;
}
.bread-box-row [class*="col-"] {
  display: flex;
}

.bread-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 30px;
  border-radius: 4px;
  border: 1px solid rgba(205, 239, 248, 0.2);
  text-align: center;
}

.bread-box h3 {
  color: #05C9F9;
  margin-top: 0;
}

/* This makes the description paragraph grow, pushing the price to the bottom */
.bread-box p:last-of-type {
  flex-grow: 1;
}

#bread-offerings .main-button {
    margin-top: 40px;
}

.bread-notice {
  font-style: italic;
  font-size: 14px;
  color: #9be9fd;
  margin-bottom: 20px;
}

.bread-price {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

/*------------------------------------*\
    Culinary Bio
\*------------------------------------*/
#culinary-bio {
  background-color: transparent;
}

#culinary-bio .section-header h2 {
  color: #fff;
}

#culinary-bio .feature {
    background-color: rgba(0,0,0,0.1);
    padding: 30px;
    border-radius: 4px;
}

#culinary-bio p {
  color: #cdf4fe;
}

#culinary-bio .about-img img {
  border-radius: 4px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}