/* styles.css */

/* CSS Variables for exact color matching */
:root {
  --color-gold: #ddbe65;
  --color-gold-hover: #c4a855;
  --color-navy: #1a1a2e;
  --color-navy-dark: #16162a;
  --color-beige: #f5f5f0;
  --color-text-dark: #1f2937;
  --color-text-muted: #6b7280;
  --color-footer-bg: #2d2d3a;
  --color-footer-text: #a1a1aa;
}

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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

/* Utility Classes */
.text-gold {
  color: var(--color-gold) !important;
}

.bg-gold {
  background-color: var(--color-gold) !important;
}

.border-gold {
  border-color: var(--color-gold) !important;
}

.tracking-widest {
  letter-spacing: 0.2em;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

/* Navbar Styles */
#mainNav {
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background: transparent;
  z-index: 1030;
}

#mainNav .nav-link {
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

#mainNav .nav-link:hover {
  background-color: rgba(221, 190, 101, 0.2);
}

#mainNav.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

#mainNav.navbar-scrolled .nav-link {
  color: var(--color-text-dark);
}

#mainNav.navbar-scrolled .navbar-brand svg path {
  fill: var(--color-navy);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2831, 41, 55, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

#heroCarousel,
.carousel-inner,
.carousel-item {
  height: 100%;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.gold-line {
  width: 96px;
  height: 1px;
  background-color: var(--color-gold);
}

.gold-bar {
  width: 144px;
  height: 4px;
  background-color: var(--color-gold);
  border-radius: 2px;
}

.gold-bar-sm {
  width: 96px;
  height: 4px;
  background-color: var(--color-gold);
  border-radius: 2px;
}

.hero-title {
  font-size: 3.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-large svg {
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.btn-gold {
  background-color: #dcca87;
  border-color: #dcca87;
  color: #000000;
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  border-radius: 6px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(221, 190, 101, 0.4);
}

.scroll-down {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Styles */
.section-title {
  font-size: 3rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.location-title {
  font-size: 1.75rem;
  color: var(--color-navy);
  margin-bottom: 2rem;
}

.location-title span {
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 0.5rem;
}

/* Tour Cards */
.tour-card {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.tour-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tour-card:hover .tour-card-img {
  transform: scale(1.1);
}

.tour-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}


.tour-card-content {
  position: relative;
  z-index: 2;
  min-height: 400px;
  padding: 2rem;
}

.tour-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tour-card-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: rgba(60, 60, 60, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 2rem;
}





/* Testimonials Section */
.testimonials-section {
  background-color: #D6D3C8;
  padding: 4rem 0;
}

.testimonials-title {
  font-size: 1.75rem;
  color: var(--color-text-dark);
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.testimonial-card {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.testimonial-footer {
  background-color: #f3f4f6;
  border-top: 1px solid #e5e7eb;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.star-icon {
  width: 16px;
  height: 16px;
  color: #eab308;
}

/* Instagram & Map Sections */
.instagram-section,
.map-section {
  background-color: #ffffff;
}

.map-container {
  width: 100%;
}

/* Footer */
.footer-section {
  background-color: #5d5d5d;
  color: #ffffff;
  padding: 4rem 0 2rem;
  font-family: 'Inter', sans-serif;
}

.footer-section h5,
.footer-section h6,
.footer-section h3,
.footer-section h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #ffffff;
}

.social-links a:hover {
  background-color: #ffffff;
  color: var(--color-footer-bg);
}

.footer-divider {
  display: none;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  #mainNav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
  }

  #mainNav .nav-link {
    color: var(--color-text-dark);
    padding: 0.75rem 1rem;
  }

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

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

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

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 120px 1rem 80px;
  }

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

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

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

  .tour-card {
    min-height: 280px;
  }

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

  .instagram-section .container-fluid,
  .map-container {
    height: 400px !important;
  }
}

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

  .btn-gold {
    margin-bottom: 15px;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }

  .tour-card-content {
    padding: 1.5rem;
  }

  .tour-card-title {
    font-size: 1.25rem;
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

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

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background-color: var(--color-gold);
  color: #000000;
}
