/* Shared styles */

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

body {
  font-family: "Adobe Clean", "Source Sans 3", sans-serif;
  background-color: white;
  color: black;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  padding: 0 32px;
}

.centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Header */
.header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
  width: 100%;
}

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

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

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #130bff;
}

/* Button styles */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 30px;
  height: 40px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.btn-primary {
  background: #ff0000;
  color: white;
}

.btn-primary:hover {
  background: #ff0000;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #130bff;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

/* Section title styles */
.section-title {
  font-family: "azo-sans-uber", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  margin-bottom: 20px;
  margin: 20px;
}

.gradient {
  background: linear-gradient(135deg, #130bff, #60049d, #f84a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  opacity: 0.7;
  margin-bottom: 40px;
  max-width: 650px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-details {
    font-size: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    height: 100vh;
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .info-grid {
    padding: 60px 0;
  }

  .location-section,
  .happy-hour {
    padding: 60px 0;
  }
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
