body {
  background-color: #121212;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  border-bottom: 1px solid #444;
}

.navbar-brand {
  font-weight: bold;
  font-size: 22px;
}

.navbar-text {
  font-size: 14px;
  color: #bbb;
}

.section1 {
  padding: 60px 20px;
  text-align: center;
}

.section2 {
  padding: 60px 20px;
  background-color: #181818;
  text-align: center;
}

.section2 .col-md-4 {
  margin-bottom: 30px;
}

.section2 img {
  width: 96%;
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.section2 img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.section2 h3 {
  color: #ffffff;
  margin-top: 15px;
  font-size: 25px;
}

.section2 p {
  color: #cccccc;
  font-size: 18px;
}

.section3 {
  background-color: #1f1f1f;
  padding: 60px 20px;
  text-align: center;
}

.box1, .box2, .box3 {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  max-width: 320px;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.box1:hover, .box2:hover, .box3:hover {
  transform: translateY(-8px);
}

.box1 img,
.box2 img,
.box3 img {
  width: 100%;
  height: auto;
  display: block;
}

.box1 h3,
.box2 h3,
.box3 h3 {
  margin-top: 15px;
  font-size: 20px;
}

.box1 p,
.box2 p,
.box3 p {
  padding: 0 15px 20px;
  font-size: 14px;
  color: #ccc;
}

.footer1 {
  background-color: #111;
  border-top: 1px solid #333;
  margin-top: 40px;
}

.footer4:hover {
  color: #f8c471;
  transition: color 0.3s ease;
}

.box1, .box2, .box3 {
  width: 90%;
  margin: 0 auto 30px;
}

/* Events Section */
.events-specials {
    background-color: #000000;
    padding: 80px 0;
    color: white;
    font-family: 'Arial', sans-serif;
}

.events-specials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.events-specials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #cccccc;
    font-weight: 300;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: start;
}

.event-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid #333;
    min-height: 280px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 167, 77, 0.2);
}

.event-card.highlighted {
    border: 2px solid #c9a74d;
    background: linear-gradient(145deg, #1a1a1a, #222222);
}

.event-date {
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}

.event-date .day {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #c9a74d;
    margin-bottom: 5px;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    flex: 1;
}

.event-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 400;
}

.event-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.event-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
}

.price {
    color: #c9a74d;
    font-weight: bold;
    font-size: 1.1rem;
}

.time {
    color: #cccccc;
    font-size: 0.9rem;
    background: #333;
    padding: 4px 8px;
    border-radius: 4px;
}

.reserve-btn {
    background: #c9a74d;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.95rem;
}

.reserve-btn:hover {
    background: #b8943a;
    transform: scale(1.02);
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 193, 7, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .section2 {
    text-align: center;
    padding: 10px;
  }

  .section2 h3 {
    font-size: 20px;
    margin-top: 10px;
  }

  .section2 p {
    font-size: 15px;
  }

  .events-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .event-card {
      flex-direction: column;
      text-align: center;
      min-height: auto;
  }
  
  .event-date {
      margin-bottom: 15px;
  }
  
  .event-details {
      flex-direction: column;
      gap: 10px;
  }

  footer p {
    font-size: 13px;
    text-align: center;
  }

  .navbar-brand {
    font-size: 18px;
  }
}