:root {
  --primary-color: #06402B; /* Dark Green */
  --secondary-color: #FFD700; /* Bright Gold */
  --text-color: #333;
  --bg-color: #ffffff;
  --accent-color: #2c3e50;
}

/* Typography */
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  scroll-behavior: smooth;
}

h1 {
color: var(--secondary-color);
font-weight: 100;
}
 h2, h3, .navbar-brand {
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
}

/* Navbar */
.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand,
.nav-link {
  color: var(--primary-color) !important;
  transition: color 0.3s ease;
}

.navbar-brand:hover,
.nav-link:hover {
  color: var(--secondary-color) !important;
}

.navbar:not(.scrolled) .nav-link,
.navbar:not(.scrolled) .navbar-brand,
.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .navbar-brand:hover {
  color: var(--secondary-color) !important;
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
  color: var(--primary-color) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .navbar-brand:hover {
  color: var(--secondary-color) !important;
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.theme-toggle button {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 80vh;
  background: url('images/hero.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(6, 64, 43, 0.3), rgba(6, 64, 43, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 100;
  color: white;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: #eee;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.btn-hero-gold {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #000;
  padding: 0.75rem 2rem;
  font-weight: 100;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-hero-gold:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #000;
}

/* Section Titles */
.section-title {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Buttons */
.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-outline-primary:hover,
.btn:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #000 !important;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

/* Service Cards */
.service-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content h4 {
  color: var(--primary-color);
}

.service-content i {
  color: var(--secondary-color);
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
  min-height: 400px;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
  opacity: 0.2;
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transition: border-color 0.3s ease;
}

.pricing-card.featured:hover {
  border-color: var(--secondary-color);
}

.pricing-card h3 {
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.pricing-card li {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* Masonry Gallery Items */
.masonry-gallery {
  column-count: 4;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .masonry-gallery { column-count: 3; }
}

@media (max-width: 768px) {
  .masonry-gallery { column-count: 2; }
}

@media (max-width: 576px) {
  .masonry-gallery { column-count: 1; }
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-filters button {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: none;
  color: var(--primary-color);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.gallery-filters button:hover,
.gallery-filters button.active,
.gallery-filters button.active:hover {
  background-color: var(--secondary-color);
  color: #000;
  border-color: var(--secondary-color);
}

/* Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  z-index: 2;
  cursor: pointer;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.nav-arrow:hover {
  background: var(--secondary-color);
  color: #000;
}

.nav-arrow.prev { left: 1rem; }
.nav-arrow.next { right: 1rem; }

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
}

footer a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary-color);
}

.social-link {
  color: var(--secondary-color);
  margin-left: 1rem;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--secondary-color);
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.scroll-top:hover {
  background: var(--secondary-color);
  color: white;
}
.card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px 10px 0 0;
}

.card:hover .card-img-top {
  transform: scale(1.03);
}

.card-title {
  color: var(--primary-color);
}

/* floating socials */
.floating-socials {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Facebook blue */
.social-icon.facebook {
  background-color: #1877f2;
}

/* Instagram gradient */
.social-icon.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}
/* whatsapp */
.whatsapp {
  background-color: #06402B;
}
@media (max-width: 576px) {
  .floating-socials {
    bottom: 80px; /* push them higher on small screens */
    left: 10px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}


/* Process */
.process-step {
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

