/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #000;
  color: #eee;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #c1121f;
  text-decoration: none;
}

h1, h2, h3 {
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #fff;
}

p {
  margin-bottom: 1em;
}

ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1em;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* Header */
.site-header {
  background: rgba(0,0,0,0.9);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  max-height: 60px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.nav a {
  color: #eee;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #c1121f;
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.35);
}

.hero-fallback {
  display: none;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.35);
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

.hero-inner {
  z-index: 5;
}

.hero-logo {
  max-width: 300px;
  width: 80%;
  margin: 0 auto 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.btn-primary {
  background: #c1121f;
  color: #fff;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #a10e19;
}

/* Cards */
.card {
  background: #111;
  padding: 20px;
  border: 1px solid #222;
  border-radius: 6px;
}

.card h3 {
  color: #c1121f;
}

.price {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 10px;
  color: #fff;
}

.fine {
  font-size: 0.85rem;
  color: #aaa;
}

/* Forms */
.form label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #333;
  border-radius: 4px;
  background: #222;
  color: #eee;
}

.form button {
  margin-top: 10px;
}

/* Footer */
.site-footer {
  background: #111;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .nav {
    justify-content: center;
  }
  .hero-logo {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }
  .hero-video {
    display: none;
  }
  .hero-fallback {
    display: block;
  }
  .hero-logo {
    max-width: 180px;
  }
  .nav a {
    font-size: 0.85rem;
  }
}
/* Success modal */
#successModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#successModal .modal-box {
  background: #111;            /* dark background to match site */
  color: #fff;                 /* white text */
  padding: 24px;
  width: 320px;
  max-width: 90%;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

#successModal .modal-box p {
  margin-bottom: 18px;
  font-size: 16px;
}
