/* Import Roboto from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Roboto, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}
div {
  margin: 0 0 0 0;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #c3504d;
  color: #ffffff;
  padding: 20px 30px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo svg {
  width: 48px;
  height: auto;
  display: block;
}

/* menu/nav styling */
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.menu ul li {
  margin: 0;
}

.menu ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu ul li a:hover {
  color: #ffc107;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: black;
}
.Ice-Cream-Dreams {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #c3504d;
  background-color: #f9fce7;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 20px 30px;
  margin: 0;
  height: 400px;
}
.page-center-Ice-Cream-Dreams {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  /* min-height: 100vh;  */
}
.page-center-Ice-Cream-Dreams h3 svg {
  /* font-family: 'Passion One', sans-serif;
    font-style: bold;
    font-size: 72px;
    color: white;
    font-weight: 700;
    text-align: center; */
  width: 800px;
}
.Ice-Cream-Dreams svg {
  width: 250px;
  height: auto;
  display: block;
  /* background-color: yellow; */
  color: #c3504d;
}
.page-center-featured-flavors {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 30px;
  height: 400px;
  background-color: #3e7e95;
}
.page-center-featured-flavors h3 {
  font-family: "Passion One", sans-serif;
  font-style: bold;
  font-size: 72px;
  color: white;
  font-weight: 700;
  text-align: center;
}

.section-title {
  font-family: "Baloo 2", cursive;
  font-size: 40px;
  text-align: center;
  margin: 0 0 40px;
}
.flavors-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.flavor-card {
  text-align: center;
}

.flavor-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: var(--card-shadow);
  display: block;
  margin: 0 auto 10px;
  background: #eee;
}

.flavor-name {
  font-weight: 700;
  font-size: 14px;
  margin-top: 10px;
}

/* Locations */
.locations-section-ice-cream {
  background-color: #f9fce7;
  border: #c3504d 2px;
  padding-bottom: 25px;
}
.locations-section-ice-cream-h2 {
  font-family: "Passion One", sans-serif;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}

.locations-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.location-card {
  background: #fff;
  box-shadow: var(--card-shadow);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 3px solid #c3504d;
}

.location-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.location-header {
  background: #c3504d;
  font-family: "Passion One", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
}

.location-body {
  padding: 12px 14px 16px;
  font-size: 12px;
  line-height: 1.5;
  background-color: #f9fce7;
}




/* Ordering Online */
.order-online{
    background-color: #c3504d;
}
.order-online-section-red{
    background-color: #c3504d;
 
}
.order-wrapper{
       max-width: 650px;
    margin: 0 auto;

}


form{
        display: flex;
      flex-direction: column;
      gap: 16px;
}
.row-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 4px;
    display: inline-block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    border-radius: 3px;
    border: none;
    padding: 8px 10px;
    font-size: 14px;
    font-family: inherit;
}

.checkbox-group {
    background: c3504d;
    border-radius: 4px;
    padding: 14px 14px 6px;
    font-size: 13px;
}

.checkbox-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 6px;
    column-gap: 20px;
    margin-top: 6px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.select-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.submit-btn {
    margin-top: 12px;
    align-self: flex-start;
    background: #fff;
    border: none;
    border-radius: 3px;
    padding: 8px 26px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    color: var(--red-dark);
}

.submit-btn:hover {
    background: #ffe9e3;
}




    /* Footer */
    footer {
      background: #2b5c6d;
      color: #fff;
      text-align: center;
      padding: 14px 10px;
      font-size: 11px;
    }

/* Responsive Design */
@media (max-width: 768px) {
  /* --- HEADER / HERO --- */
  header {
    padding: 12px 16px;
  }

  .hamburger {
    display: flex;
  }

  .menu ul {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    background: #c3504d;
    flex-direction: column;
    width: 100%;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    gap: 0;
  }

  .menu ul.active {
    max-height: 300px;
  }

  .menu ul li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .menu ul li:last-child {
    border-bottom: none;
  }

  .logo {
    z-index: 50;
  }

  /* hero area */
  .page-center-Ice-Cream-Dreams {
    flex-direction: column;
  }

  .Ice-Cream-Dreams {
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
  }

  .page-center-Ice-Cream-Dreams h3 svg {
    margin-top: 20px;
    width: 260px;  
  }

  .Ice-Cream-Dreams svg {
    width: 120px;
  }

  /* --- FEATURED FLAVORS --- */
  .page-center-featured-flavors {
    height: auto;          
    padding: 30px 20px 40px;
  }

  .page-center-featured-flavors h3 {
    font-size: 36px;
  }

  .flavors-grid {
    gap: 30px;
    flex-wrap: wrap;
  }

  /* If you want 2×2 circles instead of one long row */
  .flavor-card {
    flex: 0 0 45%;
  }

  /* --- LOCATIONS --- */
  .locations-grid {
    grid-template-columns: 1fr;   /* 4 → 1 column */
    padding: 0 16px;
  }

  .locations-section-ice-cream-h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .location-card img {
    height: 180px;
  }

  /* --- ORDER FORM --- */
  .order-wrapper {
    max-width: 90%;
  }

  .row-2,
  .select-row {
    grid-template-columns: 1fr;
  }

  .checkbox-row {
    grid-template-columns: 1fr; 
  }

  .submit-btn {
    width: 100%;
    text-align: center;
    justify-self: stretch;
  }
}
