/* ========================================
   INDEX PAGE STYLES
   Figueira Limousines - Video Hero
======================================== */

/* ========== VIDEO HERO SECTION ========== */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-fallback {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
}

/* ========== HERO CONTENT ========== */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

/* Title */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.title-line.accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.12em;
}

/* Divider */
.hero-divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  background: var(--gold);
  border: 2px solid var(--gold);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--black);
}

/* ========== VIDEO CONTROL ========== */
.video-control {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-control:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

.video-control svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.video-control .icon-play {
  display: none;
}

.video-control.paused .icon-pause {
  display: none;
}

.video-control.paused .icon-play {
  display: block;
}

/* ========== SERVICES SECTION ========== */
.services-section {
  position: relative;
  padding: 6rem 2rem;
  background: transparent;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.services-header p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(207, 181, 130, 0.15);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.service-card:nth-child(2) {
  transition-delay: 0.2s;
}
.service-card:nth-child(3) {
  transition-delay: 0.3s;
}
.service-card:nth-child(4) {
  transition-delay: 0.4s;
}

.service-card:hover {
  border-color: rgba(207, 181, 130, 0.4);
  background: rgba(207, 181, 130, 0.05);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.service-card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* CTA Button */
.services-cta {
  text-align: center;
}

.btn-gold {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  background: var(--gold);
  border: 2px solid var(--gold);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

/* ========== FOOTER ========== */
footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(207, 181, 130, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 40px;
  height: auto;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(207, 181, 130, 0.1);
  padding: 1.25rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.2rem 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  .service-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
