/* Main page styles */

/* Hero Section */
.hero {
  color: white;
  height: 95vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

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

.hero-logo {
  height: 150px;
  width: auto;
  padding-bottom: 14px;
}

.hero-details {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-bottom: 50px;
  opacity: 0.95;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Info Grid */
.info-grid {
  padding: 80px 0;
  background: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
  max-width: 1000px;
}

.info-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #130bff;
}

.info-card:nth-child(2) {
  border: 2px solid #60049d;
}

.info-card:nth-child(3) {
  border: 2px solid #f84a00;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #130bff;
}

.info-card:nth-child(2) h3 {
  color: #60049d;
}

.info-card:nth-child(3) h3 {
  color: #f84a00;
}

.info-card p {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.7;
}

/* Location Section */
.location-section {
  background: linear-gradient(135deg, #f84a00, #ff0000);
  color: white;
  padding: 80px 0;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-info h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.location-details {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Happy Hour Section */
.happy-hour {
  background: linear-gradient(135deg, #60049d, #130bff);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.happy-hour h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.happy-hour p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
