/** CSS COMBINED **/
:root {
  --primary: #ecc49c;
  --bg: #fab347;
  --accent: #f37d0f;
  --accent-2: #e47f2d;
  --card: #f89442;
  --text: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 99999;
}
.skip-link:focus {
  left: 12px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.05rem 7%;
  background-color: var(--accent);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.75);
}

.navbar-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.navbar-nav a {
  color: #fff;
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.35rem 0;
  position: relative;
}

.navbar-nav a:hover {
  color: var(--bg);
}

.navbar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  background: var(--bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s linear;
}

.navbar-nav a:hover::after {
  transform: scaleX(0.6);
}

/* sections spacing */
section {
  scroll-margin-top: 90px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("img/risol.png");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 5.5rem;
  padding-bottom: 3rem;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 900;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  font-weight: 800;
  transition:
    transform 0.12s ease,
    filter 0.2s ease,
    background 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: #25d366;
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.hero-highlights li {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 0.7rem 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

/* Titles */
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  margin-bottom: 2.5rem;
  font-weight: 900;
}

/* About */
.about {
  padding: 8.5rem 0 3.5rem;
  background-color: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.5rem;
  align-items: center;
}

.about-img img {
  width: 330px;
  margin-inline: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.about-content p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.notice {
  margin: 1.25rem 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.notice h4 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.notice ul {
  padding-left: 1.1rem;
}

.notice-foot {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Menu */
.menu {
  padding: 8.5rem 0 3.5rem;
  background-color: var(--accent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.qty-controls {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.qty-controls button {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  width: 42px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 900;
  transition: 0.2s;
}

.qty-controls button:hover {
  background: rgba(255, 255, 255, 0.26);
}

.qty-value {
  min-width: 36px;
  text-align: center;
  font-weight: 900;
  font-size: 1.15rem;
}

.btn-clear {
  width: auto !important;
  padding: 0 0.9rem;
  height: 38px !important;
  background: rgba(0, 0, 0, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  font-size: 0.95rem !important;
}

.menu-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition:
    transform 0.15s ease,
    background 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

.menu-card-img {
  width: 100%;
  height: 165px;
  border-radius: 999px;
  object-fit: cover;
  margin-inline: auto;
  background: rgba(0, 0, 0, 0.1);
}

.menu-card-title {
  margin-top: 1.1rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.menu-card-price {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
}

.menu-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Purchase / cart */
.purchase {
  padding: 8.5rem 0 4rem;
  background-color: var(--accent);
}

.purchase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 1.25rem;
}

.purchase-subtitle {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 0.85rem;
}

.cart-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 0.6rem;
  align-items: center;
}

.cart-line-name {
  font-weight: 900;
}

.cart-line-qty {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.cart-line-sub {
  font-weight: 900;
  white-space: nowrap;
}

.cart-empty {
  display: none;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.cart-total {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cart-total strong {
  font-size: 1.2rem;
}

.cart-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cart-note {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.purchase-info ul {
  padding-left: 1.1rem;
}

.purchase-info li {
  margin-bottom: 0.45rem;
}

/* Contact */
.contact {
  padding: 8.5rem 0 4rem;
  background-color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 1.25rem;
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.map {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: saturate(1.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.75rem;
}

.input-group {
  display: flex;
  align-items: center;
  background-color: rgba(236, 196, 156, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  padding-left: 1rem;
  gap: 0.75rem;
}

.input-group i {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #fff;
}

.input-group input {
  width: 100%;
  padding: 0.95rem 1rem;
  font-size: 1.05rem;
  background: transparent;
  color: #fff;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.btn-submit {
  width: 100%;
  background-color: #eea96c;
  color: #fff;
}

.btn-submit:hover {
  filter: brightness(0.98);
}

.contact-note {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* Footer */
.footer {
  background-color: var(--accent-2);
  padding: 2.8rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem 2rem;
  align-items: center;
}

.footer .socials {
  display: flex;
  gap: 0.75rem;
}

.footer .socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: 0.2s;
  color: #fff;
}

.footer .socials a:hover {
  background: #fff;
  color: var(--accent);
}

.footer .links {
  display: flex;
  justify-content: flex-end;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer .links a {
  color: #fff;
  padding: 0.5rem 0.75rem;
  font-weight: 800;
}

.footer .links a:hover {
  color: var(--bg);
}

.footer .credit {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
}

.footer .credit a {
  color: #fff;
  font-weight: 900;
}

/* Review section styles */
.review {
  padding: 8.5rem 0 4rem;
  background-color: var(--accent);
}

.review-grid-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: stretch;
}

#review .review-grid {
  width: 100%;
}

#review .review-form-wrap {
  width: 100%;
}

.review-list {
  min-height: 10rem;
}

.review-form-wrap {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.review-form-title {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
}

.review-form input,
.review-form select,
.review-form textarea {
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.review-form-hint {
  margin-top: -0.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.review-grid {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 1.3rem;
  transition:
    transform 0.18s ease,
    background 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 0.9rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(236, 196, 156, 0.55),
    rgba(243, 125, 15, 0.65)
  );
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.review-stars {
  font-size: 1rem;
  color: #ffe08a;
  letter-spacing: 2px;
}

.review-text {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 0.95rem;
}

.review-rating-row {
  display: flex;
  justify-content: flex-start;
}

.review-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1000px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-grid-layout {
    grid-template-columns: 1fr;
  }
}

/* About extra content */
.about-extra {
  margin-top: 1.4rem;
  padding: 1.1rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-extra-title {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.about-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-extra-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 1rem;
}

.about-extra-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.about-extra-card h5 {
  font-size: 1.03rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.about-extra-card p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  font-size: 0.98rem;
}

.about-extra-steps {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.about-step {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-step-no {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 196, 156, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 900;
}

.about-step h5 {
  font-weight: 900;
  margin-bottom: 0.25rem;
  font-size: 1.03rem;
}

.about-step p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  font-size: 0.98rem;
}

.about-faq {
  display: grid;
  gap: 0.75rem;
}

.about-faq-item {
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-faq-item h5 {
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.about-faq-item p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  font-size: 0.98rem;
}

.about-extra-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 1rem;
}

@media (max-width: 1000px) {
  .about-extra-grid {
    grid-template-columns: 1fr;
  }

  .about-extra-steps {
    grid-template-columns: 1fr;
  }

  .about-extra-cta {
    justify-content: center;
  }
}

@media (min-width: 1001px) {
  #about .about-grid {
    align-items: start;
  }

  .about-content {
    min-height: 0;
  }

  .about-extra {
    margin-top: 1.2rem;
  }

  .about-extra-grid,
  .about-extra-steps,
  .about-faq {
    max-width: none;
    width: 100%;
  }

  .about-extra {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  #about .about-grid {
    align-items: stretch;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .about-extra {
    flex: 1;
  }
}

@media (max-width: 1000px) {
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-img img {
    width: min(320px, 80vw);
  }

  .about-content {
    text-align: left;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map {
    height: 320px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer .links {
    justify-content: center;
  }

  .footer-inner {
    justify-items: center;
  }
}

@media (max-width: 520px) {
  .navbar-nav {
    gap: 0.7rem;
  }

  .navbar-logo {
    font-size: 1.35rem;
  }

  .navbar-nav a {
    font-size: 0.92rem;
  }

  .navbar {
    padding: 0.75rem 4.5%;
  }

  .hero-inner {
    padding-top: 5.2rem;
  }
}
