/* --- BASIC SETTINGS & VARIABLES --- */
:root {
  --primary-dark: #121212;
  --secondary-dark: #1e1e1e;
  --accent-orange: #ff6600;
  --accent-glow: #ff8533;
  --text-white: #ffffff;
  --text-grey: #a0a0a0;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-white);
  line-height: 1.6;
}

/* --- NAVIGATION --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: rgba(18, 18, 18, 0.95);
  position: fixed;
  width: 90%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.logo {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
  display: flex;
  align-items: baseline;
  letter-spacing: 4px;
}

.logo .highlight {
  color: var(--accent-orange);
  font-size: 1.15em; /* 15% larger */
  font-weight: 800;
}

.nav-links a {
  color: var(--text-grey);
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--accent-orange);
}

.btn-nav {
  border: 1px solid var(--accent-orange);
  padding: 8px 20px;
  border-radius: 4px;
  color: var(--accent-orange) !important;
}
.btn-nav:hover {
  background: var(--accent-orange);
  color: white !important;
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at center,
    #2a2a2a 0%,
    var(--primary-dark) 70%
  );
}

.glow-effect {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 102, 0, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}
h1 span {
  color: var(--accent-orange);
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-grey);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-glow));
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

/* --- SERVICES SECTION --- */
.services {
  padding: 100px 5%;
  background-color: var(--primary-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-grey);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--secondary-dark);
  padding: 40px 30px;
  border-radius: 2px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--accent-orange);
  background: #252525;
}

.service-icon {
  font-size: 40px;
  color: var(--accent-orange);
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-white);
}

.service-card p {
  color: var(--text-grey);
  font-size: 15px;
  line-height: 1.6;
}

/* --- ABOUT & HISTORY SECTION --- */
.about-section {
  padding: 100px 5%;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container {
  max-width: 900px;
  text-align: left;
  border-left: 4px solid var(--accent-orange);
  padding-left: 40px;
}

.about-container h2 {
  font-size: 36px;
  color: var(--text-white);
  margin-top: 0;
}

.about-text {
  color: var(--text-grey);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* --- CONTACT SECTION --- */
.contact-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--primary-dark) 0%, #0d0d0d 100%);
  text-align: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 60px auto 0;
  text-align: left;
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 300px;
  margin-bottom: 40px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h4 {
  color: var(--accent-orange);
  margin-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item p {
  color: var(--text-white);
  font-size: 18px;
  margin: 0;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 15px;
  background-color: var(--secondary-dark);
  border: 1px solid #333;
  color: var(--text-white);
  border-radius: 4px;
  font-family: inherit;
  box-sizing: border-box; /* Fix for padding overflow */
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-orange);
}

textarea.form-input {
  resize: vertical;
  height: 120px;
}

.submit-btn {
  background-color: var(--accent-orange);
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: var(--accent-glow);
}

/* --- FOOTER --- */
footer {
  background-color: #000;
  padding: 50px 5%;
  border-top: 1px solid #222;
  color: #666;
  font-size: 14px;
  text-align: center;
}

.footer-logo {
  color: var(--text-white);
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
  letter-spacing: 2px;
}

.footer-logo span {
  color: var(--accent-orange);
}

.footer-links a {
  color: #666;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

/* --- RESPONSIVE & MOBILE MENU --- */

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-white);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  .logo {
    letter-spacing: 2px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 70px;
    height: calc(100vh - 70px);
    background-color: rgba(18, 18, 18, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    padding-top: 50px;
    border-top: 1px solid #333;
  }

  .nav-links.active {
    transform: translateX(0%);
  }

  .nav-links a {
    margin: 20px 0;
    font-size: 20px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* --- SUBPAGE STYLES (Privacy Policy etc.) --- */

/* Smaller Header for Subpages */
.page-header {
  background-color: var(--primary-dark);
  padding: 120px 5% 40px 5%; /* Top padding accounts for fixed nav */
  text-align: center;
  border-bottom: 1px solid #333;
}

.header-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--text-white);
}

.header-content p {
  color: var(--text-grey);
  font-size: 14px;
}

/* Legal Content Styling */
.legal-section {
  padding: 60px 5%;
  background-color: var(
    --secondary-dark
  ); /* Slightly lighter background for reading */
  min-height: 50vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-white);
}

.legal-container h3 {
  color: var(--accent-orange);
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 20px;
}

.legal-container p {
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-container ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-container li {
  color: #cccccc;
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-container strong {
  color: var(--text-white);
}
