.design-notes{
  background-color: red;
  text-align: center;
}

.design-notes, a{
  padding: 10px;
}








.grid-container {
  display: grid;
  grid-gap: 10px;
  padding: 10px;
}
.one {
  grid-template-columns: auto;
}

.two {
  grid-template-columns: auto auto;
}

.three {
  grid-template-columns: auto auto auto;
}

.grid-container > div {
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}

.display{
  display: flex;
  height: 500px;
}

.display, p{
  text-align: left;
  padding: 20px;
  line-height: 1.5;
  font-size: 1rem;
}

.display, h3{
  padding-left: 20px;
  text-align: left;
}

.small-desc{
  font-size: 1rem;
  text-align: left;
  padding-left: 20px;
}

.classes{
  background-image: url(img/GuyWorking.jpg) !important;
}

.classes, h1{
  color: #fff;
}










/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 60px 8%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

/* LEFT FORM */
.contact-form{
  background-color: #f8dfd1;
  padding: 45px;
  height: 950px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin: 12px 0 5px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 4px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

/* BUTTON */
.contact-form button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #c8e6a3;
  border: 1px solid #7d8e4e;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

/* RIGHT INFO */
.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-info a {
  color: #2c2c2c;
  text-decoration: underline;
}

.contact-info a:hover {
  color: #7d8e4e;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .display{
    display: unset;
  }
  .grid-container{
    display: unset;
  }
}









/* START MOBILE FORM STYLES - START CONTACT PAGE */
    .form-container{
/*       TO CENTER add AUTO for margin right and left*/
      margin: 20px auto;
/*  WIDTH 100%  FOR MOBILE DEVICES*/
      width:90%;
      display:block;
      font-size:1em;
    }
    form p{
      margin-bottom:5px;
     
    } 
    label{
      display:block;
    } 
    #newsletter input{
      display:inline;
      width:auto;
    }
    input{
      /* FOR MOBILE use WIDTH:100% */
       width:100%;
      padding:1.7%;
      margin:1.5% 0;
      font-size: 1em;
      border-radius: 4px;
      border:1px solid #ccc;
      box-sizing: border-box; 
    }
    textarea{
      min-height:200px;
       /* FOR MOBILE use WIDTH:100% */
      width: 100%;
      padding: 2%;
      margin: 1.5% 0;
      font-size: 1em;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }
  
  /*        END MOBILE FORM STYLES */

    @media only screen and (min-width: 1000px) {
 /*         START DESKTOP FORM STYLES */
      .form-container{
 /*         CHANGE WIDTH of FORM TO YOUR PREFERENCE */
        width:50%;
      }
      input{
         /* CHANGE WIDTH TO YOUR PREFERENCE */
        width:60%;
      }
      button{
        margin-top: 2%;
        margin-bottom: 2%;
      }
    }

/* END CONTACT PAGE */




/* MOBILE MENU BUTTON */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

/* CLOSE BUTTON */
.close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

/* MOBILE STYLES */
@media (max-width: 900px) {

  .menu-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #f3fce7;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  }

  .main-nav.open {
    right: 0;
  }

  .close-btn {
    display: block;
  }
}





* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-family: 16px;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  min-height: 70px;
  padding: 0 8%;
  background: #f3fce7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.logo-img { 
  width: 120px; 
}
.main-nav { 
  display: flex; 
  gap: 28px; 
  align-items: center; 
  font-size: 16px; 
}
.main-nav a { 
  transition: color .2s ease; 
}
.main-nav a:hover { 
  color: #7d8e4e; 
}
.menu-btn, .close-btn { 
  display: none; 
  background: none; 
  border: 0; 
  font-size: 34px; 
  cursor: pointer; 
}

.hero {
  min-height: 500px;
  background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)), url('img/HeroHome.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 8% 36px;
}
.hero-card {
  width: min(900px, 100%);
  background: #000000a5;
  color: #fff;
  text-align: center;
  padding: 22px 28px 26px;
}
.hero-card h1 { 
  margin: 0 0 12px; 
  font-size: clamp(2rem, 4vw, 3.2rem); 
  line-height: 1.08; 
}
.hero-card p { 
  max-width: 760px; 
  margin: 0 auto 18px; 
  font-size: 15px; 
}
.btn, .signup-form button {
  display: inline-block;
  background: #c8e6a3;
  border: 1px solid #7d8e4e;
  border-radius: 4px;
  padding: 8px 24px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
}

.section {
  padding: 28px 8%;
}
.section h2 { 
  font-size: clamp(2rem, 4vw, 3.5rem); 
  line-height: 1.5; 
  margin: 0 0 24px; 
  font-weight: 500; 
}
.event-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 32px; 
}
.event-card img { 
  width: 100%; 
  aspect-ratio: 1.25 / 1; 
  object-fit: cover; 
}
.event-card p, .product-card p { 
  font-size: 16px; 
  line-height: 1.35; 
  margin: 10px 0 0; 
}

.gallery-section { 
  display: grid; 
  grid-template-columns: 1.35fr .75fr; 
  gap: 46px; 
  align-items: center; 
}
.gallery-text p { 
  font-size: 15px; 
  line-height: 1.55; 
  margin: 0 0 14px; 
}
.gallery-images { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px; 
}
.gallery-images img { 
  width: 100%; 
  aspect-ratio: 1 / 1; 
  object-fit: cover; 
  border: 8px solid #f1efe5; 
}

.best-section, .signup-section { 
  background: #f8dfd1; 
}
.slider { 
  position: relative; 
}
.slider-track { 
  display: grid; 
  grid-auto-flow: column; 
  grid-auto-columns: calc((100% - 72px) / 4); 
  gap: 24px; 
  overflow-x: auto; 
  scroll-snap-type: x mandatory; 
  scrollbar-width: none; 
}
.slider-track::-webkit-scrollbar { 
  display: none; 
}
.product-card { 
  scroll-snap-align: start; 
}
.product-card img { 
  width: 100%; 
  aspect-ratio: 1.45 / 1; 
  object-fit: cover; 
}
.slider-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #c8e6a3;
  color: #24310f;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,.22);
}
.slider-btn.prev { 
  left: -20px; 
}
.slider-btn.next { 
  right: -20px; 
}

.reviews-section { 
  background: #7d8e4e; 
  color: #fff; 
  height: 450px;
}
.review-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 28px; 
}
.review-card { 
  background: #eef0e1; 
  color: #111; 
  padding: 20px; 
  min-height: 190px; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
}
.stars { 
  letter-spacing: 3px; 
  font-size: 20px; 
}
.review-card p { 
  font-size: 14px; 
  line-height: 1.45; 
}
.review-card h3 { 
  font-size: 11px; 
  margin: 10px 0 0; 
}

.signup-section {
  text-align: center; 
  padding-bottom: 42px; 
}
.signup-section h2 { 
  font-size: clamp(1.8rem, 3vw, 2.6rem); 
  font-weight: 700; 
  padding-top: 20px;
}
.signup-form { 
  width: min(560px, 100%); 
  margin: 0 auto; 
  text-align: left; 
}
.signup-form label { 
  display: block; 
  margin: 12px 0 4px; 
  font-size: 14px; }
.signup-form input { 
  width: 100%; 
  height: 32px; 
  border: 1px solid #777; 
  padding: 5px 8px; 
  font: inherit; 
}
.signup-form button { 
  display: block; 
  margin: 24px auto 0; 
}

.site-footer { 
  padding: 28px 8%; 
  background: #f7f7f7; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 44px; 
  border: 1px solid #ccc; 
}
.footer-logo { 
  width: 170px; 
}
.footer-nav { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 0; 
  font-size: 18px; 
}
.footer-nav a { 
  padding: 0 12px; 
  border-right: 1px solid #111; 
}
.footer-nav a:last-child { 
  border-right: 0; 
}

@media (max-width: 900px) {
  .site-header { 
    padding: 8px 5%; 
  }
  .menu-btn { 
    display: block; 
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #f3fce7;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px;
    gap: 22px;
    transition: right .3s ease;
    box-shadow: -5px 0 18px rgba(0,0,0,.18);
  }
  .main-nav.open { 
    right: 0; 
  }
  .close-btn { 
    display: block; 
    position: absolute; 
    top: 18px; 
    right: 22px; 
  }
  .event-grid, .review-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .gallery-section { 
    grid-template-columns: 1fr; 
  }
  .slider-track { 
    grid-auto-columns: calc((100% - 24px) / 2); 
  }
  .site-footer { 
    flex-direction: column; 
    gap: 18px; 
  }
}

@media (max-width: 560px) {
  .hero { 
    min-height: 360px; 
    padding: 0 4% 24px; 
  }
  .hero-card { 
    padding: 18px 16px; 
  }
  .section { 
    padding: 26px 5%; 
  }
  .event-grid, .review-grid { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
  .gallery-images { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .slider-track { 
    grid-auto-columns: 88%; 
  }
  .slider-btn.prev { 
    left: 4px; 
  }
  .slider-btn.next { 
    right: 4px; 
  }
  .footer-nav { 
    font-size: 15px; 
  }
  .footer-nav a { 
    padding: 5px 8px; 
  }
}
