/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Rajdhani', sans-serif;
  color: #ddd;
  background-color: #111;
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* ===== Futuristic Accent ===== */
:root {
  --light-gray: #e0e0e0;
  --mid-gray: #888;
  --dark-gray: #222;
  --black: #111;
  --accent: #aaa; /* Can tweak to #bbb for lighter glow */
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 17, 17, 0.95);
  border-bottom: 1px solid var(--dark-gray);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--light-gray);
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: var(--mid-gray);
  text-decoration: none;
  font-size: 1rem;
  padding: 6px 10px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

nav ul li a:hover {
  color: var(--light-gray);
  border-color: var(--light-gray);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--light-gray);
  margin: 4px 0;
}

/* ===== Hero Section ===== */
.hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(17,17,17,0.8), rgba(17,17,17,0.8)), url('../images/snow.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--mid-gray);
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: var(--dark-gray);
  color: #fff;
  padding: 14px 30px;
  font-size: 1.1rem;
  border: 1px solid var(--mid-gray);
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--light-gray);
  color: var(--black);
  box-shadow: 0 0 8px var(--light-gray);
  transform: translateY(-3px);
}

/* ===== Sections ===== */
.section {
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--dark-gray);
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== Services Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.service-card {
  background: var(--black);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid var(--dark-gray);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--light-gray);
  box-shadow: 0 0 12px rgba(255,255,255,0.05);
}

.service-card h3 {
  color: var(--light-gray);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--mid-gray);
}

/* ===== Contact Form ===== */
.contact-form {
  background: var(--black);
  padding: 35px 30px;
  border-radius: 6px;
  border: 1px solid var(--dark-gray);
  max-width: 600px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid var(--dark-gray);
  border-radius: 3px;
  background: #1a1a1a;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--light-gray);
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s;
}

.contact-form button:hover {
  background: var(--light-gray);
  color: var(--black);
  box-shadow: 0 0 6px var(--light-gray);
}

/* ===== Footer ===== */
footer {
  background: var(--black);
  color: var(--mid-gray);
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--dark-gray);
  font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav ul {
    position: fixed;
    top: 65px;
    right: -100%;
    width: 220px;
    background: #111;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transition: right 0.3s ease;
  }
  nav ul.open { right: 0; }
}
/* ===== Split Layout ===== */
.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  min-width: 300px;
}

.split-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.split-text p {
  color: var(--mid-gray);
  margin-bottom: 25px;
  max-width: 500px;
}

.split-text .btn-primary {
  margin-top: 10px;
}

.split-image {
  flex: 1;
  min-width: 300px;
}

.split-image img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--dark-gray);
  box-shadow: 0 0 12px rgba(255,255,255,0.05);
}
/* ===== Larger Text for Split Layout ===== */
.split-text h2 {
  font-size: 2.6rem; /* was 2.2rem */
}

.split-text p {
  font-size: 1.15rem; /* bigger paragraph */
  line-height: 1.8;
}
/* Remove default link underline everywhere */
a {
  text-decoration: none;
  color: inherit;
}
.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
/* ===== Mobile Tweaks ===== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem; /* scale down from desktop */
  }

  .hero-content p {
    font-size: 1rem;
  }

  .split {
    flex-direction: column; /* stack image + text */
    gap: 30px;
  }

  .split-text h2 {
    font-size: 2rem;
  }

  .split-text p {
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%; /* full width on small screens */
    text-align: center;
  }

  nav ul {
    width: 200px; /* smaller mobile menu */
  }
}
/* ===== One Page: Side Line Layout ===== */
.line-side {
  align-items: stretch;           /* line spans full text column height */
}

.line-side .split-text {
  position: relative;
  padding-left: 30px;             /* space for the vertical line */
}

.line-side .split-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.08));
  box-shadow: 0 0 8px rgba(255,255,255,0.05);
}

.lead {
  font-size: 1.2rem;
  color: var(--light-gray);
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  margin: 10px 0 18px 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: var(--mid-gray);
  line-height: 1.75;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,255,255,0.15);
}

.feature-list li span {
  color: var(--light-gray);
}

.note {
  margin-top: 6px;
  color: var(--mid-gray);
  font-size: 0.98rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn-ghost {
  background: transparent;
  color: var(--light-gray);
  border: 1px solid var(--dark-gray);
}
.btn-ghost:hover {
  border-color: var(--light-gray);
  background: #1a1a1a;
}

/* Image emphasis */
.split-image img {
  max-height: 520px;              /* a little taller here for impact */
  object-position: center;        /* keep subject nicely framed */
}

/* Mobile polish */
@media (max-width: 768px) {
  .line-side .split-text {
    padding-left: 18px;
  }
  .lead {
    font-size: 1.06rem;
  }
  .split-image img {
    max-height: 380px;
  }
}
/* ===== Variant Links (next to logo) ===== */
.variant-links {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  margin-left: 12px;
  color: var(--mid-gray);
}

.variant-links .variant {
  text-decoration: none;
  color: var(--mid-gray);
  margin: 0 4px;
  transition: color 0.3s;
}

.variant-links .variant:hover {
  color: var(--light-gray);
}

.variant-links .dot {
  color: var(--dark-gray);
  margin: 0 2px;
}
