/* services.css – Shared styles for service pages (tadelakt, venetian, decorative) */

:root {
  --gold: #c9b378;
  --dark-gold: #a89566;
  --bg-dark: #1c1c1c;
  --bg-light: #2a2a2a;
  --text-light: #f5f5f5;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  color: var(--gold);
  font-family: 'Suisse Intl', sans-serif;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(10px);
  height: 70px;
}

.nav-content {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--dark-gold);
}

.logo-img {
  height: 50px;
  width: auto;
}

/* Split layout */
.split-layout {
  display: flex;
  min-height: 100vh;
  margin-top: 70px;
}

/* Video Panel */
.video-panel {
  position: fixed;
  left: 0;
  top: 70px;
  width: 40%;
  height: calc(100vh - 70px);
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  z-index: 10;
  box-shadow: 5px 0 25px rgba(0,0,0,0.5);
}

.vertical-video-container {
  width: 90%;
  max-width: 500px;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
  margin-bottom: 20px;
}

.vertical-video {
  width: 100%;
  height: 170%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Video overlay */
.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(0,0,0,0.6);
  color: white;
  border-radius: 0 0 12px 12px;
  font-family: 'Domaine Display', serif;
  font-size: 0.9rem;
  text-align: center;
}

.video-overlay h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
}

.video-overlay p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Video info */
.video-info {
  padding: 2rem;
  text-align: center;
  max-width: 300px;
  color: white;
}

.video-info h3 {
  font-family: 'Domaine Display', serif;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.video-info p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.4;
}

/* Content Panel */
.content-panel {
  margin-left: 40%;
  width: 60%;
  padding: 3rem 4rem;
  background: var(--bg-dark);
}

.service-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.service-wrapper h1 {
  font-family: 'Domaine Display', serif;
  font-size: 2.5rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  color: var(--gold);
}

.service-wrapper h2 {
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem;
  font-family: 'Domaine Display', serif;
  color: var(--text-light);
  border-bottom: 2px solid rgba(201, 179, 120, 0.3);
  padding-bottom: 0.5rem;
}

.service-wrapper h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  font-family: 'Domaine Display', serif;
  color: var(--text-light);
}

.service-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(201, 179, 120, 0.95);
}

.service-wrapper ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.service-wrapper li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: rgba(201, 179, 120, 0.95);
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: rgba(42, 42, 42, 0.7);
  border: 1px solid rgba(201, 179, 120, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.feature-card h4 {
  font-family: 'Domaine Display', serif;
  margin: 0 0 0.75rem 0;
  color: var(--gold);
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Process timeline */
.process-timeline {
  margin: 3rem 0;
  position: relative;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Domaine Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
  margin: 2rem 0;
}

.cta-button:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 179, 120, 0.3);
}

/* Service areas */
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.area-tag {
  background: rgba(201, 179, 120, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(201, 179, 120, 0.2);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.area-tag:hover {
  background: rgba(201, 179, 120, 0.2);
  border-color: var(--gold);
}

/* Fade-in 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);
}

/* CTA video button */
.cta-video {
  display: inline-block;
  background: var(--gold);
  color: #1c1c1c;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.cta-video i {
  margin-right: 0.5rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .split-layout {
    flex-direction: column;
    margin-top: 125px;
  }

  .video-panel {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    padding: 2rem 1rem;
    box-shadow: none;
  }

  .vertical-video-container {
    width: 90%;
    max-width: none;
    height: auto;
    aspect-ratio: 9/16;
  }

  .content-panel {
    margin-left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .service-wrapper h1 {
    font-size: 2.5rem;
  }

  .service-wrapper h2 {
    font-size: 1.6rem;
  }

  .video-info {
    padding: 1rem;
    max-width: 280px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    gap: 5px;
  }

  .video-panel {
    padding: 1.5rem 1rem;
  }

  .vertical-video-container {
    max-width: 220px;
  }

  .content-panel {
    padding: 1.5rem 1rem;
  }

  .service-wrapper h1 {
    font-size: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-video {
    color: #d4db74;
  }
}
