/* General Styles */
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #111;
  color: #f2f2f2;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  border-left: 4px solid #FF0000;
  padding-left: 1rem;
  letter-spacing: 2px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #181818;
  z-index: 1000;
  border-bottom: 1.5px solid rgba(255,0,0,0.15);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  gap: 2rem;
}
.nav-link {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link:focus {
  border: 2px solid #FF0000;
  color: #FF0000;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #FF0000;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px #000;
}
.hero-content p {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 2rem;
}
.cta-btn {
  background: transparent;
  color: #FF0000;
  border: 2px solid #FF0000;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(255,0,0,0.08);
}
.cta-btn:hover, .cta-btn:focus {
  background: #FF0000;
  color: #fff;
}

/* Services Section */
.services {
  padding: 6rem 0 4rem 0;
  background: #181818;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #111;
  border: 2px solid #FF0000;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, border 0.2s;
  box-shadow: 0 2px 16px rgba(255,0,0,0.05);
}
.service-card:hover {
  box-shadow: 0 4px 32px rgba(255,0,0,0.15);
  border: 2.5px solid #FF0000;
}
.service-icon {
  font-size: 2.5rem;
  color: #FF0000;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
}
.service-card p {
  color: #ccc;
  font-size: 1rem;
}

/* Gallery Section */
.gallery {
  padding: 6rem 0 4rem 0;
  background: #111;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.gallery-img {
  width: 100%;
  border-radius: 14px;
  border: 2.5px solid #FF0000;
  box-shadow: 0 2px 18px rgba(255,0,0,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
  object-fit: cover;
  aspect-ratio: 4/3;
  background: #222;
}
.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 32px rgba(255,0,0,0.18);
}

/* Booking Section */
.booking {
  padding: 6rem 0 4rem 0;
  background: #181818;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 400px;
  margin: 0 auto;
}
.booking-form input {
  background: #111;
  border: 2px solid #FF0000;
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}
.booking-form input:focus {
  border: 2.5px solid #FF0000;
}
.booking-form button {
  margin-top: 0.5rem;
}

/* Contact Section */
.contact {
  padding: 6rem 0 4rem 0;
  background: #111;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #f2f2f2;
}
.contact-icon {
  color: #FF0000;
  font-size: 1.5rem;
}

/* Footer */
.footer {
  background: #181818;
  color: #aaa;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  border-top: 1.5px solid rgba(255,0,0,0.12);
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 700px) {
  .nav-container {
    height: 56px;
  }
  nav {
    position: fixed;
    top: 56px;
    right: 0;
    background: #181818;
    flex-direction: column;
    gap: 0;
    width: 180px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s;
    box-shadow: -2px 2px 16px rgba(0,0,0,0.18);
    border-left: 2px solid #FF0000;
    z-index: 1001;
  }
  nav.open {
    height: 240px;
    padding: 1rem 0;
  }
  .nav-link {
    padding: 1rem 2rem;
    border: none;
    border-bottom: 1px solid rgba(255,0,0,0.08);
    color: #fff;
    font-size: 1.1rem;
  }
  .nav-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .container {
    width: 98%;
    padding: 0 0.5rem;
  }
  .services-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .section-title {
    font-size: 1.1rem;
  }
}

/* Hide video on very small screens for performance */
@media (max-width: 500px) {
  .hero-video {
    display: none;
  }
} 