/* --- GLOBAL VARIABLES --- */
:root {
    --primary-color: #ff9933; /* Saffron */
    --secondary-color: #800000; /* Dark Red */
    --text-dark: #333;
    --light-bg: #fffbf5;

    --saffron-main: #ff9933;
        --saffron-dark: #d35400;
        --deep-red: #800000;
        --cream-bg: #fffbf2;
        --text-grey: #555;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

a { text-decoration: none; }

/* home gallary */
.slider-section {
    padding-top: 0px;
    padding-bottom: 30px;
    background: white;
    overflow: hidden; /* Hides the scrollbar */
  }

  .slider-header {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
  }

  /* The Window we see through */
  .slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* The Track that moves */
  .slider-track {
    display: flex;
    width: calc(
      250px * 20
    ); /* Width = (Slide Width * Number of Slides * 2) */
    animation: scroll 40s linear infinite;
  }

  /* Individual Slide Card */
  .slide-card {
    width: 250px; /* Fixed width for each slide */
    padding: 0 15px; /* Gaps between photos */
    flex-shrink: 0;
  }

  .slide-card img {
    width: 100%;
    height: 200px; /* Fixed height */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .slide-card img:hover {
    transform: scale(1.05);
  }

  /* The Animation Keyframes */
  /* Moves from Right to Left (Standard) */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 10));
    } /* Move by width of original 10 slides */
  }

  /* Pause animation on hover */
  .slider-track:hover {
    animation-play-state: paused;
  }

  /* Mobile Responsiveness adjustments */
  @media (max-width: 768px) {
    .slide-card {
      width: 300px; /* Slightly wider images on mobile */
    }
    .slide-card img {
      height: 250px;
    }
    /* Adjust animation calculation for mobile width */
    .slider-track {
      width: calc(300px * 20);
    }
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-300px * 10));
      }
    }
  }
  /* end home gallary */

/* make donation system  */
  /* Section Container */
  .donation-section {
    padding: 40px 0;
    background-color: var(--cream-bg);
    border-top: 6px solid var(--saffron-main);
    position: relative;
    overflow: hidden;
  }

  /* Decorative background OM symbol */
  .bg-om {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    color: var(--saffron-main);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
  }

  /* Headings */
  .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
  }

  .section-title {
    color: var(--deep-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .section-subtitle {
    color: var(--saffron-dark);
    font-size: 1.2rem;
    font-weight: 500;
  }

  /* Donation Option Cards */
  .donate-card {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .donate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .card-header-custom {
    background: linear-gradient(
      135deg,
      var(--saffron-main),
      var(--saffron-dark)
    );
    color: white;
    padding: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
  }

  .card-body-custom {
    padding: 30px;
  }

  /* Bank Details Styling */
  .bank-detail-group {
    margin-bottom: 20px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
  }

  .bank-detail-group:last-child {
    border-bottom: none;
  }

  .label-text {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
  }

  .value-text {
    font-size: 1.15rem;
    color: #333;
    font-weight: 700;
    font-family: "Courier New", monospace; /* Monospace for clear number reading */
  }

  /* Copy Button */
  .btn-copy {
    background: rgba(255, 153, 51, 0.1);
    color: var(--saffron-dark);
    border: none;
    border-radius: 5px;
    padding: 2px 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 10px;
  }

  .btn-copy:hover {
    background: var(--saffron-main);
    color: white;
  }

  /* QR Code Styling */
  .qr-box {
    border: 2px dashed var(--saffron-main);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #fff;
    margin-bottom: 20px;
  }

  .qr-placeholder-icon {
    font-size: 6rem;
    color: #ddd;
  }

  .upi-id-badge {
    background-color: #f0f0f0;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    color: #555;
    display: inline-block;
  }

  /* Footer Info */
  .tax-info {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid #28a745;
    padding: 15px;
    border-radius: 4px;
  }

  /* End make donation */

/* --- TOP HEADER --- */
.top-bar {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}
.top-bar a { color: white; margin-right: 15px; }

/* --- NAVBAR --- */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
}
.ads{
    width: 100%;
    height: 400px;
}
.nav-link {
    color: #444;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px !important;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}
.btn-book {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 8px 25px;
}

/* Custom Gallery Styling */
.gallery-section {
  padding: 30px 0;
  background-color: #f8f9fa;
}

.gallery-item {
  position: relative;
  overflow: hidden; /* Keeps the zoomed image inside the box */
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover; /* Ensures images don't stretch */
}

/* Hover Effect: Zoom Image */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay Styling */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover Effect: Show Overlay */
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
/* gallary */

.btn-book:hover { background-color: #e68a00; color: white; }
.abc{
    background: linear-gradient(rgba(151 131 131 / 60%), rgba(183 147 147 / 60%)), url('https://source.unsplash.com/1600x900/?indian-wedding,fire');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

/* --- HERO SECTION --- */
.hero-section {
    background-image: url("./images/couple.jpg");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  
    /* border-radius: 300%; */
    overflow: hidden;
  
    margin: 0;
}

/* --- PAGE HEADERS (For non-home pages) --- */
.page-header {
    background-color: var(--light-bg);
    padding: 30px 0;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
    /* margin-bottom: 40px; */
}
.page-header h1 { color: var(--secondary-color); font-weight: bold; }

/* --- FLOATING BUTTONS (STICKY) --- */
.sticky-btn {
    position: fixed;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}
.logo{
    height: 40px;
    width: 88px;
}
.sticky-btn:hover { transform: scale(1.1); color: white; }

.call-btn { left: 20px; background-color: #0d6efd; animation: pulse 2s infinite; }
.whatsapp-btn { right: 20px; background-color: #25D366; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(13, 110, 253, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
}

/* --- FOOTER --- */
footer {
    background-color: #222;
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 15px;
}
footer h5 { color: var(--primary-color); margin-bottom: 20px; }
footer a { color: #ccc; }
footer a:hover { color: var(--primary-color); }
@media (max-width: 600px) {
    .asd{margin-top: 10px;}
}
@media (min-width: 600px) {
    .navbar-brand{margin-left: 30px;}
}