* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: hsl(0, 0%, 0%);
    --color-gray: hsl(0, 0%, 75%);
    --color-white: hsl(0, 0%, 100%);
    --color-green: hsl(120, 100%, 50%);
    --color-yellow: hsl(43, 100%, 50%);
    --color-red: hsl(0, 100%, 50%);
    --font-family: "Oswald", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-black);
    color: var(--color-white);
}



.hero-wrapper {
  position: relative;
  background-image: url(images/chalkboard-background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 5rem;
  z-index: 0;
}

/* 🌒 Gradient overlay */
.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.7)
  );
  z-index: -1;
}




/* Header layout desktop */
header {
    background: none;
  padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
    flex-wrap: wrap;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* logo link */
.logo a {
    display: inline-block;
    position: relative;
    color: var(--color-white);
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(to right, var(--color-white) 50%, var(--color-yellow) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: 200% 100%;
    background-position: left;
}

.logo a:hover {
    background: linear-gradient(to right, var(--color-yellow) 50%, var(--color-white) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-position: right;
}


/* Logo */
/* .logo {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--color-yellow);
    cursor: pointer;
} */

/* Nav list desktop */
.nav-list {
    display: flex;
    list-style: none;
    gap: 1rem;
    padding: 1rem 0;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
}

nav a {
    text-decoration: none;
    color: var(--color-white);
}

.dropdown-menu {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-black);
    padding: 0.5rem;
    list-style: none;
    top: 100%;
    left: 0;
    flex-direction: column;
}

.dropdown-menu:hover .dropdown-content {
    display: flex;
}

.cta-header-button {
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.cta-header-button:hover {
    background-color: var(--color-black);
    color: var(--color-yellow);
    border: 1px solid var(--color-yellow);
}

/* Hamburger styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 100;
}

.hamburger-menu span {
    background-color: var(--color-white);
    height: 3px;
    width: 100%;
    margin: 4px 0;
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Animated open state */
.hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}





/* Responsive header for tablets and phones */
@media (max-width: 768px) {
   .nav-list {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
}

.nav-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


    .hamburger-menu {
        display: flex;
    }

      header {
    padding: 1.5rem;
  }

  .header-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

    .cta-header-button {
        margin-top: 1rem;
        display: none;
    }

    
}



/* main  */
main {
  background: none;
  padding: 5rem 2rem;
  box-shadow: none; /* remove inset shadow if it breaks the flow */
    
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: center; /* centers overall content */
    gap: 4rem; /* reduced from 25rem for tighter alignment */
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto; /* centers container in page */
}


/* Levitating burger */
.main-container img {
    width: 45%;
    max-width: 420px;
    height: auto;
    animation: floatBurger 3s ease-in-out infinite alternate;
}

.main-h1{
    font-size: 5rem;
}


main p{
  font-weight: 200;
}


/* Float effect */
@keyframes floatBurger {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.main-content {
    flex: 1;
    color: var(--color-white);
}

.icon-row {
  display: flex;
  gap: 5rem;
  margin: 1.5rem 0;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-item i {
  font-size: 2rem;
  color: var(--color-yellow);
}



.icon-item span {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-white);
  font-weight: 500;
}


.cta-main-button {
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-main-button:hover {
    background-color: var(--color-black);
    color: var(--color-yellow);
    border: 1px solid var(--color-yellow);
}

.main-hr{
    border: none;
    border-top: 2px solid var(--color-yellow);
    width: 60px;
    margin: 1rem 0;
}

@media (max-width: 768px) {
  main {
    padding: 3rem 1rem;
    text-align: center;
  }

  .main-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
  }

  .main-container img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .main-content {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .main-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 450px;
  }

  .main-hr {
    margin: 1rem auto;
  }

  .icon-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  .cta-main-button {
    align-self: center;
  }
}





/* types food section styling */
.types-buy-online {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10rem auto;
}

.types-buy-online > div {
    border-radius: 1rem;
    display: flex;
    align-items: center;
    padding: 1rem;
    width: 450px;
}

/* 🟡 Individual backgrounds */
.food-types {
    background-color: var(--color-yellow);
    opacity: 0.8;
}



.snacks-types {
    background-color: var(--color-green);
    opacity: 0.8;
}

.beverage-types {
    background-color: var(--color-red);
    opacity: 0.8;
}

/* 👈 Image static and left aligned */
.types-buy-online img {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

/* 🍽 Text styling inside each card */
.types-buy-online .content {
    display: flex;
    flex-direction: column;
}

.types-buy-online h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--color-white);
}

.types-buy-online p {
    font-size: 0.95rem;
    color: var(--color-white);
    margin-bottom: 0.6rem;
}

.types-buy-online a {
  position: relative;
  color: var(--color-black);
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.2s;
  width: fit-content;
  overflow: hidden;
}

/* 👇 Underline element */
.types-buy-online a::after {
  content: "";
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* 🧲 Reveal underline on hover */
.types-buy-online a:hover::after {
  transform: scaleX(1);
}


/* 📱 Responsive stack */
@media (max-width: 600px) {
    .types-buy-online {
        flex-direction: column;
        align-items: center;
    }

    .types-buy-online > div {
        width: 90%;
        margin-bottom: 1rem;
    }
}





/* promo cards section */

.promo-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.promo {
  background-color: rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: row; 
  align-items: center;
  gap: 1.5rem;
  width: auto;
}



/* 📄 Text block */
.promo-text {
  flex: 1;
}

.promo h4 {
  font-size: 1.3rem;
  color: var(--color-yellow);
  margin-bottom: 0.3rem;
  text-align: left;
}

.promo h5 {
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  text-align: left;
}

.promo p {
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: 0.8rem;
  text-align: left;
}

.promo a {
  position: relative;
  color: var(--color-yellow);
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  overflow: hidden;
}

.promo a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.3rem;
  width: 100%;
  height: 2px;
  background-color: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.promo a:hover {
  color: var(--color-white);
}

.promo a:hover::after {
  transform: scaleX(1);
  background-color: var(--color-white);
}

/* 🍔 Image on the right */
.promo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 0.7rem;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.promo img:hover {
  transform: translateY(-6px) scale(1.08);
}

/* 📱 Mobile: stack with image first */
@media (max-width: 700px) {
  .promo {
    flex-direction: column-reverse;
    text-align: center;
    padding: 1.2rem;
  }

  .promo-text {
    text-align: center;
  }

  .promo h4,
  .promo h5,
  .promo p {
    text-align: center;
  }

  .promo img {
    margin-bottom: 1rem;
  }
}






/* best burger section */

.best-section {
  margin: 10rem auto;
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  border-radius: 1.2rem;
  padding: 2.5rem 2rem;
  max-width: 1000px;
  background: transparent;
  flex-wrap: nowrap; /* prevent stacking on larger screens */
  height: auto; /* remove fixed height */
}

/* 🍔 Left side image */
.best-section img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  flex: 1;
  height: auto; /* let flex parent control height */
  align-self: stretch;
  max-width: 400px;
  min-width: 300px;
}

/* 📄 Right side content */
.best-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Typography & spacing */
.best-content h2 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 0.7rem;
}

.best-hr {
    border: none;
    border-top: 2px solid var(--color-yellow);
    width: 60px;
    margin: 0.5rem 0 1rem 0;
}

.best-content p {
    color: var(--color-white);
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}

.best-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem 1.2rem;
}

.best-content ul li {
    position: relative;
    padding-left: 2rem;
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 0; /* Remove margin for grid */
    min-width: 0;
    word-break: break-word;
}

.best-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-yellow);
    font-size: 1.2rem;
    font-weight: bold;
}

.cta-about-us {
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 0.6rem 2rem;
    border: none;
    border-radius: 0.2rem;
    font-size: 1.05rem;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: bold;
    transition: background 0.2s;
    align-self: flex-start;
}

.cta-about-us:hover {
    background-color: var(--color-black);
    color: var(--color-yellow);
}

/* 📱 Responsive tweak */
@media (max-width: 800px) {
  .best-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .best-section img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 1.5rem;
  }

  .best-content {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .best-content h2,
  .best-content p,
  .cta-about-us {
    text-align: center;
  }

  .best-content ul {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left; /* preserves alignment of checkmarks */
    width: 100%;
    max-width: 400px;
  }

  .cta-about-us {
    width: 100%;
    max-width: 200px;
    margin: 1rem auto;
  }
}



/* our best menu section */

.our-best-section {
    background-color: var(--color-black);
    padding: 3rem 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.13);
    margin: 10rem auto;
    max-width: 1100px;
}

.our-best-section h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.our-best-section hr {
    border: none;
    border-top: 2px solid var(--color-yellow);
    width: 60px;
    margin: 2rem auto;
}

.our-best-section p {
    color: var(--color-white);
    font-size: 1.08rem;
    margin-bottom: 2rem;
    text-align: center;
}

.sorting-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.array-buttons {
    background-color: var(--color-yellow);
    color: var(--color-black);
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: var(--font-family);
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s;
}

.array-buttons:hover,
.array-buttons.active {
    color: var(--color-white);
}

.food-array,
.snack-array,
.beverage {
    margin-top: 1.5rem;
}

.squared-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.card {
    background-color: rgba(255,255,255,0.07);
    border-radius: 1rem;
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    max-width: 210px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
    cursor: pointer;
    transform: translateY(-8px) scale(1.04);
}

.card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 0.7rem;
    margin-bottom: 0.7rem;
    transition: transform 0.3s;
}

.card:hover img {
    transform: scale(1.12) rotate(-6deg);
}

.card h3 {
    font-size: 1.05rem;
    color: var(--color-yellow);
    margin-bottom: 0.3rem;
    text-align: center;
}

.card p {
    font-size: 0.95rem;
    color: var(--color-white);
    margin-bottom: 0.4rem;
    text-align: center;
}

.card .price {
    color: var(--color-yellow);
    font-weight: bold;
    font-size: 1.05rem;
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .squared-cards {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    .card {
        min-width: 120px;
        max-width: 160px;
        padding: 1rem 0.5rem;
    }
    .card img {
        width: 55px;
        height: 55px;
    }
}




/* video section */

.video {
    margin: 10rem auto;
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-info {
    text-align: center;
    z-index: 2;
    max-width: 720px;
}

.video h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.video hr {
    border: none;
    border-top: 2px solid var(--color-yellow);
    width: 60px;
    margin: 2rem auto;
}

.video p {
    font-size: 1.08rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

#play-video {
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    animation: pulsePlay 1.2s infinite;
    transition: background 0.2s;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


#play-video:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

.video-embed {
    display: none;
    position: relative;
    width: 100%;
    max-width: 992px;
    margin-top: 2rem;
    z-index: 2;
}

.video-embed iframe {
    width: 100%;
    height: 560px;
    border-radius: 1rem;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

/* Button animation */
@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(255,0,0,0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(255,0,0,0);
        transform: scale(1.08);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,0,0,0);
        transform: scale(1);
    }
}

@media (max-width: 700px) {
    .video {
        min-height: 250px;
        padding: 2rem 1rem;
    }

    #play-video {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .video-embed iframe {
        height: 300px;
    }
}




/* get app section */
.get-the-app {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    border-radius: 1.2rem;
    padding: 2.5rem 2rem;
    margin: 10rem auto;
    max-width: 1000px;
    flex-wrap: wrap;
}

/* 👈 Image container */
.app-image img {
    width: 320px;
    max-width: 40vw;
    border-radius: 1rem;
    transition: transform 0.4s ease;
    animation: floatAppImage 3s ease-in-out infinite alternate;
}

@keyframes floatAppImage {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.app-image img:hover {
    transform: translateY(-22px) scale(1.08);
}

/* 📄 Content container */
.app-content {
    flex: 1;
    min-width: 280px;
}

.app-content h2 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 0.7rem;
}

.app-hr {
    border: none;
    border-top: 2px solid var(--color-yellow);
    width: 60px;
    margin: 1rem 0 1rem 0;
}

.app-content p {
    color: var(--color-white);
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}

/* 📦 Icon containers */
.small-containers {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.small-containers .container {
    background-color: rgba(255,255,255,0.07);
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    min-width: 260px;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    transition: box-shadow 0.3s, transform 0.3s;
    gap: 1.2rem;
}

.small-containers .container i {
  font-size: 2rem;
  background-color: var(--color-yellow);
  color: var(--color-white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 0;
  margin-right: 1rem;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.small-containers .container i:hover {
  cursor: pointer;
  color: var(--color-black);
  transform: scale(1.01); 
}



.small-containers .container-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.small-containers .container h3 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.3rem;
    text-align: left;
    order: 0;
}

.small-containers .container p {
    font-size: 0.95rem;
    color: var(--color-white);
    text-align: left;
    order: 1;
}



/* 📲 App store buttons (image only, no text) */
.apple-playstore {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.apple-card,
.playstore {
    background-color: var(--color-black);
    border-radius: 0.7rem;
    padding: 0.7rem 1.2rem;
    transition: background 0.2s, transform 0.3s;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-card img,
.playstore img {
    width: 140px;
    height: auto;
    display: block;
    transition: filter 0.3s;
}

.apple-card:hover,
.playstore:hover {
    transform: translateY(-8px);
}



/* 📱 Responsive */
@media (max-width: 800px) {
    .get-the-app {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .app-image img {
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 350px;
    }

    .app-hr {
    
    margin: 1rem auto;
}

    .small-containers {
        gap: 1rem;
    }

    .small-containers .container {
        flex-direction: column;
        align-items: center;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        text-align: center;
        gap: 0.5rem;
    }

    .small-containers .container i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .small-containers .container-content {
        align-items: center;
        text-align: center;
    }

    .apple-playstore {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
}





/* customer review section */

.customer-review {
  background-color: var(--color-black);
  padding: 3rem 4rem;
  border-radius: 1.2rem;
  margin: 10rem auto;
  max-width: 1100px;
  overflow: hidden;
}

.customer-review h2 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.customer-review hr {
  border: none;
  border-top: 2px solid var(--color-yellow);
  width: 60px;
  margin: 2rem auto;
}

.customer-review p {
  color: var(--color-white);
  font-size: 1.08rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* 🔄 Slider styles */
.comment-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.comment-slider {
  display: flex;
  gap: 2rem;
  width: fit-content;
}




/* 🧾 Individual card */
.comment-card {
  background-color: rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.2rem 1rem;
  min-width: 300px;
  max-width: 300px;
  flex: 0 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}



/* 💬 Comment + quote icon */
.comment-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.comment-body h5 {
  font-size: 1rem;
  color: var(--color-white);
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.comment-body i {
  font-size: 2rem;
  color: var(--color-yellow);
  flex-shrink: 0;
}

/* 👤 Avatar + name/occupation stacked */
.comment-footer {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-top: auto;
}

.comment-footer img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.comment-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comment-info .name {
  font-size: 1rem;
  color: var(--color-white);
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.comment-info .occupation {
  font-size: 0.9rem;
  color: var(--color-white);
  opacity: 0.8;
}

/* 📱 Responsive */
@media (max-width: 800px) {
  .comment-card {
    min-width: 80vw;
  }


  .customer-review {
  padding: 3rem 2rem;
  
}
}




/* get offer section */

.get-special-offer {
    position: relative;
    padding: 12.5rem 2rem;
    margin: 3rem auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* 🖼️ Full-width background image */
.get-special-offer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}


.get-special-offer h2,
.get-special-offer hr,
.get-special-offer p,
.book-reservation {
    position: relative;
    z-index: 1;
    text-align: center;
}

.get-special-offer h2 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 0.7rem;
}

.get-special-offer hr {
    border: none;
    border-top: 2px solid var(--color-yellow);
    width: 60px;
    margin: 2rem auto;
}

.get-special-offer p {
    color: var(--color-white);
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
    max-width: 650px;
}

.book-reservation {
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 0.7rem 1.6rem;
    border: none;
    border-radius: 0.2rem;
    font-size: 1.08rem;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.2s, color 0.2s;
}

.book-reservation:hover {
    background-color: var(--color-black);
    color: var(--color-yellow);
}

@media (max-width: 800px) {
    .get-special-offer {
        padding: 2rem 1rem;
        max-width: 98vw;
    }
    .get-special-offer h2 {
        font-size: 1.4rem;
    }
    .get-special-offer p {
        font-size: 1rem;
    }
    .book-reservation {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}



/* news and article section */

.news-article {
    padding: 3rem 2rem;
    border-radius: 1.2rem;
    margin: 10rem auto;
    max-width: 1100px;
}

.news-article h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.news-article hr {
    border: none;
    border-top: 2px solid var(--color-yellow);
    width: 60px;
    margin: 2rem auto;
}

.news-article p {
    color: var(--color-white);
    font-size: 1.08rem;
    margin-bottom: 2rem;
    text-align: center;
}

.article-cards {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}


.article-card {
  flex: 1 1 calc(33.333% - 2rem); 
  max-width: calc(33.333% - 2rem);
  border-radius: 1rem;
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}


.article-card:hover {
    cursor: pointer;
}

.article-card img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.7rem;
}


.small-blackbox-text {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-black);
    color: var(--color-yellow);
    padding: 0.25rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    z-index: 2;
}

.article-card h3 {
    font-size: 1.15rem;
    color: var(--color-yellow);
    margin-bottom: 0.3rem;
    text-align: center;
}

.article-card p {
    font-size: 0.97rem;
    color: var(--color-white);
    margin-bottom: 0.8rem;
    text-align: center;
}

.article-card a {
    color: var(--color-yellow);
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-card a:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

@media (max-width: 800px) {
  .article-cards {
    flex-direction: column;
    align-items: center;
  }

  .article-card {
    flex: 1 1 100%;
    max-width: 95vw;
    width: 100%;
    padding: 1rem 0.5rem;
  }

  .article-card img {
    height: 120px;
  }

  .small-blackbox-text {
    top: 10px;
    left: 10px;
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem;
  }
}




/* subscribe to news section */

.subscribe-to-news {
  background-color: var(--color-yellow);
  padding: 5.5rem 2rem;
  margin: 10rem auto;
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

/* Column for heading + description */
.text-block {
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.subscribe-to-news h2 {
  color: var(--color-black);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.subscribe-to-news p {
  color: var(--color-black);
  font-size: 1.1rem;
}

/* Row layout for input + button */
.form-controls {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  justify-content: center;
}

/* Email input */
.subscribe-to-news input[type="email"] {
  background-color: var(--color-black);
  color: var(--color-white);
  border: none;
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  flex: 1;
  outline: none;
  transition: border 0.2s;
}

.subscribe-to-news input[type="email"]:focus {
  border: 2px solid var(--color-green);
}

/* Submit button */
.subscribe-to-news button[type="submit"] {
  background-color: var(--color-black);
  color: var(--color-white);
  border: none;
  border-radius: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 1.08rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.subscribe-to-news button[type="submit"]:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.subscribe-to-news i {
  font-size: 1.1rem;
}

/* 📱 Responsive layout */
@media (max-width: 700px) {


    .subscribe-to-news {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
    }

  .form-controls {
    flex-direction: column;
    align-items: stretch;
    max-width: 98vw;
  }

  .subscribe-to-news h2 {
    font-size: 1.5rem;
  }

  .subscribe-to-news p {
    font-size: 1rem;
  }

  .subscribe-to-news input[type="email"],
  .subscribe-to-news button[type="submit"] {
    font-size: 1rem;
    width: 100%;
  }

  .subscribe-to-news button[type="submit"] {
    justify-content: center;
    padding: 0.6rem 1rem;
  }

  ::placeholder {
    text-align: center;
}
}



/* footer */

footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 3rem 2rem 2rem;
  border-radius: 1.2rem 1.2rem 0 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.13);
  margin: 0 auto;
  max-width: 1100px;
  font-family: var(--font-family);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 240px;
}

.footer-brand h1 {
  font-size: 2rem;
  color: var(--color-yellow);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-brand p {
  font-size: 1.05rem;
  max-width: 600px;
  color: var(--color-white);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex: 1;
  min-width: 240px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.support-links,
.contact-info {
  flex: 1;
  min-width: 180px;
}

.support-links h3,
.contact-info h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.support-links a {
  display: block;
  color: var(--color-yellow);
  text-decoration: none;
  font-size: 1rem;
  margin: 0.2rem 0;
}

.support-links a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.contact-info span {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 0.6rem;
  font-size: 1rem;
}

.contact-info i {
  color: var(--color-yellow);
  font-size: 1.1rem;
}

/* 🔗 Social icons */
.socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem 0 1.2rem;
}

.socials a {
  color: var(--color-yellow);
  border-radius: 50%;
  padding: 0.6rem;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s;
}

.socials a:hover {
  color: var(--color-white);
}

footer hr {
  border: none;
  border-top: 2px solid var(--color-yellow);
  width: 100%;
  margin: 1.5rem auto;
}

.developer {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.developer a {
  color: var(--color-yellow);
  text-decoration: none;
  font-weight: bold;
}

.developer a:hover {
  color: var(--color-red);
  text-decoration: none;
}

.copyright {
  text-align: center;
  color: var(--color-white);
  font-size: 0.95rem;
  letter-spacing: 1px;
}



/* footer update */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand,
.support-links,
.contact-info,
.footer-socials {
  flex: 1 1 220px;
}

.footer-socials h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.socials a {
  color: var(--color-yellow);
  font-size: 1.3rem;
  padding: 0.6rem;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.socials a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.developer,
.copyright {
  flex: 1;
  color: var(--color-white);
}

.developer a {
  color: var(--color-yellow);
  font-weight: bold;
  text-decoration: none;
}

.developer a:hover {
  color: var(--color-green);
}

/* Responsive stays the same */


/* 📱 Responsive stack */
@media (max-width: 700px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .support-links a,
  .contact-info span {
    justify-content: center;
  }

  .socials {
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .footer-brand h1 {
    font-size: 1.4rem;
  }

  .footer-brand p {
    font-size: 1rem;
  }
}



