/* ===== Omni Scapes, LLC - Rose Dark Theme ===== */
/* Rose: #e11d48 | Dark: #10080a */

:root {
  --rose: #e11d48;
  --rose-light: #fb7185;
  --rose-dark: #be123c;
  --dark: #10080a;
  --dark-2: #1a0f12;
  --dark-3: #25161a;
  --text: #f1e8ea;
  --text-muted: #a38a8f;
  --border: #2d1b20;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--rose-light); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3px;
  background: var(--rose);
  border-radius: 2px;
}
.section-title p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(16, 8, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.logo span { color: var(--rose); }
.logo small {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Navigation */
nav { display: flex; align-items: center; gap: 0.25rem; }

nav a {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all 0.2s;
}
nav a:hover, nav a.active {
  color: var(--text);
  background: rgba(225, 29, 72, 0.12);
}
.nav-cta {
  background: var(--rose);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--rose-dark) !important; }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }
  nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  nav a { width: 100%; text-align: center; padding: 0.8rem; }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 50%, #1a080e 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225,29,72,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 span { color: var(--rose); }
.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  line-height: 1;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
}
.btn-primary:hover { background: var(--rose-dark); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(225, 29, 72, 0.08);
}

/* ===== Sections ===== */
section { padding: 5rem 0; }

.section-dark { background: var(--dark-2); }
.section-darker { background: var(--dark-3); }

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

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(225, 29, 72, 0.08);
}
.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(225, 29, 72, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.service-card h3 { margin-bottom: 0.7rem; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== Portfolio Grid ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  border: 1px solid var(--border);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,8,10,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.portfolio-overlay p { font-size: 0.85rem; color: var(--text-muted); }

/* Placeholder for portfolio images */
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  color: var(--text-muted);
  font-size: 3rem;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 3rem;
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat { text-align: center; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--rose);
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr 1fr; }
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(225, 29, 72, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail label { font-size: 0.8rem; color: var(--text-muted); display: block; }
.contact-detail span { font-weight: 500; }

.contact-form {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rose);
}
.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Privacy / Terms ===== */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.policy-content h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  color: var(--rose-light);
}
.policy-content p, .policy-content li {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}
.policy-content ul { padding-left: 1.5rem; list-style: disc; }
.policy-content ul li { margin-bottom: 0.4rem; }
.policy-content strong { color: var(--text); }
.policy-date {
  text-align: center;
  padding: 1.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Page Header ===== */
.page-header {
  padding: 8rem 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(160deg, var(--dark), var(--dark-2));
}
.page-header h1 { margin-bottom: 0.7rem; }
.page-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== Footer ===== */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo { margin-bottom: 0.8rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; color: var(--text); }
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 0.3rem 0;
}
.footer-col a:hover { color: var(--rose); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 404 Page ===== */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.error-page h1 { font-size: 6rem; color: var(--rose); line-height: 1; margin-bottom: 0.5rem; }
.error-page p { color: var(--text-muted); margin-bottom: 2rem; }
