
:root {
  --dark-bg: #121212;
  --darker-bg: #0A0A0A;
  --medium-bg: #1E1E1E;
  --light-bg: #444444;
  --text-color: #FFFFFF;
  --accent-color: #FF3B3F;
  --highlight-color: #FFD100;
  --teal-color: #00A896;
  --neutral-color: #333333;
  --font-family: 'Roboto', sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

label {
  color: var(--text-color);
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover, a:focus {
  color: var(--highlight-color);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, .button {
  background-color: var(--accent-color);
  color: var(--text-color);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
}

button:hover, .button:hover, button:focus, .button:focus {
  background-color: var(--highlight-color);
  color: var(--darker-bg);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}


header {
  background-color: var(--darker-bg);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 150px;
  height: auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 1rem;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a:focus:after {
  width: 100%;
}


.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--darker-bg);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.1;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}


.brutalist-box {
  background-color: var(--medium-bg);
  padding: 2rem;
  margin: 2rem 0;
  border: 2px solid var(--accent-color);
}

.brutalist-heading {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.brutalist-heading:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--accent-color);
}

.oversized-text {
  font-size: 7vw;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  margin: 3rem 0;
}

.clashing-colors {
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--highlight-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
}


.chat-container {
  max-width: 800px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
}

.chat-message {
  display: flex;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.5s ease-out;
}

.chat-message.left {
  justify-content: flex-start;
}

.chat-message.right {
  justify-content: flex-end;
}

.chat-bubble {
  max-width: 80%;
  padding: 1rem;
  border-radius: 1rem;
  position: relative;
}

.chat-message.left .chat-bubble {
  background-color: var(--medium-bg);
  border-bottom-left-radius: 0;
}

.chat-message.right .chat-bubble {
  background-color: var(--accent-color);
  border-bottom-right-radius: 0;
}

.chat-time {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0.7;
}


.featured-items {
  padding: 4rem 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.featured-item {
  background-color: var(--medium-bg);
  border: 3px solid var(--accent-color);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.featured-item:hover {
  transform: translateY(-10px);
}

.featured-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.featured-content {
  padding: 1.5rem;
}

.featured-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.featured-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin-bottom: 1rem;
}

.featured-description {
  margin-bottom: 1.5rem;
}


.menu-section {
  padding: 4rem 0;
}

.menu-categories {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.menu-category {
  padding: 0.5rem 1.5rem;
  margin: 0.5rem;
  background-color: var(--medium-bg);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid transparent;
}

.menu-category.active, .menu-category:hover {
  background-color: var(--accent-color);
  border-color: var(--highlight-color);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background-color: var(--medium-bg);
  border: 3px solid var(--medium-bg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-item:hover {
  border-color: var(--accent-color);
}

.menu-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-content {
  padding: 1.5rem;
}

.menu-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--highlight-color);
}

.menu-description {
  margin-bottom: 1.5rem;
}


.about-section {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: auto;
  border: 5px solid var(--accent-color);
}

.about-content {
  padding: 1rem;
}

.about-heading {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.timeline {
  margin: 3rem 0;
  position: relative;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--accent-color);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

.timeline-content {
  background-color: var(--medium-bg);
  padding: 1.5rem;
  position: relative;
}

.timeline-content:before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--highlight-color);
  border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content:before {
  right: -43px;
}

.timeline-item:nth-child(even) .timeline-content:before {
  left: -43px;
}

.timeline-year {
  font-weight: 700;
  color: var(--highlight-color);
  margin-bottom: 0.5rem;
}

tbody, tfoot, thead, tbody tr:nth-child(even) {
  background-color: inherit;
  color: inherit;
}


.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  background-color: var(--medium-bg);
  padding: 2rem;
}

.contact-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-list i {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--accent-color);
}

.contact-form {
  background-color: var(--medium-bg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--dark-bg) !important;
  border: 2px solid var(--light-bg);
  color: var(--text-color) !important;
  font-family: var(--font-family);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent-color);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.map-container {
  height: 400px;
  margin-top: 3rem;
  border: 3px solid var(--accent-color);
}


footer {
  background-color: var(--darker-bg);
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 180px;
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover, .footer-links a:focus {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--medium-bg);
  border-radius: 50%;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.footer-social a:hover, .footer-social a:focus {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--light-bg);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-color);
  opacity: 0.7;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--medium-bg);
  padding: 1rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
  margin-right: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background-color: var(--medium-bg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.cookie-settings-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-settings-heading {
  margin-bottom: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-bg);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light-bg);
  border-radius: 30px;
  transition: .4s;
  cursor: pointer;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-color);
  border-radius: 50%;
  transition: .4s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--accent-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(30px);
}

.cookie-category-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-settings-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}


.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent-color);
  color: var(--text-color);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background-color: var(--medium-bg);
  border: 2px solid var(--accent-color);
  z-index: 1000;
  padding: 1rem;
  display: none;
}

.cart-dropdown.show {
  display: block;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-bg);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.cart-item-details h4 {
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: var(--highlight-color);
  font-weight: 700;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.quantity-btn {
  background-color: var(--light-bg);
  color: var(--text-color);
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.quantity-input {
  width: 40px;
  height: 25px;
  text-align: center;
  margin: 0 0.5rem;
  padding: 0;
}

.cart-item-remove {
  cursor: pointer;
  color: var(--accent-color);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.cart-actions {
  display: flex;
  gap: 1rem;
}

.cart-actions button {
  flex: 1;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--medium-bg);
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-heading {
  margin-bottom: 1.5rem;
}


.checkout-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--medium-bg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-checkbox input {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}


.thank-you-container {
  text-align: center;
  padding: 5rem 1rem;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.thank-you-heading {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .oversized-text {
    font-size: 10vw;
  }
}

.nav-close {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--darker-bg);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 4rem 2rem 2rem;
  }
  
  nav.show {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 1rem 0;
  }
  
  .nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .featured-grid, .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline:before {
    left: 30px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
    padding-left: 80px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content:before,
  .timeline-item:nth-child(even) .timeline-content:before {
    left: -50px;
  }
  
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    margin-top: 1rem;
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .button {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .oversized-text {
    font-size: 12vw;
  }
  
  .brutalist-heading {
    font-size: 2.5rem;
  }
  
  .cart-dropdown {
    width: 280px;
    right: -50px;
  }
}