:root {
  --primary: #f5d97e;
  --secondary: #daac60;
  --accent: #ecc794;
  --darker: #ffffff;
}

section h1, section h2 {
  font-family: 'Playfair Display', serif;
}

section p {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(300px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse-slow {
  0%, 100% {
    opacity: 0.05;
    transform: scale(1);
  }
  50% {
    opacity: 0.08;
    transform: scale(1.1);
  }
}

@keyframes particle-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(100px, -100vh) rotate(360deg);
    opacity: 0;
  }
}

.fade-in {
  animation: fadeIn 1.2s ease-out;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 4s ease-in-out infinite;
}

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

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url('images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.hero-text h1 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
}

.section-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.btn-gold {
  background: var(--primary);
  color: #000;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(245, 217, 126, 0.4);
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-gold:hover::before {
  width: 300px;
  height: 300px;
}

.btn-gold:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 217, 126, 0.6);
}

.btn-outline-gold {
  border: 2px solid var(--primary);
  color: white;
  background: transparent;
  transition: all 0.5s ease;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(245, 217, 126, 0.2);
}

.btn-outline-gold:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 217, 126, 0.6);
}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */

#about {
  background-color: #000000;
  color: var(--darker);
}

#about p {
  font-size: 1rem;
  line-height: 1.8;
}

.image-reveal {
  animation: fadeIn 1s ease-out 0.3s both;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 217, 126, 0.3), transparent);
  transition: left 0.7s;
  z-index: 1;
}

.text-reveal {
  animation: fadeIn 1s ease-out 0.5s both;
}

.service-card {
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(245, 217, 126, 0.2);
}


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

.service-card-main {
  animation: fadeIn 1s ease-out both;
}

.service-card-main:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card-main:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card-main:nth-child(3) {
  animation-delay: 0.3s;
}


.cta-button {
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 400px;
  height: 400px;
}

/* ============================= */
/* CONTACT SECTION */
/* ============================= */

.contact-link {
  position: relative;
  padding: 10px 20px;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.contact-link:hover::after {
  width: 100%;
}

/* ============================= */
/* MOBILE RESPONSIVENESS */
/* ============================= */

@media (max-width: 992px) {
  .hero-image {
    height: 80vh;
    background-attachment: scroll;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text p {
    font-size: 1.1rem;
  }
  #about .flex {
    flex-direction: column;
  }
  #about img {
    max-height: 300px;
  }
  .grid.md\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-image {
    height: 70vh;
    background-position: top;
    background-attachment: scroll;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }

  .hero-text p {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .hero-text .flex {
    flex-direction: column;
    gap: 0.75rem;
  }

  #about {
    padding: 3rem 1rem;
  }

  #about img {
    max-height: 250px;
    margin-bottom: 1.5rem;
  }

  #about .flex {
    flex-direction: column;
    gap: 1.5rem;
  }

  .grid.md\:grid-cols-3 {
    grid-template-columns: 1fr;
  }

  #contact {
    padding: 4rem 1.5rem;
  }

  #contact h2 {
    font-size: 2rem;
  }

  #contact p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  #contact .flex {
    flex-direction: column;
    gap: 1rem;
  }

  #contact a {
    justify-content: center;
    font-size: 0.95rem;
  }

  a.inline-block, .cta-button {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
  
  .particle {
    display: none;
  }
}