
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
}
header {
    width: 100%;
    height: auto;
}

.header-img {
    width: 100%;
    height: auto;
}


.row {
    display: flex;
    justify-content: space-between;
    gap: 0px;
    padding: 0px;
    margin: 0;
}


.ourday.image {
    width: 60%;
    background-color: white;
    padding: 10px;
    margin: 0;
}


.ourday.text {
    width: 40%;
    padding: 10px;
    text-align: center;
    background-color: white;
    color: #450E59;
    margin: 0;
}

.ourday-img {
    width: 100%;
    height: auto;
    display: block;
}

h1 {
    font-family: cursive;
    font-size: 70px;
    font-style: italic;
    margin: 0;
    padding-bottom: 70px;
    color: #450E59;
}

p {
    font-family:'Times New Roman';
    font-size: 30px;
    margin: 0;
}


.button {
  border: none;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 30px;
  margin: 10px 0;
  transition-duration: 0.4s;
  cursor: pointer;
  background-color: #ced7b3; 
  color: #450E59;
  font-family: 'Times New Roman';
}

.button:hover {
  background-color: #af9fc5;
  color: white;
}

@media screen and (max-width: 900px) {
    header {
    height: 100vh; 
    width: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    overflow: hidden;
  }

  .header-img {
    width: 150%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
  }
  .row {
    flex-direction: column;
  }

  .ourday.image,
  .ourday.text {
    width: 100%; /* full width */
  }

  .ourday.image {
    order: 1; /* picture on top */
  }

  .ourday.text {
    order: 2; /* text underneath */
  }

  .button {
    width: 100%;
    max-width: 250px;
  }
  h1 {
    padding-bottom: 20px;
  }
}

.countdown-section {
    background-color: #ced7b3;
    width: 100%;
    height: auto;
    margin: 0;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: white;
    padding: 20px;
}

#demo {
    text-align: center;
    color: white;
}

.countdown-numbers {
    font-size: 48px;
    letter-spacing: 2px;
    font-family: cursive;
}

.countdown-labels {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Times New Roman';
}

.menu-section {
  background-color: #f2cdd2;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  
}

.menu {
  background-color: white;
  width: 90%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 30px;
  position: relative;
  padding-bottom: 20px;
}

.menu-img {
    position: absolute;
    bottom: -15%;
    left: -5%; 
    width: clamp(180px, 32vw, 420px);
    height: auto;
    pointer-events: none;
}

.menu-text {
  color: #450E59;
  text-align: center;
  padding: 7px;
  font-family: 'Times New Roman';
}

.menu-text p {
  margin-bottom: 10px;
  line-height: 1.6;
}

h2 {
  font-family: cursive;
  font-style: italic;
  font-size: 50px;
  font-weight: bold;
}

.menu-text p {
  font-size: 30px;
}


@media screen and (max-width: 900px) {
  .menu-img {
    position: absolute;
    bottom: -5%;
    left: -5%; 
  }
}

@media screen and (max-width: 600px) {
  .menu-text p {
    font-size: 20px;
}
}
.preorder-section {
  background-color: #f2cdd2;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  color: #450E59;
  font-weight: bold;
}

.preorder-button {
  border: none;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 10px 0;
  transition-duration: 0.4s;
  cursor: pointer;
  background-color: #ced7b3; 
  color: #450E59;
  font-family: 'Times New Roman';
}

.para {
    text-align: center;
}
.preorder-button:hover {
  background-color: #af9fc5;
  color: white;
}

.schedule-section {
  background-color: #af9fc5;
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 30px;
}

.schedule-img {
  width: 100%;
  height: auto;
}

.location-row {
    display: flex;
    justify-content: space-between;
    gap: 0px;
    padding: 0px;
    margin: 0;
}
.location-section {
  background-color: white;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: HeadingFont;
  font-size: clamp(50px, 5vw, 80px);
  font-style: italic;
  color: #450E59;
  margin-bottom: 5px;
}

.flowers1 {
  position: absolute;
  top: 0px;
  right: -10px;
  width: 30%;
}



.location-text {
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: white;
    color: #450E59;;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


h4 {
    font-family: cursive;
    font-size: clamp(20px, 5vw, 50px);
    font-style: italic;
    margin: 0;
    padding-bottom: 0;
}


@media screen and (max-width: 900px) {
  .flowers1 {
    top: 0px;
    right: -5px;
  }
}

footer {
  width: 100%;
  height: 50px;
  background-color: #f2cdd2;
  margin-bottom: 0;
}

h5 {
  padding-top: 20px;
  padding-left: 7px;
  font-family: HeadingFont;
  color: #af9fc5;
}