/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Styles */
:root {
  --primary-color: #FF6B35;       /* Orange */
  --secondary-color: #F7931E;     /* Amber */
  --accent-color: #FFD23F;        /* Yellow */
  --text-color: #E8E8E8;          /* Light Gray */
  --light-color: #FFFFFF;         /* White */
  --dark-color: #0F0F0F;          /* Very Dark */
  --background-dark: #1A1A1A;     /* Dark Background */
  --background-medium: #2D2D2D;   /* Medium Dark */
  --background-light: #3A3A3A;    /* Light Dark */
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  --gradient-secondary: linear-gradient(135deg, #F7931E 0%, #FFD23F 100%);
  --gradient-dark: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  --gradient-accent: linear-gradient(135deg, #FFD23F 0%, #FF6B35 100%);
  --shadow-orange: 0 10px 40px rgba(255, 107, 53, 0.3);
  --shadow-dark: 0 15px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.4);
  --border-radius: 0;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Times New Roman', 'Roboto', monospace;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--background-dark);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 210, 63, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--gradient-primary);
  color: var(--dark-color);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
  min-width: 180px;
  font-family: 'Times New Roman', monospace;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--gradient-secondary);
}

.btn-accent {
  background: var(--gradient-accent);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  clip-path: none;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--dark-color);
  box-shadow: var(--shadow-glow);
}

.btn-large {
  padding: 25px 50px;
  font-size: 16px;
  min-width: 220px;
}

section {
  padding: 120px 0;
  position: relative;
}

.section-title {
  font-size: 4rem;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  color: var(--text-color);
  font-weight: 900;
  line-height: 1.1;
  font-family: 'Times New Roman', monospace;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: skew(-20deg);
}

.section-title::before {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-secondary);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) skew(-20deg);
}

/* Geometric decorations */
.geometric-shape {
  position: absolute;
  background: var(--gradient-primary);
  opacity: 0.1;
  z-index: -1;
}

.triangle-1 {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid rgba(255, 107, 53, 0.1);
  top: 10%;
  right: 10%;
  animation: rotate 20s linear infinite;
}

.triangle-2 {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 60px solid rgba(247, 147, 30, 0.1);
  bottom: 20%;
  left: 15%;
  animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--primary-color);
  transition: var(--transition);
}

header.scrolled {
  padding: 15px 0;
  background: rgba(15, 15, 15, 0.95);
  box-shadow: var(--shadow-dark);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-family: 'Times New Roman', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo::after {
  content: '⚡';
  margin-left: 12px;
  animation: pulse 2s ease-in-out infinite;
  color: var(--primary-color);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.nav-menu {
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-menu a {
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 12px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Times New Roman', monospace;
}

.nav-menu a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.nav-menu a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
  transform: skew(-20deg);
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-dark);
  /* display: flex; */
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.1) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="%23FF6B35" opacity="0.05"/></svg>') repeat;
  background-size: 200px 200px;
  animation: drift 30s linear infinite;
}

@keyframes drift {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-200px) translateY(-200px); }
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  transform: translateY(-50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  animation: heroSlideIn 1.2s ease-out;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 6rem;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1;
  color: var(--text-color);
  font-family: 'Times New Roman', monospace;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: skew(-10deg);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 50px;
  font-weight: 400;
  color: #B8B8B8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Roboto', sans-serif;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* Stats Section */
.stats {
  background: var(--background-medium);
  padding: 100px 0;
  position: relative;
  transform: skewY(-2deg);
  margin: -60px 0;
}

.stats .container {
  transform: skewY(2deg);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  text-align: center;
}

.stat-item {
  position: relative;
  background: rgba(255, 107, 53, 0.1);
  padding: 40px 20px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 80%, 20px 100%);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-orange);
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-family: 'Times New Roman', monospace;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Section */
.about {
  background: var(--background-dark);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  transition: var(--transition);
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-orange);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.2;
  transition: var(--transition);
}

.about-image:hover::after {
  opacity: 0;
}

.about-text {
  background: var(--background-medium);
  padding: 60px;
  position: relative;
}

.about-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--text-color);
  font-weight: 800;
  font-family: 'Times New Roman', monospace;
  text-transform: uppercase;
}

.about-text p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #B8B8B8;
}

/* Menu Section */
.menu {
  background: var(--background-medium);
  position: relative;
  transform: skewY(2deg);
  margin: -60px 0;
  padding: 180px 0;
}

.menu .container {
  transform: skewY(-2deg);
}

.menu-categories {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  gap: 30px;
  flex-wrap: wrap;
}

.menu-category {
  padding: 15px 35px;
  background: var(--background-dark);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: 'Times New Roman', monospace;
  letter-spacing: 1px;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
  position: relative;
  overflow: hidden;
}

.menu-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.menu-category.active::before,
.menu-category:hover::before {
  left: 0;
}

.menu-category.active,
.menu-category:hover {
  color: var(--dark-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-orange);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
}

.menu-item {
  background: var(--background-dark);
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid rgba(255, 107, 53, 0.3);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.menu-item:hover::before {
  transform: scaleX(1);
}

.menu-item:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-orange);
  border-color: var(--primary-color);
}

.menu-item-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.15);
  filter: grayscale(0%);
}

.menu-item-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
}

.menu-item-content {
  padding: 40px;
}

.menu-item-title {   
 display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    min-height: 2.6em;
    line-height: 1.3em;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 700;
  font-family: 'Times New Roman', monospace;
  text-transform: uppercase;
}

.menu-item-description {
  font-size: 1rem;
  color: #B8B8B8;
  margin-bottom: 25px;
  line-height: 1.7;
}

.menu-item-price {
  font-weight: 900;
  font-size: 1.6rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Times New Roman', monospace;
}

.menu-item-price::after {
  content: '⭐';
  font-size: 1.3rem;
  filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.5));
}

/* Reservation Section */
.reservation {
  background: var(--gradient-dark);
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.reservation::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: conic-gradient(from 45deg, rgba(255, 107, 53, 0.1), transparent, rgba(247, 147, 30, 0.1));
  animation: rotate 30s linear infinite;
}

.reservation .section-title {
  color: var(--text-color);
}

.reservation-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  position: relative;
  z-index: 1;
}

.reservation-info {
  background: rgba(255, 107, 53, 0.1);
  padding: 60px;
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.reservation-info::before {
  content: '🔥';
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2.5rem;
  opacity: 0.7;
  animation: pulse 2s ease-in-out infinite;
}

.reservation-info h3 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-family: 'Times New Roman', monospace;
  text-transform: uppercase;
}

.reservation-info p {
  margin-bottom: 25px;
  line-height: 1.8;
  color: #B8B8B8;
  font-size: 1.1rem;
}

.reservation-info ul {
  margin: 30px 0;
}

.reservation-info li {
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  font-size: 1.1rem;
  color: #B8B8B8;
}

.reservation-info li::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-size: 0.8rem;
}

.reservation-form {
  background: var(--background-medium);
  padding: 60px;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  position: relative;
  clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.reservation-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 35px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Times New Roman', monospace;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 25px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  background: var(--background-dark);
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

/* Testimonials Section */
.testimonials {
  background: var(--background-dark);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.testimonial-item {
  background: var(--background-medium);
  padding: 50px;
  position: relative;
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-orange);
  border-color: var(--primary-color);
}

.testimonial-item::before {
  content: '★★★★★';
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 35px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #B8B8B8;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: -25px;
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 25px;
}

.testimonial-author-image {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-size: 1.5rem;
  font-weight: 900;
  border: 3px solid var(--primary-color);
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  font-family: 'Times New Roman', monospace;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 5px;
  font-family: 'Times New Roman', monospace;
  text-transform: uppercase;
}

.testimonial-author-title {
  font-size: 1rem;
  color: #888;
}

/* Contact Section */
.contact {
  background: var(--gradient-dark);
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  animation: drift 40s linear infinite reverse;
}

.contact .section-title {
  color: var(--text-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: rgba(255, 107, 53, 0.1);
  padding: 50px 35px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  transition: var(--transition);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.contact-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-orange);
  background: rgba(255, 107, 53, 0.15);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
}

.contact-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.contact-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 700;
  font-family: 'Times New Roman', monospace;
  text-transform: uppercase;
}

.contact-text {
  color: #B8B8B8;
  line-height: 1.7;
  font-size: 1.1rem;
}

.contact-map {
  margin-top: 100px;
  height: 500px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 3px solid var(--primary-color);
  clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 50px 100%, 0 calc(100% - 50px));
}

/* Footer */
footer {
  background: var(--dark-color);
  color: var(--text-color);
  padding: 100px 0 40px;
  position: relative;
  border-top: 4px solid var(--primary-color);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Times New Roman', monospace;
  text-transform: uppercase;
}

.footer-logo::after {
  content: '⚡';
  margin-left: 12px;
  color: var(--primary-color);
}

.footer-about p {
  margin-bottom: 30px;
  color: #B8B8B8;
  line-height: 1.8;
  font-size: 1.1rem;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-family: 'Times New Roman', monospace;
  text-transform: uppercase;
}

.footer-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: skew(-20deg);
}

.footer-links li {
  margin-bottom: 18px;
}

.footer-links a {
  color: #B8B8B8;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(10px);
  text-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
}

.footer-links i {
  width: 20px;
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 25px;
  margin-top: 35px;
}

.footer-social a {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  font-size: 1.5rem;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  color: var(--dark-color);
  transform: translateY(-10px);
  box-shadow: var(--shadow-orange);
}

.footer-bottom {
  margin-top: 80px;
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 107, 53, 0.3);
  color: #888;
  font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 25px;
  }
  
  .about-content {
    gap: 70px;
  }
  
  .reservation-container {
    gap: 70px;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .reservation-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    /* text-align: center; */
  }
  
  .stats {
    transform: none;
    margin: 0;
  }
  
  .menu {
    transform: none;
    margin: 0;
    padding: 120px 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
    letter-spacing: 2px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 90%;
    height: calc(100vh - 90px);
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    transition: var(--transition);
    gap: 30px;
    border-right: 3px solid var(--primary-color);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .menu-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .menu-items {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 80px 0;
  }
  
  .about-text,
  .reservation-form,
  .reservation-info {
    padding: 40px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .btn {
    padding: 18px 35px;
    font-size: 13px;
    min-width: 160px;
  }
  
  .btn-large {
    padding: 22px 40px;
    font-size: 15px;
    min-width: 200px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .contact-card {
    padding: 40px 25px;
  }
  
  .menu-item {
    clip-path: none;
  }
  
  .about-image {
    clip-path: none;
  }
  
  .about-text {
    clip-path: none;
  }
}