:root {
  --primary: #ff3b3b;
  --primary-hover: #d90429;
  --dark: #0f1115;
  --dark-2: #181b22;
  --dark-3: #20242d;
  --light: #f4f4f4;
  --gray: #b8bdc9; 
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
html { scroll-behavior: smooth; }

h1, h2, h3, nav a, .phone-link, .cta-btn { font-weight: 800; letter-spacing: 0.5px; }

body {
  color: var(--light);
  line-height: 1.6;
  background-color: var(--dark);
  background-image: linear-gradient(rgba(15, 17, 21, 0.60), rgba(15, 17, 21, 0.70)), url('https://i.ibb.co/3yrNPvqB/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* ─── Mega Menu Navigation ─── */
.nav-menu { list-style: none; display: flex; gap: 25px; padding: 0; margin: 0; flex-wrap: wrap; justify-content: center; width: 100%; }
.nav-item { position: relative; }
.nav-link { color: var(--gray); font-size: 14px; font-weight: 700; text-decoration: none; cursor: pointer; display: block; padding: 8px 0; transition: color 0.2s; }
.nav-item:hover > .nav-link { color: var(--primary); }
.dropdown { list-style: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--dark-2); border: 1px solid #2a2d35; border-radius: 8px; padding: 10px 0; min-width: 220px; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 1000; box-shadow: 0 8px 16px rgba(0,0,0,0.3); }

/* Mobile Menu Fix: Allows dropdown to open on tap via focus-within */
.nav-item:hover > .dropdown, 
.nav-item:focus-within > .dropdown { 
  opacity: 1; 
  visibility: visible; 
  transform: translateX(-50%) translateY(0); 
}

.dropdown li a { display: block; padding: 8px 20px; color: var(--gray); font-size: 13px; text-decoration: none; white-space: nowrap; transition: background 0.2s, color 0.2s; }
.dropdown li a:hover { background: rgba(255, 59, 59, 0.1); color: var(--primary); }
@media (max-width: 768px) { .nav-menu { gap: 15px; } .nav-link { font-size: 12px; } }

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px 5% 5px 5%;
  background: rgba(15, 17, 21, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #2a2d35;
}
nav {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.phone-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 16px;
}

.cta-btn {
  background: var(--primary);
  color: var(--light);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.cta-btn:hover { background: var(--primary-hover); }

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 30px 10% 100px 10%;
}
.hero-mascot {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #2a2d35;
}
.hero-content {
  text-align: right;
  flex: 1;
}
.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 40px;
}
.hero .cta-btn {
  font-size: 18px;
  padding: 15px 40px;
}
.hero-speech {
  font-style: italic;
  color: var(--primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px 60px 20px;
    gap: 40px;
  }
  .hero-content { text-align: center; }
  .hero-mascot { 
    max-width: 140px !important; 
    width: auto !important;
    height: auto !important; /* Added this to stop the image from stretching tall */
  }
  .hero h1 { font-size: 36px; }
  body { 
    background-attachment: scroll !important;
    background-size: 100% auto !important; /* Changed from cover to 100% auto to fix pixelation */
    background-position: center top !important;
  }
  header { padding: 15px 20px 5px 20px; }
  nav { gap: 15px; }
  .phone-link { font-size: 14px; }
  .service-card img {
    height: 180px !important;
    object-fit: cover !important;
  }
}

.section {
  padding: 100px 10%;
  background: transparent;
}
.section-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: rgba(24, 27, 34, 0.85);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2d35;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 59, 59, 0.15);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover; 
  background-color: var(--dark);
}
.service-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  color: var(--light);
  margin-bottom: 15px;
  font-size: 20px;
  text-transform: uppercase;
}
.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
  flex-grow: 1;
  font-weight: 400;
}
.learn-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.learn-more:hover {
  gap: 10px;
  transition: gap 0.3s;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.menu-category {
  background: rgba(24, 27, 34, 0.85);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2a2d35;
}
.menu-category h3 {
  color: var(--primary);
  margin-bottom: 20px;
  border-bottom: 1px solid #2a2d35;
  padding-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}
.menu-list { list-style: none; }
.menu-list li {
  color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px dashed #2a2d35;
  font-size: 15px;
}
.menu-list li:last-child { border-bottom: none; }

.form-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #2a2d35;
  background: var(--dark);
  color: var(--light);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group { margin-bottom: 15px; text-align: left; }
.form-group label {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 5px;
  font-weight: 600;
}
.form-status {
  padding: 12px;
  border-radius: 6px;
  margin-top: 15px;
  text-align: center;
  display: none;
}
.form-status.success { display: block; background: rgba(16,185,129,0.2); color: #10b981; border: 1px solid #10b981; }
.form-status.error { display: block; background: rgba(239,68,68,0.2); color: #ef4444; border: 1px solid #ef4444; }

footer {
  text-align: center;
  padding: 40px;
  background: rgba(15, 17, 21, 0.95);
  color: #9da3b4;
  font-size: 14px;
  border-top: 1px solid #2a2d35;
}
footer a { color: var(--gray); text-decoration: none; }