@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Remove default blue styling on mobile browsers */
a, a:visited, a:active, a:hover,
button, button:focus, button:active {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent; /* removes mobile highlight */
}

.btn, 
.btn:visited, 
.btn:active, 
.btn:focus, 
.btn:hover {
  color: var(--color-accent);
}


:root {
   --color-primary: #4d4d4b;
   --color-secondary: #ee2a51;
   --color-accent: #fff;
   --nav-height: 8rem;
}
html {
   font-size: 62.5%;
   margin: 0;
   padding: 0;
   scroll-behavior: smooth;
   text-transform: uppercase;
}


body {
   font-family: 'Bebas Neue', sans-serif;
   line-height: 1.5;
   background: var(--color-primary);
}

h1, h2, h3 {
  letter-spacing: 0.4rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;

}

h1 {
   color: var(--color-accent);
   font-size: 6rem;
}


h2 {
   color: var(--color-accent);
   font-size: 4rem;
}

h3 {
   color: var(--color-accent);
   font-size: 3rem;
}

p {
   color: var(--color-accent);
   font-size: 2.5rem;
   letter-spacing: 0.3rem;
   margin-top: 0;
}

/* BASIC RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* NAVBAR BASE STYLES */
.nav {
  position: relative;
  width: 100%;
  height: 0;
  padding: 0;
  background: none;
  display: block;
  z-index: 1000;
 
}

.nav__logo {
 position: relative;
 top: 1.5rem;
 left: 50%;
 transform: translateX(-50%);
 z-index: 1010;
 display: flex;
 justify-content: center;
}

/* MOBILE: hide desktop menu initially */
.nav__list-left,
.nav__list-right {
  display: none;
}

.nav__logo img {
  max-height: 10rem;
  display: block;
}

/* HAMBURGER BUTTON */
.nav__toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1020; /* above logo */
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-accent);
}

/* MOBILE OVERLAY */
.nav__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* fill screen */
  background: var(--color-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center links */
  align-items: center;
  gap: 2rem;
  z-index: 1005;
}

.nav__mobile-menu.open {
  transform: translateX(0);
}

.nav__mobile-menu .nav__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.nav__mobile-menu .nav__item a {
  font-size: 3rem;
  letter-spacing: 0.2rem;
  color: #fff;
  text-decoration: none;
}

/* DESKTOP NAVBAR */
@media (min-width: 768px) {
  .nav {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* left | logo | right */
    align-items: center;
    padding: 0;
    transition: all 0.3s ease;
  }

  /* Hide mobile hamburger and overlay */
  .nav__toggle,
  .nav__mobile-menu {
    display: none;
  }

  .nav__list {
    list-style: none;
    justify-content: space-evenly;
  }
  /* LEFT LIST */
  .nav__list-left {
    display: flex;
    grid-column: 1;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    margin-left: 3.7rem;
  }


  /* RIGHT LIST */
  .nav__list-right {
    display: flex;
    grid-column: 3;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin-right: 2rem;
  }

  /* NAV ITEMS */
  .nav__item a {
    font-size: 1.37rem;
    text-decoration: none;
    color: #fff;
    padding: 0; 
    letter-spacing: 0.2rem;
  }

  .nav__item a:hover {
    color: var(--color-secondary);
  }
  /* LOGO */
  .nav__logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    height: auto;
    margin-top: -1rem;
  }

  .nav__logo img {
    max-height: 10rem; /* adjust as needed */
    display: block;
  }

  /* SCROLLED STATE */
/* ===== SCROLLED STATE ===== */
  .nav.nav--scrolled {
    background: var(--color-primary);
    grid-template-columns: 1fr 1fr; /* remove logo column */
    padding: 2.5rem 4rem;
    display: grid;
    align-items: center;
  }

  .nav.nav--scrolled .nav__logo {
    display: none;
  }

  .nav.nav--scrolled .nav__list-left,
  .nav.nav--scrolled .nav__list-right {
    display: flex;
    align-items: center;          /* fixes vertical drop issue */
    justify-content: space-evenly; /* equal spacing */
    gap: 3rem;
  }

  .nav.nav--scrolled .nav__list-left {
    grid-column: 1;
  }

  .nav.nav--scrolled .nav__list-right {
    grid-column: 2;
  }
}

/* DESKTOP NAVBAR */
@media (min-width: 1024px) {
  .nav {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* left | logo | right */
    align-items: center;
    padding: 0;
    transition: all 0.3s ease;
  }

  /* Hide mobile hamburger and overlay */
  .nav__toggle,
  .nav__mobile-menu {
    display: none;
  }

  .nav__list {
    list-style: none;
    justify-content: space-evenly;
  }
  /* LEFT LIST */
  .nav__list-left {
    display: flex;
    grid-column: 1;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
    margin-left: 6rem;
  }


  /* RIGHT LIST */
  .nav__list-right {
    display: flex;
    grid-column: 3;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
    margin-right: 4rem;
  }

  /* NAV ITEMS */
  .nav__item a {
    font-size: 2rem;
    text-decoration: none;
    color: #fff;
    padding: 0; 
    letter-spacing: 0.2rem;
  }

  .nav__item a:hover {
    color: var(--color-secondary);
  }
  /* LOGO */
  .nav__logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    height: auto;
    margin-top: -1rem;
  }

  .nav__logo img {
    max-height: 13rem; /* adjust as needed */
    display: block;
  }

  /* SCROLLED STATE */
/* ===== SCROLLED STATE ===== */
  .nav.nav--scrolled {
    background: var(--color-primary);
    grid-template-columns: 1fr 1fr; /* remove logo column */
    padding: 2.5rem 4rem;
    display: grid;
    align-items: center;
  }

  .nav.nav--scrolled .nav__logo {
    display: none;
  }

  .nav.nav--scrolled .nav__list-left,
  .nav.nav--scrolled .nav__list-right {
    display: flex;
    align-items: center;          /* fixes vertical drop issue */
    justify-content: space-evenly; /* equal spacing */
    gap: 3rem;
  }

  .nav.nav--scrolled .nav__list-left {
    grid-column: 1;
  }

  .nav.nav--scrolled .nav__list-right {
    grid-column: 2;
  }
}

@media (min-width: 1440px) {
  .nav {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* left | logo | right */
    align-items: center;
    padding: 0;
    transition: all 0.3s ease;
  }

  /* Hide mobile hamburger and overlay */
  .nav__toggle,
  .nav__mobile-menu {
    display: none;
  }

  .nav__list {
    list-style: none;
    justify-content: space-evenly;
  }
  /* LEFT LIST */
  .nav__list-left {
    display: flex;
    grid-column: 1;
    justify-content: flex-start;
    align-items: center;
    gap: 8rem;
    margin-left: 6rem;
  }


  /* RIGHT LIST */
  .nav__list-right {
    display: flex;
    grid-column: 3;
    justify-content: flex-end;
    align-items: center;
    gap: 5rem;
    margin-right: 5rem;
  }

  /* NAV ITEMS */
  .nav__item a {
    font-size: 2.4rem;
    text-decoration: none;
    color: #fff;
    padding: 0; 
    letter-spacing: 0.2rem;
  }

  .nav__item a:hover {
    color: var(--color-secondary);
  }
  /* LOGO */
  .nav__logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    height: auto;
    margin-top: -1rem;
  }

  .nav__logo img {
    max-height: 15rem; /* adjust as needed */
    display: block;
  }

  /* SCROLLED STATE */
/* ===== SCROLLED STATE ===== */
  .nav.nav--scrolled {
    background: var(--color-primary);
    grid-template-columns: 1fr 1fr; /* remove logo column */
    padding: 2.5rem 4rem;
    display: grid;
    align-items: center;
  }

  .nav.nav--scrolled .nav__logo {
    display: none;
  }

  .nav.nav--scrolled .nav__list-left,
  .nav.nav--scrolled .nav__list-right {
    display: flex;
    align-items: center;          /* fixes vertical drop issue */
    justify-content: space-evenly; /* equal spacing */
    gap: 3rem;
  }

  .nav.nav--scrolled .nav__list-left {
    grid-column: 1;
  }

  .nav.nav--scrolled .nav__list-right {
    grid-column: 2;
  }
}


/* =========================
   HERO
========================= */

.hero {
  height: 100vh;
  background-image: url("../images/burger6-2048.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__content {
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 100%;
   position: relative;
}

.title {
  position: relative;
  top: 100%;
  left: 80%;
  transform: translateX(-80%);
}


.hero__content .btn {
  padding: 1rem 2rem;
  font-size: 2rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width:768px) {
  .hero {
  background-size: cover;
  background-position: center;
}

.hero__content .btn {
  padding: 1rem 2rem;
  font-size: 3rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}
}

@media (min-width: 1024px) {
  .hero {
    background-image: url("../images/burger6-2048.webp");
  }
}
/* Lists */
.list {
   list-style: none;
   padding-left: 0;
   margin: 0;
}


/* Links */
a {
   text-decoration: none;
}


/* Buttons */ 
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-color: #ee2a51;
}

.btn-voucher {
  display: block;
  margin: 0 auto;
  padding: 0.8rem 1.6rem;
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  border: 1px solid var(--color-accent);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-voucher:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

a.btn-voucher {
  color: var(--color-accent);
}

.block__voucher {
  display: flex;
  flex-direction: column;   /* mobile default */
  align-self: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}


/* Blocks */
.block {
   padding: 2rem 1rem;
   border: 0;
   color: var(--color-headings);
   text-align: left;
}

.block__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* horizontal centering */
  gap: 1rem;
  text-align: left; /* centers paragraphs as well */
}

.block__content-menu img {
  max-width: 100%; /* scales image */
  height: auto;   /* preserves aspect ratio */
  width: auto;
}

.block__heading-menu {
  text-align: center;
  width: 100%;
}

@media screen and (min-width:768px) {
.block__content-menu img {
  max-width: 60%; /* scales image */
  height: auto;   /* preserves aspect ratio */
  width: auto;
}

.block__content-menu {
  display: flex;
  flex-direction: column;
  align-items: center; /* horizontal centering */
  gap: 1rem;
  text-align: center; /* centers paragraphs as well */
}

.block__menu h1 {
  font-size: 5rem;
  letter-spacing: 0.2rem;
}
}

.block__heading {
   padding-top: 3rem;
   text-transform: uppercase;
}

.block__buttons {
  display: flex;
  flex-direction: column;   /* mobile default */
  align-items: center;
  gap: 2rem;
  margin-top: 8rem;
}

.block__buttons .btn:hover {
  color: var(--color-secondary);
}

.container {
   max-width: 1140px;
   margin: 0 auto;
}

/* Gallery container */
.gallery {
  width: 100%;
  overflow: hidden;
}

/* Slide wrapper */
.gallery__wrapper {
  position: relative;
  width: 100%;
}

/* Individual slides overlap */
.gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Height anchor (CRITICAL) */
.gallery__wrapper::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3; /* pick your ratio */
}

/* Images */
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* NO zoom, NO stretch */
  display: block;
}

/* Active slide */
.gallery__slide.active {
  opacity: 1;
  z-index: 1;
}


/* Arrows */
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  border: none;
  background: none;
  font-size: 3rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}

.gallery__arrow--prev { left: 1rem; }
.gallery__arrow--next { right: 1rem; }

.gallery__arrow:hover {
  color: var(--color-secondary);
}

/* Pagination dots */
/* Pagination dots overlayed at bottom of image */
.gallery__dots {
  position: absolute;
  bottom: 3.2rem;   /* distance from bottom of image */
  width: 100%;
  text-align: center;
  margin: 0;         /* remove extra margins */
  z-index: 10;
  pointer-events: auto;
}

.gallery__dot {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.gallery__dot.active {
  background: var(--color-secondary);
}

@media screen and (min-width: 768px) {
  .gallery__dots {
   bottom: 8rem;
  }
  }

@media screen and (min-width: 1024px) {
  .gallery__wrapper {
    height: 100vh;
  }

  .gallery__dots {
   bottom: 2rem;
  }
}

/* Footer Section */
.footer {
   background: #434242;
   padding-top: 3rem;
   text-align: center;
}

.footer a {
   color: var(--color-accent);
}

.footer a:hover {
   color: var(--color-secondary);
}

.footer__section {
   padding: 0.1rem;
}

.footer__section .list {
   margin: 0;
}

.footer li {
   padding-bottom: 2rem;
}

.footer__content {
   font-weight: 400;
   font-size: 2rem;
   line-height: 1.5;
   align-items: center;
}

.footer__brand {
   margin-top: 1rem;
}

.footer__brand img {
   max-width: 60%;
   display: block;
   margin: 0 auto;
}

.footer__logos {
   display: block;
   margin: 0 auto 1.5rem;
}

.footer__logos img {
   width: 4.2rem;
   height: 4.2rem;
   transition: transform 0.2s, opacity 0.2s;
}

.footer__copyright {
   font-size: 1.5rem;
   color: var(--color-accent);
   opacity: 0.8;
}


@media (min-width: 768px) {
 .footer {
   display: grid;
   margin: 0 auto;
   align-items: center;
   text-align: center;
   padding: 6rem;
}

 .footer__brand {
   display: flex;
   flex-direction: column;
   align-items: center; 
   margin-top: 5rem;
   padding: 0;
 }

 .footer__brand img {
   display: block;
   margin: 0 auto;
   max-width: 180px;
   width: 100%;
   height: auto;
   
 }

 .footer__copyright {
   margin-top: 1.5rem;
   text-align: center;
 }

 .footer__content {
   width: 100%;
   text-align: center;
 }
}

/* Reviews Section */

.reviews-carousel {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.reviews-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.review-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px 60px;
  background: #fff;
  color: var(--color-primary);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  margin: 10px 0;
}

.review-card p {
  color: var(--color-primary);
}

.review-card h4, .review-card strong {
  color: var(--color-primary);
}

.carousel-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  cursor: pointer;
  border-radius: 6px;
  z-index: 2;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn:hover {
  background: #333;
}

.reviews-platforms {
  display: flex;
  justify-content: center;   /* centers horizontally */
  flex-direction: column;
  align-items: center;
  gap: 3rem;                 /* space between logos */
  margin-top: 3rem;
}

.platform-link img {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.platform-link:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

/* Monthly Section */
.monthly__content {
  display: flex;
  flex-direction: column;
  align-items: center;       /* centers all items horizontally */
  text-align: center;        /* centers text */
  padding: 2rem 1rem;        /* side padding for mobile */
  gap: 1rem;                 /* spacing between elements */
}

.monthly__heading {
  color: var(--color-accent);
  font-size: 4rem;
  margin: 0 0 1rem 0;        /* bottom margin for spacing */
  text-align: center;        /* center the heading */
}

.monthly__image img {
  width: 100%;               /* full width of container */
  max-width: 600px;          /* optional: prevent huge images on small screens */
  height: auto;
  display: block;
  margin: 0 auto;            /* horizontal centering */
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 3rem 5rem rgba(0,0,0,0.5);
  margin-top: 2rem;
  margin-bottom: 10rem;
}

.monthly__description {
  max-width: 500px;
  margin: 0 auto;
  color: var(--color-accent);
  font-size: 3rem;
}

.monthly__features {
  padding: 0;
  margin: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 2.5rem;
}


@media (min-width: 1024px) {
  .monthly__content {
    padding: 3rem 2rem;        /* horizontal margin as % of viewport */
    gap: 2rem;
  }

  .monthly__image img {
    width: 100%;              /* nearly full width */
    max-width: 1200px;
  }

  .monthly__description,
  .monthly__features {
    max-width: 1000px;
  }

  .monthly__features {
    font-size: 3rem;
  }
}

