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

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* =========================================================
   BASE TYPOGRAPHY
   ========================================================= */
.font-display {
  font-family: "Playfair Display", serif;
}

.brand-gold {
  color: #c69637;
}

.bg-brand-gold {
  background-color: #c69637;
}

.border-brand-gold {
  border-color: #c69637;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.img-placeholder,
.about-img-placeholder,
.services-img-placeholder {
  background: linear-gradient(
    135deg,
    #e5e5e5 0%,
    #f5f5f5 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.875rem;
  text-align: center;
  /* padding: 1rem; */
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
  opacity: 0;
  transform: translateX(-50px);
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 1s ease-out forwards;
  opacity: 0;
  transform: translateX(50px);
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav-link {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c69637;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* =========================================================
   MOBILE MENU
   ========================================================= */
.mobile-menu {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.mobile-menu.active {
  max-height: 500px;
  opacity: 1;
}

/* =========================================================
   GLOBAL ELEMENTS
   ========================================================= */
.decorative-line {
  position: relative;
  padding-left: 2rem;
}
.decorative-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: calc(100% - 1rem);
  background: linear-gradient(to bottom, #c69637, #f4d98b);
  border-radius: 2px;
}

/* =========================================================
   PAGE: INDEX
   ========================================================= */
.hero-bg {
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2d2d2d 100%
  );
  position: relative;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
}

/* Feature cards */
.feature-card {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #fefdfb 100%
  );
  border: 1px solid #f0e8d8;
  transition: all 0.4s
    cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(198, 150, 55, 0.15);
  border-color: #c69637;
}

/* Testimonial cards */
.testimonial-card {
  background: linear-gradient(
    to bottom right,
    #ffffff,
    #fffef9
  );
  border-left: 4px solid #c69637;
}

/* CTA */
.cta-gradient {
  background: linear-gradient(
    135deg,
    #c69637 0%,
    #f4d98b 100%
  );
  position: relative;
  overflow: hidden;
}
.cta-gradient::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   PAGE: ABOUT
   ========================================================= */
.page-header {
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2d2d2d 100%
  );
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-page-header {
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2d2d2d 100%
  );
  position: relative;
  overflow: hidden;
}
.about-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
}

.value-card {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #fefdfb 100%
  );
  border: 1px solid #f0e8d8;
  transition: all 0.4s
    cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(198, 150, 55, 0.15);
  border-color: #c69637;
}

/* =========================================================
   PAGE: SERVICES
   ========================================================= */
.services-page-header {
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2d2d2d 100%
  );
  position: relative;
  overflow: hidden;
}
.services-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
}

.service-card {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #fefdfb 100%
  );
  border: 1px solid #f0e8d8;
  transition: all 0.4s
    cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #c69637, #f4d98b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(198, 150, 55, 0.2);
  border-color: #c69637;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    #c69637 0%,
    #f4d98b 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(198, 150, 55, 0.3);
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(198, 150, 55, 0.4);
}

.feature-list {
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c69637;
  font-weight: bold;
  font-size: 1.25rem;
}

/* =========================================================
   PAGE: MENU
   ========================================================= */
.menu-page-header {
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2d2d2d 100%
  );
  position: relative;
  overflow: hidden;
}
.menu-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
}

.menu-item {
  transition: all 0.3s ease;
}
.menu-item:hover {
  transform: translateX(5px);
}

/* =========================================================
   PAGE: CONTACT
   ========================================================= */
.contact-page-header {
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2d2d2d 100%
  );
  position: relative;
  overflow: hidden;
}
.contact-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
}

.contact-card {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #fefdfb 100%
  );
  border: 1px solid #f0e8d8;
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(198, 150, 55, 0.15);
  border-color: #c69637;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}
.form-input:focus {
  outline: none;
  border-color: #c69637;
  box-shadow: 0 0 0 3px rgba(198, 150, 55, 0.1);
}

.form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   PAGE: GALLERY
   ========================================================= */
.gallery-item {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox backdrop */
#lightbox .modal-backdrop {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

/* =========================================================
   RESPONSIVE IMAGES
   ========================================================= */
@media (max-width: 600px) {
  .about-story-image-wrapper {
    max-width: 100%;
  }
  
  .about-story-image-wrapper .absolute {
    display: none !important;
  }
  
  .about-story-image-wrapper .relative {
    max-width: 100%;
  }
  
  .about-story-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  
  .about-story-image-wrapper .img-placeholder {
    width: 100%;
  }
}
