* {
  box-sizing: border-box;
}

body {
  background-color: #C28285;
}

/* Page Container */
.page-container {
  display: flex;
  flex-direction: column;
  min-width: 100%;
  padding: 10px;
  min-height: 90vh;
}

/* Navigation */
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
}

.logo {
  width: 260px;
  height: 270px;
  margin: 2px;
}

.menu-toggle {
  background: transparent;
  margin-left: 10px;
  color: white;
  display: none;
  border: none;
}

.menu-toggle:focus {
  outline: 1px solid transparent;
}

.hamburger-icon {
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  padding: 0;
  width: 100%;
}

.nav-link {
  text-decoration: none;
  padding: 10px 30px;
  display: inline-block;
  cursor: pointer;
  color: white;
  font-weight: bolder;
  font-size: 30px;
}

/* Main Content - Hero Section */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  width: 100%;
  position: relative;
}

.hero-image {
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 30px 30px 10px #442323e4;
}

.featured-image {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 0;
  object-fit: cover;
}

.hero-text {
  text-align: center;
  max-width: 50vw;
  margin-left: 5%;
  word-wrap: break-word;
}

h1 {
  font-size: 65px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

h3 {
  font-size: 25px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

/* Order Button */
.order-button {
  background-color: #7E0845;
  border: none;
  font-size: 35px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: bold;
  padding: 15px;
}

.order-button:hover {
  transform: scale(1.08);
}

/* Footer */
.site-footer {
  min-width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #7E0845;
  font-family: 'Poppins', sans-serif;
  padding: 0 20px;
}

.site-footer h3 {
  margin-left: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icon {
  padding-left: 14px;
}

/* Media Queries */
@media all and (max-width: 767px) {
  .logo {
    width: 150px;
    height: 150px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-link {
    font-size: 20px;
  }
  
  .navigation {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .nav-list {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
  
  .nav-list.show {
    display: flex;
  }
  
  .nav-list.show a {
    border: 1px solid white;
    background: transparent;
    transition: font-weight 0.2s;
    box-sizing: border-box;
    width: 200px;
    cursor: pointer;
    margin-bottom: 5px;
  }
  
  .nav-list.show a:hover {
    background-color: #7E0845;
    transform: scale(1.1);
    transition: 0.3s ease-out;
  }
  
  .main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70vh; 
  }
  
  .hero-section {
    padding: 20px;
  }
  
  .hero-image {
    width: 150px;
    height: 150px;
  }
  
  h1 {
    font-size: 35px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .order-button {
    font-size: 18px;
    width: 70%;
    padding: 10px;
  }
  
  .site-footer {
    min-height: 2vh;
    justify-content: center;
  }
  
  .social-icon {
    width: 40px;
    padding: 10px;
  }
}

@media all and (width: 414px) {
  .logo {
    width: 120px;
    height: 120px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-link {
    font-size: 20px;
  }
  
  .navigation {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .nav-list {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
  
  .nav-list.show {
    display: flex;
  }
  
  .nav-list.show a {
    border: 1px solid white;
    background: transparent;
    transition: font-weight 0.2s;
    box-sizing: border-box;
    width: 200px;
    cursor: pointer;
    margin-bottom: 5px;
  }
  
  .nav-list.show a:hover {
    background-color: #7E0845;
    transform: scale(1.1);
    transition: 0.3s ease-out;
  }
  
  .hero-section {
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 45px;
  }
  
  .logo {
    width: 200px;
    height: 200px;
  }
  
  .hero-image {
    width: 100px;
    height: 100px;
  }
  
  h1 {
    font-size: 25px;
  }
  
  h3 {
    font-size: 15px;
  }
  
  .order-button {
    font-size: 15px;
    width: 60%;
  }
  
  .site-footer {
    min-height: 2vh;
    justify-content: center;
  }
  
  .social-icon {
    width: 40px;
    padding: 10px;
  }
}

@media all and (width: 375px) {
  .logo {
    width: 100px;
    height: 100px;
  }
  
  .hero-image {
    width: 66px;
    height: 70px;
    box-shadow: 10px 10px 3px #442323e4;
  }
  
  h1 {
    font-size: 20px;
  }
  
  h3 {
    font-size: 12px;
  }
  
  .order-button {
    font-size: 12px;
    padding: 5px;
  }
  
  .nav-link {
    font-size: 15px;
  }
}

@media all and (width: 280px) {
  .logo {
    width: 100px;
    height: 100px;
  }
  
  .hero-image {
    width: 55px;
    height: 50px;
    box-shadow: 10px 10px 3px #442323e4;
  }
  
  h1 {
    font-size: 20px;
  }
  
  h3 {
    font-size: 12px;
  }
  
  .order-button {
    font-size: 12px;
    padding: 5px;
  }
  
  .nav-link {
    font-size: 15px;
  }
}