/* Modern CSS for Rei da Pizza - Based on main site */
:root {
  --primary-color: #ff4500;
  --primary-dark: #e03e00;
  --secondary-color: #ffd700;
  --accent-color: #ff6b35;
  --dark-color: #1a1a1a;
  --light-color: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  /* Rei da Pizza specific colors */
  --rei-primary: #ca1919;
  --rei-secondary: #FFD700;
  --rei-accent: #ff0033;

  --gradient-primary: linear-gradient(135deg, var(--rei-primary), var(--rei-accent));
  --gradient-secondary: linear-gradient(135deg, var(--rei-secondary), #ffa500);

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);

  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  overflow-x: hidden;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  background: transparent;
  padding: 1rem 0;
  transition: var(--transition);
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: white !important;
  text-decoration: none;
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--rei-secondary) !important;
  transform: scale(1.05);
}

.logo-img {
  height: 50px;
  margin-right: 12px;
  transition: var(--transition);
}

.navbar.scrolled .logo-img {
  height: 40px;
}

.brand-text {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 8px;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--rei-secondary) !important;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-login {
  background: var(--gradient-primary);
  color: white !important;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin-left: 16px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white !important;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(255, 69, 0, 0.3)), url(".././img/banner.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator a {
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.hero-scroll-indicator a:hover {
  opacity: 1;
  color: var(--rei-secondary);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-primary);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: white;
  color: var(--rei-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Location Section */
.location-section {
  padding: 120px 0;
  background: var(--gray-100);
}

.location-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.location-info h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--rei-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.location-info h4 i {
  color: var(--rei-secondary);
  margin-right: 15px;
  font-size: 2rem;
}

.location-address {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: var(--border-radius);
}

.location-address i {
  color: var(--rei-primary);
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 2px;
}

.location-address p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--gray-700);
}

.whatsapp-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.whatsapp-btn i {
  font-size: 1.5rem;
  margin-right: 10px;
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Crown decoration */
.crown-decoration {
  position: absolute;
  top: -10px;
  right: 20px;
  color: var(--rei-secondary);
  font-size: 3rem;
  opacity: 0.1;
  transform: rotate(15deg);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-brand h5 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--rei-secondary);
}

.footer-brand p {
  color: var(--gray-400);
  max-width: 400px;
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--rei-secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--rei-secondary);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-title {
    font-size: 3rem;
  }
  .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .navbar-collapse {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
  }
  .nav-link {
    margin: 0.5rem 0;
    text-align: center;
  }
  .btn-login {
    margin: 1rem 0 0 0;
    text-align: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .location-section {
    padding: 80px 0;
  }
  .location-card {
    padding: 2rem 1.5rem;
  }
  .location-info h4 {
    font-size: 1.8rem;
    flex-direction: column;
    text-align: center;
  }
  .location-info h4 i {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .map-container {
    height: 250px;
    margin-top: 2rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  .btn-lg {
    padding: 12px 32px;
    font-size: 1rem;
  }
  .location-card {
    padding: 1.5rem 1rem;
  }
  .whatsapp-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1.1rem;
  }
}