:root {
  --bg: #141414;
  --card: #232323;
  --accent: #ff6a1a;
  --white: #f2f2f2;
  --muted: #b9b9b9;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--muted);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  border-bottom: 3px solid var(--accent);
  padding: 20px 0;
}
.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.site-header .logo img {
  max-height: 90px;
  width: auto;
}
.site-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.site-nav a {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--accent);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 60px 0;
}
.hero .container {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-text { flex: 1 1 400px; }
.hero-media { flex: 1 1 400px; }
.hero-media video, .hero-media img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #333;
}
h1, h2, h3, h4 {
  color: var(--white);
  margin-top: 0;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none !important;
  margin-top: 16px;
}
.btn:hover { opacity: 0.9; }
.btn.center-wrap { display: block; width: fit-content; margin-left: auto; margin-right: auto; }

/* Section */
.section {
  padding: 60px 0;
}
.section.alt { }
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading p { color: var(--muted); }

/* Cards */
.card-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.card {
  background: var(--card);
  border-radius: 16px;
  padding: 40px 30px;
  flex: 1 1 400px;
}
.card h3.card-title { text-align: center; margin-bottom: 24px; }

/* Icon box */
.icon-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.icon-item:last-child { margin-bottom: 0; }
.icon-item .icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,106,26,0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.icon-item h4 { color: var(--accent); margin: 0 0 6px; }
.icon-item p { margin: 0; font-size: 0.95rem; }

/* Alternating image/text rows */
.split-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  align-items: stretch;
}
.split-row.reverse { flex-direction: row-reverse; }
.split-row .media, .split-row .text {
  flex: 1 1 400px;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
}
.split-row .media img { height: 100%; object-fit: cover; border-radius: 16px; }
.split-row .text { padding: 40px; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.gallery img { border-radius: 8px; height: 100%; object-fit: cover; }

/* Contact */
.contact-info-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.contact-info-grid .card { text-align: center; }
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 1.6rem;
}
.social-icons a {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--card);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.social-icons a:hover { color: var(--accent); text-decoration: none; }

form.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
form.contact-form input, form.contact-form textarea {
  background: var(--card);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
}
form.contact-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}
.form-note { text-align: center; font-size: 0.85rem; margin-top: 10px; }

/* Footer */
.site-footer {
  border-top: 1px solid #2a2a2a;
  padding: 30px 0;
  text-align: center;
  font-size: 0.85rem;
}

.placeholder-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 700px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.8rem; }
  .split-row.reverse { flex-direction: column; }
  .split-row .media { min-height: 220px; }
}
