/* Global */
:root{
  --red: #c8102e;
  --black: #111213;
  --muted: #6b6b6b;
  --max-width: 1100px;
}

*{box-sizing:border-box}
body{margin:0;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;color:var(--black);background:#fff;line-height:1.5}
.container{max-width:var(--max-width);margin:0 auto;padding:0 20px}

.containers {
  display: flex;
  justify-content: center;   /* Centers horizontally */
  align-items: center;       /* Centers vertically */
}

/* Header */
.site-header{background:#fff;border-bottom:1px solid #f0f0f0;position:sticky;top:0;z-index:20}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.brand{display:flex;align-items:center;gap:12px}
.logo{height:56px;width:auto;object-fit:contain}
.brand-text h1{margin:0;font-size:18px;letter-spacing:1px}
.tagline{margin:0;font-size:13px;color:var(--muted)}

/* Nav */
.nav{display:flex;gap:14px;align-items:center}
.nav-link{color:var(--black);text-decoration:none;padding:6px 8px;font-weight:600}
.nav-link.cta{border:2px solid var(--red);color:var(--red);border-radius:6px;padding:6px 12px}
.nav-link.cta:hover{background:var(--red);color:#fff}

/* Hero */
.hero{display:grid;grid-template-columns:1fr 420px;gap:24px;align-items:center;padding:34px 0;background:#fafbfc}
.hero-img{width:100%;height:auto;border-radius:10px;box-shadow:0 6px 20px rgba(10,10,10,0.04)}

/* CTA on hero */
.hero-cta h2{font-size:32px;margin:0 0 8px}
.hero-cta p{margin:0 0 14px;color:var(--muted)}
.btn{display:inline-block;text-decoration:none;padding:10px 16px;border-radius:8px;font-weight:700}
.btn-primary{background:var(--red);color:#fff;border:0}
.btn-outline{border:2px solid var(--red);color:var(--red);background:transparent;padding:8px 12px;border-radius:6px}

/* Trailers grid */
.trailers-section{padding:36px 0}
.section-title{margin:0 0 18px;font-size:22px}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.card{background:#fff;border:1px solid #f0f0f0;border-radius:10px;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 6px 20px rgba(10,10,10,0.03)}
.card-img{width:100%;height:330px;object-fit:cover;background:#f6f6f6}
.card-body{padding:12px;display:flex;flex-direction:column;flex:1}
.card h3{margin:0 0 8px;font-size:30px}
.muted{color:var(--muted);font-size:13px;margin-bottom:12px}
.card-footer{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:8px}

/* Footer */
.site-footer{border-top:4px solid var(--red);padding:18px 0;margin-top:30px;background:#fff;color:var(--muted)}
.footer-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap}

/* Booking form */
.booking-section{padding:36px 0}
.form-row{margin-bottom:12px}
.form-row label{display:block;font-weight:700;margin-bottom:6px}
.form-row input, .form-row select{width:100%;padding:10px;border:1px solid #e6e6e6;border-radius:8px}
.two-col{display:flex;gap:12px}
.two-col > div{flex:1}

/* Thank you */
.thankyou{border:2px solid var(--red);padding:20px;border-radius:8px;background:#fffaf9}

/* Contact grid */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.contact-card{padding:16px}

/* Responsive */
@media (max-width:900px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .hero{grid-template-columns:1fr;gap:16px}
  .header-inner{padding:10px 0}
}
@media (max-width:520px){
  .grid{grid-template-columns:1fr}
  .logo{height:44px}
  .brand-text h1{font-size:16px}
  .hero-cta h2{font-size:22px}
}

/* ======= Solid Banner ======= */
.banner {
  width: 100%;
  height: 300px;
  background: url('images/banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* subtle dark overlay */
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.banner h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.banner p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.banner .btn-primary {
  background-color: var(--red);
  border: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.banner .btn-primary:hover {
  background-color: #a50d24;
}

/* Force mobile-friendly layout */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr); /* Tablets */
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr; /* Phones */
  }
  
  .banner {
    height: 280px; /* Smaller banner for phones */
  }

  .banner-content h2 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .card-img {
    height: 180px;
  }

  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* -------- ABOUT PAGE -------- */
.about-wrapper {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

.about-container {
  max-width: 820px;
  width: 100%;
  text-align: center;
}

.about-container h2, 
.about-container h3 {
  margin-bottom: 16px;
}

.about-container p, 
.about-container ul li {
  text-align: left;
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
}

.about-card {
  padding: 20px;
  margin-bottom: 20px;
}



