@charset "utf-8";
/* CSS Document */


body{
	background: linear-gradient(
    to bottom,
    #87CEEB 0%,     /* sky blue */
    #5CC0F2 60%,    /* deeper blue */
    #2BAAF7 100%    /* ocean start */
  );

	font-family: "Fredoka", sans-serif;
}

/*NAVIGATION BAR*/


.nav {
  width: 100%;
  background: linear-gradient(to bottom, #766454, #634731);
  border-bottom: 4px solid #b19767;
}


.nav-container {
  margin: auto;
  padding: 10px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  color: #F3E6C8;
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
}


.nav-links a {
  display: block;
  padding: 12px 18px;

  text-align: center;
  border-radius: 999px;

  background: rgba(243, 230, 200, 0.15);
  color: #F3E6C8;

  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;

  transition: 0.2s;
}


.nav-links a:hover {
  background: #2F6F95;
  color: #F3E6C8;
}


.nav-links a.active {
  background: #F3E6C8;
  color: #1B1B1B;
  box-shadow: inset 0 0 0 3px #E6B65C;
}


.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #F3E6C8;
  cursor: pointer;
}


@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;

    background: linear-gradient(to bottom, #766454, #634731);

    flex-direction: column;
    align-items: center;
    padding: 20px 0;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* NAVIGATION BAR END */



/*Header intro*/
.HeadIntro{
    width: 90%;
    margin: auto;
    text-align: center;
    color: white;
    margin-bottom: 80px;
}

.highlight{
    color: rgb(231, 182, 48);
}

.HeadIntro h1{
   font-size: 5.5em;
   margin-bottom: 0px;
   padding-bottom: 0px ;
}

.HeadIntro p{
    width: 60%;
    font-size: 1.5em;
    margin: auto;
}

.HeadIntro .TravelBtn{
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1.2em;
    color: #ffffff;
    background-color: rgb(231, 182, 48);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.HeadIntro .TravelBtn:hover{
    background-color: #F3E6C8;
    color: #1B1B1B;
}

/*Header intro end*/

/*classes section start*/
.classes {
  padding: 80px 20px;
  background: #f4e1a0; 
  text-align: center;
}


.classes-header h2 {
  font-size: 2.5rem;
  color: #5C2E00;
  margin-bottom: 10px;
}

.classes-header p {
  color: rgba(92, 46, 0, 0.7);
  max-width: 500px;
  margin: 0 auto 40px;
}


.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}


.class-card {
  
  padding: 25px;
  border-radius: 20px;
  border: 2px solid transparent;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
  cursor: pointer;
}

.Y{
    background-color: rgba(246, 246, 59, 0.5);
}

.G{
    background-color: rgba(59, 246, 59, 0.5);
}

.R{
    background-color: rgba(246, 59, 59, 0.5);
}

.B{
    background-color: rgba(59, 59, 246, 0.5);
}

.O{
    background-color: rgba(246, 146, 59, 0.5);
}

.P{
    background-color: rgba(246, 59, 246, 0.5);
}

.class-card:hover {
  transform: translateY(-5px);
  border-color: white;
}


.class-card .icon {
  font-size: 40px;
  margin-bottom: 10px;
}


.class-card h3 {
  color: #5C2E00;
  margin-bottom: 8px;
}

.class-card p {
  font-size: 14px;
  color: rgba(92, 46, 0, 0.7);
}

/*classes section end*/

/*workshop section start*/

.workshops {
  
  padding: 100px 20px;

  background: linear-gradient(
    to bottom,
    #f4e1a0 0%,
    #5C2E00 100%
  );

  color: white;
}


.workshops-container {
  
  margin: auto;
  position: relative;
  z-index: 2;
}


.workshops-header {
  text-align: center;
  margin-bottom: 60px;
}

.workshops-header h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.workshops-header p {
  opacity: 0.85;
}


.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}


.card {
  display: flex;
  gap: 15px;

  background: rgba(216, 91, 91, 0.7);
  backdrop-filter: blur(10px);

  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);

  transition: 0.3s ease;
}

.card:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-6px);
}


.icon {
  font-size: 32px;
}


.time {
  display: inline-block;
  margin: 5px 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  font-size: 12px;
}

/*workshop section end*/

/*footer start*/

.footer {
  position: relative;
  background: #5C2E00;
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
  padding-bottom: 30px;
}


.footer-wave {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-wave path {
  fill: #5C2E00;
}


.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}


.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}


.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: white;
  font-weight: bold;
}

.footer-logo i {
  font-size: 22px;
  color: #2F6F95;
}


.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  transition: 0.2s;
}

.footer-links a:hover {
  color: #2F6F95;
}


.footer-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #ffffff;
  background-color: rgb(231, 182, 48);
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: 0.2s;
}

.footer-btn:hover {
  transform: scale(1.05);
}


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
}
