/* Base settings */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

/* Colors */
:root {
  --gold: #d4af37;
  --dark: #1d1d1d;
  --light-gray: #f5f5f5;
}

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

.btn-gold {
  background-color: var(--gold);
  color: #ffffff;
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-gold:hover,
.btn-gold:focus {
  background-color: #bfa12c;
  border-color: #bfa12c;
  color: #fff;
}

.btn-outline-gold {
  color: var(--gold);
  border: 2px solid var(--gold);
  background-color: transparent;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  background-color: var(--gold);
  color: #fff;
}

/* Navbar styling */
.navbar {
  padding: 1rem;
  /* background-color: var(--dark) !important; */
}

.navbar-brand {
  font-size: 1.75rem;
}

.nav-link {
  font-weight: 500;
  color: #1f2d20 !important;
  margin-right: 1rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
  background: url('files/images/static/landing_bg.jpg') no-repeat center center/cover;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

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

/* Feature Icons */
.feature-icon i {
  color: var(--gold);
}

/* Product Cards */
.product-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.product-card img {
  height: 200px;
  object-fit: cover;
}

/* Grayscale hover for clients */
.grayscale-hover {
  filter: grayscale(80%);
  transition: filter 0.3s;
}

.grayscale-hover:hover {
  filter: grayscale(0%);
}

/* Gallery thumbnails */
.gallery-thumb {
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-thumb:hover {
  transform: scale(1.05);
}

/* Contact snapshot */
.bg-dark {
  background-color: var(--dark) !important;
}

footer {
  margin-top: 2rem;
}

.sub_heading {
  color: #153015;
}

.points {
  color: #038f21;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-section .display-3 {
    font-size: 2.5rem;
  }
}


/* ABOUT PAGE START  */
/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gold);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
}

.timeline-content {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left::after {
  right: -10px;
}

.timeline-item.right::after {
  left: -10px;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 3rem;
    text-align: left !important;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item::after {
    left: 0;
  }
}

/* PRODUCTS PAGE */
.product-card {
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
}

.product-img-wrapper img {
  transition: transform 0.4s ease;
}

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .overlay {
  opacity: 1;
}


/* GALLERY PAGE */
/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay-text {
  text-align: center;
  color: #fff;
}

.overlay-text i {
  color: var(--gold);
  margin-bottom: 8px;
}

/* Luxury Zoom Effect */
.zoom-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
  cursor: crosshair;
}

.zoom-img {
  width: 100%;
  height: auto;
  transition: transform 0.2s ease-out;
  transform-origin: center center;
}


/* CONTACT PAGE */
/* Luxury Theme */
body {
  background-color: #233328;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.text-gold {
  color: #d4af37;
}

.btn-gold {
  background: linear-gradient(45deg, #d4af37, #b8860b);
  color: #000;
  font-weight: bold;
  border: none;
  transition: 0.3s;
}

.btn-gold:hover {
  transform: scale(1.05);
}

/* Header */
.luxury-header {
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.luxury-header .nav-link {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.luxury-header .nav-link:hover,
.luxury-header .nav-link.active {
  color: #d4af37;
}

.luxury-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

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

/* Contact Cards */
.contact-card {
  background: #ffffff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card-2 {
  background: #253326;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* Inputs */
.luxury-input {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 255, 47, 0.3);
}

.luxury-input::placeholder {
  color: #bbb;
}

.luxury-input:focus {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
  outline: none;
}

/* Map */
.map-container iframe {
  border: none;
}

/* CTA */
.luxury-cta {
  background: linear-gradient(to right, #111, #222);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* Footer */
.luxury-footer {
  background: #111;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
}