/* ============================= */
/* CSS VARIABLES */
/* ============================= */

:root {
  --luxury-gold: hsl(45, 86%, 73%);
  --deep-gold: hsl(37, 65%, 61%);
  --cream: hsl(43, 100%, 98%);
  --warm-black: hsl(30, 40%, 15%);
  --background: hsl(43, 100%, 98%);
  --foreground: hsl(30, 40%, 15%);
  --primary: hsl(45, 86%, 73%);
  --secondary: hsl(37, 65%, 61%);
  --accent: hsl(42, 78%, 75%);
}

/* ============================= */
/* GLOBAL STYLES */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ============================= */
/* ANIMATIONS */
/* ============================= */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}

.delay-200 {
  animation-delay: 0.2s;
  opacity: 0;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?q=80&w=2072&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--luxury-gold);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}


/* ============================= */
/* SERVICES SECTION */
/* ============================= */

.services-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--foreground), hsl(30, 40%, 13%));
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-small {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.title-divider {
  width: 6rem;
  height: 0.25rem;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  margin: 0 auto;
  opacity: 0.3;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-item:hover .image-wrapper img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-item:hover .image-overlay {
  opacity: 1;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-icon {
  padding: 0.75rem;
  background: rgba(245, 217, 126, 0.1);
  border-radius: 0.75rem;
  border: 1px solid rgba(245, 217, 126, 0.2);
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.service-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--primary);
}

.service-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(245, 217, 126, 0.05);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 217, 126, 0.2);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(245, 217, 126, 0.1);
  border-color: rgba(245, 217, 126, 0.4);
  transform: translateY(-2px);
}

.feature-badge i {
  font-size: 1.25rem;
  color: var(--primary);
}

.feature-badge span {
  font-size: 0.875rem;
  color: white;
  font-weight: 500;
}

/* ============================= */
/* PACKAGES SECTION */
/* ============================= */

.packages-section {
  padding: 6rem 0;
  background: black;
}

.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.package-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 217, 126, 0.2);
  padding: 2.5rem;
  border-radius: 1rem;
  transition: all 0.5s ease;
}

.package-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 217, 126, 0.4);
  box-shadow: 0 20px 60px rgba(245, 217, 126, 0.1);
  transform: translateY(-4px);
}

.package-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.package-number {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 4px 20px rgba(245, 217, 126, 0.3);
  transition: transform 0.3s ease;
}

.package-card:hover .package-number {
  transform: scale(1.1);
}

.package-info {
  flex: 1;
}

.package-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.package-card:hover .package-title {
  color: var(--secondary);
}

.package-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.package-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25rem;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.package-card:hover .package-accent {
  opacity: 1;
}

/* ============================= */
/* CTA SECTION */
/* ============================= */

.cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2021&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    hsla(42, 78%, 75%, 0.95), 
    hsla(42, 78%, 75%, 0.9), 
    hsla(37, 65%, 61%, 0.95)
  );
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.25rem;
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: var(--foreground);
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.5rem 3rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(30, 40, 15, 0.9);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(245, 217, 126, 0.2);
}

/* ============================= */
/* RESPONSIVE STYLES */
/* ============================= */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .service-item,
  .service-item.reverse {
    flex-direction: column;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .service-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .services-section,
  .packages-section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    gap: 4rem;
  }

  .service-item {
    gap: 2rem;
  }

  .service-title {
    font-size: 1.75rem;
  }

  .service-description {
    font-size: 1rem;
  }

  .package-title {
    font-size: 1.5rem;
  }

  .package-description {
    font-size: 1rem;
  }

  .cta-section {
    padding: 5rem 0;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1.125rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 1.25rem 2.5rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .service-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .package-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .package-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }
}
