@import url("https://fonts.googleapis.com/css?family=Montserrat:ital,wght@0,100..900,700;1,100;1..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --accent: #d7790b;
  --black: #1a1a1a;
  --gray: #f3f3f3;
}

html {
  scroll-padding-top: 25vh;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
}

section {
  min-width: 100%;
  min-height: 100vh;
  color: var(--black);
}

/* Navbar */
nav {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  border-bottom: 1px solid var(--black);
  transition: all 0.5s ease-in-out;
  background-color: white;
  filter: drop-shadow(5px 5px 10px transparent);
}

/* Navbar Sticky */

nav.sticky {
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.548);
  filter: drop-shadow(5px 5px 10px #00000022);
}

/* Navbar Brand */
.navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  transition: all 0.3s ease-in-out;
}

.brand:hover {
  opacity: 0.8;
}

/* Navbar Menu */
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.menu a,
.menu-navbar a {
  display: inline-block;
  position: relative;
  color: var(--black);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.menu a::after, 
.menu-navbar a::after {
  color: var(--accent);
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 0.17em;
  bottom: 0;
  left: 0;
  background: currentColor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.menu a:hover::after, 
.menu-navbar a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.btn {
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  display: none;
}

.btn-link {
  display: none;
}

.btn-2 {
  width: 200px;
  height: 45px;
  font-size: 20px;
  background-color: var(--black);
  color: white;
  border-radius: 12px;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}

.btn-2:hover {
  background-color: var(--accent);
  border: 1px solid var(--accent);
}

/* Hero Page Section */
.hero-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  margin-top: 130px;  
}

.banner {
  display: flex;
  justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  padding: 100px;
  color: black;
  position: relative;
}

.swiper-button-prev::after {
  left: 100px;
}

.swiper-button-next::after {
  right: 100px;
}

.swiper-button-prev:focus {
  outline: none;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: white;
}

/* Banner Styles */
.banner_1,
.banner_2,
.banner_3 {
  display: flex;
}

.banner_1 div,
.banner_2 div,
.banner_3 div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 700px;
  padding: 50px;
  text-align: center;
  justify-content: center;
}

.banner_1 div {
  background: linear-gradient(to right, #693323, #cf6544);
  color: white;
}

.banner_1 div h1 {
  font-size: 80px;
  font-weight: bold;
}

.banner_1 div h2 {
  font-size: 55px;
  font-weight: bold;
  color: rgba(255, 170, 52);
}

.banner_1 div p {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 70px;
}

.banner_2 div {
  background: #fbe2e7;
  color: #494949;
}

.banner_2 div h1 {
  font-size: 55px;
}

.banner_2 div p {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
}

.banner_3 div {
  background: linear-gradient(to right, #190d0f, #bf6685);
  color: white;
}

.banner_3 div h1 {
  font-size: 55px;
}

.banner_3 div p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
}

/* Button Styles */
.btn-banner-1,
.btn-banner-2,
.btn-banner-3 {
  border: 1px solid;
  width: 250px;
  height: 60px;
  font-weight: 600;
  font-size: 24px;
  background: transparent;
}

.btn-banner-2 {
  border-color: #494949;
  color: white;
  background-color: #494949;
}

.btn-banner-3 {
  border-color: white;
  color: var(--black);
}

.btn-banner-3:hover {
  color: white;
}

/* Category Section */
.category {
  display: flex;
  justify-content: center;
  margin: 30px 70px 88px 70px;
  gap: 32px;
}

.category-item {
  width: 317px;
  height: 326px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 12px;
  background-size: 100%;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
  transition: all ease-in-out 0.3s;
}

.category-item:hover {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
  background-size: 102%;
}

.category-item h4 {
  font-size: 40px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  transition: all ease-in-out 0.3s;
}

.category-item:hover h4 {
  margin-bottom: 25px;
}

.category a {
  text-decoration: none;
}

.hot-drinks {
    background-image: url("img/category-1.png");
}

.cold-drinks {
    background-image: url("img/category-2.png");
}

.foods {
    background-image: url("img/category-3.png");
}

.merchandise {
    background-image: url("img/category-4.png");
}

/* About Section */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 70px;
  padding-bottom: 40px;
  min-height: 100%;
}

.about h1 {
  font-size:64px;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 30px;
}

.about h1 b {
  color: var(--accent);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}

.about-headline {
  flex-basis: 658px;
}

.about-headline p {
  font-size: 24px;
  margin-bottom: 30px;
}

.btn-about {
  width: 238px;
  height: 63px;
  font-size: 24px;
  font-weight: 600; 
}

.about-img {
  display: flex;
  gap: 25px;
}

.about-img img:nth-child(2) {
  position: relative;
  top: 30px;
}

.divider {
  width: 1218px;
  border: solid 1px var(--black);
  opacity: 0.1;
  margin-top: 100px;
}

/* Testimony Section */
.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.testimonials h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 50px;
}

.testimony-container {
  display: flex;
  gap: 24px;
}

.testimony {
  background-color: var(--gray);
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  justify-content: space-between;
  padding: 60px 45px 16px 45px;
  width: 431px;
  height: 255px;
}

.testimony p {
  font-size: 20px;
  font-weight: 500;
}

.testimony p b {
  color: var(--accent);
}

/* Callout Section */
.callout {
  background: url("img/callout-img.png") no-repeat center/cover;
  height: 349px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 30px;
}

.callout div {
  display: flex;
  gap: 30px;
  align-items: center;
}

.callout div h4,
.callout div i {
  font-size: 32px;
  font-weight: bold;
}

.callout h1 {
  font-size: 48px;
}

.btn-callout {
  width: 281px;
  height: 63px;
  background-color: white;
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-callout:hover {
  color: white;
}

/* Footer */
footer {
  background-color: var(--black);
  display: flex;
  justify-content: space-between;
  padding: 20px 50px 20px 50px;
  align-items: center;
}

footer h1 {
  font-size: 48px;
  font-weight: bold;
  color: white;
  transition: all ease-in-out 0.3s;
}

footer h1:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.social-box {
  width: 50px;
  height: 50px;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.social-box i {
  font-size: 30px;
  color: white;
  transition: color 0.5s ease-in-out;
}

.social-box:hover {
  background-color: var(--accent);
  color: white;
}

.social-box:hover i {
  color: white;
}

a {
  text-decoration: none !important;
}

/* Menu Page */
.menu-navbar {
  z-index: 998;
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  display: flex;
  padding: 25px 155px;
  background-color: #f6f6f6;
  gap: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.menu-navbar a {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.menu-navbar a::after {
  height: 0.1em;
}

.menu-page {
  display: flex;
  flex-direction: column;
  margin-top: 230px;
}

.menu-category {
  margin-bottom: 100px;
}

.menu-category h1 {
  font-size: 40px;
  font-weight: bold;
}

.menu-category .divider {
  margin-top: 30px;
}

.menu-items {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
  justify-content: space-between;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu-item h4 {
  font-size: 32px;
  font-weight: 500;
}

/* Product Page */
.product {
  display: flex;
  flex-direction: column;
  margin-top: 175px;
  min-height: 100%;
}

.product-banner {
  background-color: var(--accent);
  padding: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 15%;
}

.product-headline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-banner h2 {
  font-size: 48px;
  font-weight: bold;
}

.product-banner p {
  font-weight: 400;
  font-size: 24px;
  width: 496px;
}

.product-banner h6 {
  padding: 5px 32px;
  background-color: white;
  width: fit-content;
  border-radius: 32x;
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
}

.product-info {
  display: flex;
  margin-top: 48px;
  justify-content: center;
  gap: 5%;
}

.product-size {
  display: flex;
  gap: 40px;
}

.product-size-item {
  height: 120px;
  width: 120px;
  background-color: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding-bottom: 6px;
  gap: 2px;
  border-radius: 32px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.1));
  transition: all ease-in-out 0.2s;
}

.product-size-item:hover {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}

.product-size-item img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.2s ease-in-out;
}

.product-size-item:hover img {
  transform: scale(1.1) rotate(3deg);
}

.product-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}

.btn-product {
  align-self: flex-end;
  margin: 50px;
  width: 229px;
  height: 69px;
  border-radius: 32px;
  font-size: 24px;
  font-weight: 500;
  background-color: var(--accent);
  border: solid 1px var(--accent);
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
  transition: all ease-in-out 0.2s;
}

.btn-product:hover {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.4));
  background-color: var(--black);
  color: white;
  border: solid 1px var(--black);
}

/* Contact Page */
.contact {
  margin-top: 150px;
  margin-bottom: 121px;
  display: flex;
  padding: 0px 55px;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.contact-headline {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.contact-headline h1 {
  font-size: 64px;
  font-weight: bold;
  width: 600;
}

.contact-headline h1 b {
  color: var(--accent);
}

.contact-info {
  display: flex;
  gap: 30px;
}

.contact-info p {
  font-size: 20px;
  font-weight: 600;
  margin-top: 33px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 42px;
  padding-right: 80px;
}

.contact-form input,
.contact-form textarea {
  height: 55px;
  padding: 5px;
  border: none;
  border-bottom: 1px solid var(--black);
  font-size: 36px;
  font-weight: bold;
  outline: none;
  width: 100%; 
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.2);
}

.contact-images {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.contact-images img {
  width: 100%;
}

.btn-contact {
  width: 248px;
  height: 77px;
  border-radius: 12px;
  margin: 0px;
  align-self: self-start;
  justify-content: end;
}

.btn-contact:hover {
  font-size: 26px;
}

/* Laptop and Tablet */ 
@media (max-width: 1024px) and (min-width: 0px) {
  /* Navbar */
  nav {
    padding: 15px 20px;
  }
  /* Hero Page Section */
  .swiper-button-prev::after {
    left: 20px;
    top: 55px;
  }

  .swiper-button-next::after {
    right: 20px;
    top: 50px;
  }

  .banner img {
    flex: 1;
    min-width: 364px;
    width: fit-content;
    height: auto;
  }

  .banner_1 div,
  .banner_2 div,
  .banner_3 div {
    min-width: 364px;
    width: fit-content;
    padding: 30px;
    flex: 1;
  }

  .banner_1 div h1,
  .banner_2 div h1,
  .banner_3 div h1 {
    font-size: 42px;
  }

  .banner_1 div h2 {
    font-size: 32px;
  }

  .banner_1 div p,
  .banner_2 div p,
  .banner_3 div p {
    margin-bottom: 30px;
  }

  .banner_2 div p {
    font-size: 19px;
    margin-bottom: 37px;
  }

  .banner_3 div h1 {
    margin-bottom: 14px;
  }
  
  .banner_3 div p {
    font-size: 24px;
    margin-bottom: 55px;
  }

  /* Category Section */
  .category {
    margin: 30px 16px 88px 16px;
    gap: 16px;
  }

  .category-item {
    width: 172px;
    height: 183px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .category-item h4 {
    font-size: 24px;
  }

  /* About Section */
  .about-container {
    flex-direction: column;
  }

  .about-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 100%;
    margin-bottom: 50px;
  }

  /* Testimonials Section */
  .testimonials h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 50px;
  }

  .testimony-container {
    flex-direction: column;
    gap: 24px;
  }

  .testimony {
    padding: 6Opx 45px;
    min-width: 547px;
    flex: 1;
  }

  .testimony p {
    font-size: 20px;
    font-weight: 500;
  }

  .testimony p b {
    color: var(--accent);
  }

  .divider {
    width: 700px;
  }

  /* Footer */
  .callout {
    text-align: center;
    height: 100%;
    padding: 20px;
    background-image: url("img/callout-img-tablet.png");
  }

  .callout div {
    flex-direction: column-reverse;
  }

  .callout div h4 {
    width: 420px;
  }

  .callout h1 {
    width: 634px;
    font-size: 48px;
  }

  /* Menu Page */
  .menu-navbar {
    top: 100px;
    padding: 20px 130px;
  }

  .menu-category {
    padding: 50px;
    min-width: 320px;
    width: 100%;
  }

  /* Product Page */
  .product-banner {
    padding: 16px;
    gap: 10%;
  }

  .product-banner p {
    font-size: 20px;
    min-width: 396px;
    width: 100%;
  }

  .product-info {
    flex-direction: column;
    padding: 0px 84px;
    margin-top: 24px;
    gap: 24px;
  }

  /* Contact Page */
  .contact {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .contact h1 {
    text-align: center;
  }

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

  .contact-form {
    padding-right: 0px;
  }

  .contact .contact-images {
    flex-direction: row;
    margin-top: 50px;
  }
}

/* Phones */
@media (max-width: 767px) and (min-width: 0px) {
  /* Navbar */
  nav {
    padding: 20px 30px;
    width: 100%;
  }

  nav .btn {
    display: block;
    color: var(--black);
    font-size: 24px;
  }

  .btn-nav {
    display: none;
  }

  .btn-link {
    display: block;
    border: 1px solid var(--black);
  }

  nav .menu {
    position: fixed;
    background: var(--accent);
    flex-direction: column;
    min-width: 70%;
    height: 100vh;
    top: 0%;
    right: -100%;
    padding: 50px;
    transition: 0.5s;
    transition-property: right;
  }

  nav .menu.active {
    right: 0;
  }

  nav .menu .close-btn {
    position: absolute;
    top: 0;
    left: 0;
    margin: 25px;
    color: white;
  }

  nav .menu a {
    display: block;
    font-size: 20px;
    margin: 20px;
    padding: 0 15px;
    color: white;
  }

  /* HeroPage */
  .banner,
  .banner_1 {
    flex-direction: column;
    overflow: hidden;
  }

  .banner_1 {
    flex-direction: column-reverse;
  }

  .swiper-button-prev::after {
    left: 0;
    top: -95px;
  }

  .swiper-button-next::after {
    right: 0;
    top: -100px;
  }

  .banner img {
    flex: 1;
    height: auto;
    max-width: 100%;
  }

  .banner_1 div,
  .banner_2 div,
  .banner_3 div {
    min-width: 320px;
    padding: 20px;
    flex: 1;
  }

  .banner_1 div h1,
  .banner_2 div h1,
  .banner_3 div h1 {
    font-size: 32px;
  }

  .banner_1 div h2 {
    font-size: 24px;
  }

  .banner_1 div p {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .banner_2 div p,
  .banner_3 div p {
    margin-bottom: 13px;
  }

  .banner_2 div p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .banner_3 div h1 {
    margin-bottom: 14px;
  }

  .banner_3 div p {
    font-size: 16px;
    margin-bottom: 45px;
  }

  /* Category Section */
  .category {
    gap: 20px;
    flex-wrap: wrap;
  }

  .category-item {
    width: 128px;
    height: 96px;
  }

  .category-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  /* About */ 
  .about {
    text-align: center;
    font-size: 40px;
  }

  .about h1 {
    text-align: center;
    font-size: 40px;
  }

  .about-headline {
    padding: 0px 33px;
    flex-grow: 1;
    align-items: center;
  }

  .about-headline p {
    font-size: 16px;
    word-wrap: break-word;
  }

  .about-container {
    min-width: 320px;
    width: 100%;
  }

  /* Testimonials */
  .testimonials h1 {
    font-size: 20px;
  }

  .testimony-container {
    gap: 16px;
    padding: 0px 20px;
  }

  .testimony {
    padding: 40px 20px;
    min-width: 271px;
    width: 100%;
    gap: 16px;
  }

  .testimony p {
    font-size: 16px;
  }

  .divider {
    width: 100%;
    margin-bottom: 50px;
  }

  /* Footer */
  .callout {
    background-image: url("img/callout-img-tablet.png");
  }

  .callout div h4 {
    width: fit-content;
    font-size: 16px;
  }

  .callout h1 {
    width: fit-content;
    font-size: 24px;
  } 

  .btn-callout {
    width: 214px;
    height: 50px;
    font-size: 20px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  /* Menu Page */
  html {
    scroll-padding-top: 30vh;
  }

  .menu-navbar {
    top: 110px;
    padding: 20px 20px;
    gap: 20px;
  }

  .menu-navbar a {
    font-size: 8px;
    font-size: clamp(10px, 3vw, 16px);
  }

  .menu-category {
    padding: 10px;
  }

  .menu-item {
    gap: 10px;
  }

  .menu-item img {
    width: 100px;
  }

  /* Product Page */
  .product-banner {
    flex-direction: column;
  }

  .product-headline p {
    min-width: 320px;
    width: 100%;
  }

  .product .product-info {
    padding: 20px;
  }

  .product-size {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  /* Contact Page */
  .contact {
    padding: 0px 20px;
    margin-bottom: 20px;
  }

  .contact h1 {
    font-size: 32px;
    width: 100%;
  }

  .contact-info {
    flex-direction: column;
    gap: 4px;
    align-items: center;
    margin-top: 16px;
  }

  .contact-info p {
    font-size: 16px;
    opacity: 0.6;
    margin-top: 0px;
  }
  
  .contact-form {
    padding-right: 0px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 20px;
  }

  .contact-images img:nth-child(2) {
    display: none;
  }

  .contact-images img:nth-child(1) {
    width: 100%;
  }
}

@media (max-width: 520px) and (min-width: 456px) {
  .category-item {
    width: 150px;
    height: 120px;
  }

  .category-item h4 {
    font-size: 18px;
  }
}

@media (max-width: 603px) and (min-width: 521px) {
  .category-item {
    width: 180px;
    height: 150px;
  }
}


