/* Styles for the social Media icons */
.social-icons-container {
  position: fixed;
  bottom: 90px;
  right: 30px; /* Adjust this value to add margin from the right */
  z-index: 1000;
  display: flex;
  flex-direction: column;
  
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px; /* Adjusted margin to separate the icons vertically */
  transition: background-color 0.3s ease;
  margin-right:-5px ;
}

.social-icon img {
  width: 30px;
  height: 30px;
  transition: filter 0.3s ease;
}

/* Styles for the social icons hover effect */
.social-icon:hover {
  background-color: #f5f5f5;
}

.social-icon:hover img {
  filter: brightness(1.3);
}

/* Styles for social icon tooltip */
.social-icon .tooltip {
  visibility: hidden;
  width: 80px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 100;
  bottom: 70px;
  right: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.social-icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* Media query to hide icons on mobile except WhatsApp */
@media (max-width: 768px) {
  .social-icon{
   height:35px;
    width:35px;
    padding: 10px;
  }
  .social-icon:not(.whatsapp) {
    display: none; 
  }
  .social-icons-container {
    flex-direction: column;
    top: 83%!important;
  }
}

/* Services Shapes */
.single-facility span img {
  height: 52px;
  width: 52px;
  object-fit: contain;
}

/* ========================================================================================= */

/* Responsive Slider CSS code  For All Pages */
@media screen and (max-width: 768px) {
  /* Adjust responsiveness  for mobile view */

  .header {
    min-height: 40vh !important;
    overflow: hidden !important;
  }
  .slider .owl-item {
    height: 40vh !important;
    position: relative;
  }
  .slider .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 40vh !important;
    width: 100%;
    background-size: cover;
    background-position: center;
  }
}

/* ========================================================================================= */

/* Banner Css For Other Pages */
.banner-header {
  height: 70vh !important;
  width: 100vw !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .banner-header {
    height: 50vh !important; /* Adjust the height for smaller screens */
    width: 100% !important;
  }
}


/* ===============================
   Common Styles for All Forms
   =============================== */

/* Banner Css */
/* ===============================
   Universal Banner for Auth Pages
   =============================== */
   .auth-banner {
    position: relative;
    width: 100%;
    height: 250px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.auth-banner[data-overlay-dark] {
    position: relative;
}

.auth-banner[data-overlay-dark="3"]:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay */
}

.auth-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'EB Garamond', serif;
}

/* ===============================
   Common Styles for All Forms
   =============================== */
.auth-container {
    width: 100%;
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background: #f8f5f0; /* Matches the site theme */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Titles */
.auth-container h2 {
    color: #222;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Input Fields */
.auth-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-bottom: 2px solid #aa8453; /* Gold accent */
    background: transparent;
    font-size: 15px;
    color: #666;
}



/* Button Styles */
.auth-container button {
    background: #aa8453;
    color: white;
    padding: 10px 20px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.auth-container button:hover {
    background: #8a6d45;
}

/* Links (Forgot Password, Signup, etc.) */
.auth-container a {
    color: #666;
    font-size: 13px;
    display: block;
    margin-top: 10px;
    text-decoration: none;
}

.auth-container a:hover {
    color: #aa8453;
}

/* Custom File Upload Styling */
.auth-container .custom-file {
    text-align: left;
    margin-bottom: 15px;
}

.auth-container .custom-file label {
    display: block;
    padding: 10px;
    background: #f8f5f0;
    border: 2px dashed #aa8453;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

/* Input Groups (For Icons in Fields) */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #aa8453;
    background: transparent;
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
}

.input-group .input-group-append {
    padding: 10px;
    background: transparent;
}

.input-group .input-group-text {
    background: transparent;
    border: none;
    color: #666;
}

/* Special Button Styles */
.signup-btn, .update-btn, .password-btn, .reset-btn, .resend-btn {
    font-size: 15px;
    font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 480px) {
    .auth-container {
        max-width: 90%;
        padding: 20px;
    }
}


/* ===============================
   Universal Styles for Auth Pages
   =============================== */
   .auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8f5f0; /* Matches site theme */
    padding: 50px 15px;
}

/* Auth Box */
.auth-box {
    max-width: 450px;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #aa8453; /* Gold Accent */
}

/* Universal Icons */
.auth-box .auth-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

/* Icon Colors */
.success-icon {
    color: #28a745;
}

.error-icon {
    color: #dc3545;
}

.warning-icon {
    color: #ffc107;
}

.info-icon {
    color: #007bff;
}

/* Headings */
.auth-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    font-family: 'EB Garamond', serif;
}

/* Text */
.auth-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

/* Buttons */
.auth-box .btn {
    display: block;
    width: 100%;
    background: #aa8453;
    color: white;
    padding: 12px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.auth-box .btn:hover {
    background: #8a6d45;
}

/* Small Links */
.auth-box a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
}

.auth-box a:hover {
    color: #aa8453;
}

/* Responsive */
@media screen and (max-width: 480px) {
    .auth-box {
        max-width: 90%;
        padding: 20px;
    }
}


/* Home-Page */
  .sliding-banner {
        position: relative;
        background: linear-gradient(90deg, #aa8453, #8a6d45);
        padding: 12px 0;
        overflow: hidden;
        white-space: nowrap;
        border-top: 2px solid #f8f5f0;
        border-bottom: 2px solid #f8f5f0;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    }

    .banner-content {
        display: flex;
        white-space: nowrap;
        animation: slide 25s linear infinite;
    }

    .slide {
        display: flex;
        align-items: center;
        padding-right: 80px; /* Spacing between slides */
        font-size: 16px;
        color: white;
        font-weight: 500;
    }

    .slide strong {
        color: #f0dfc2; /* Light color for highlighted text */
    }

    @keyframes slide {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }

    /* Gallery - CSS */



.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 15px;
    margin-bottom: 50px;
    overflow-x: auto;
}

.tab-button {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #aa8453;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    color: #aa8453;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.tab-button:hover,
.tab-button.active {
    background-color: #aa8453;
    color: #fff;
}

.gallery-section {
    display: none;
}

.gallery-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Mobile */
@media (max-width: 768px) {
    .tab-button {
        padding: 8px 15px;
        font-size: 11px;
    }

}


/* Event-Booking-page */

.events-hero {
  background: radial-gradient(circle at 10% 20%, rgba(170,132,83,0.25), transparent 30%), radial-gradient(circle at 90% 10%, rgba(255,255,255,0.12), transparent 30%), linear-gradient(135deg, #0a0f1f, #111827 50%, #0b132b);
  color: #fff;
  padding: 110px 0 70px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 13px;
  letter-spacing: 0.4px;
}
.event-grid {
  background: var(--sand);
  padding: 70px 0 90px;
}
.event-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  text-decoration: none;
  display: block;
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.card-banner {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.card-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
}
.status-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.4px;
  border: 1px solid rgba(255,255,255,0.2);
}
.availability {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: linear-gradient(135deg, #c1996b, #aa8453);
  color: #0f122a;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
}
.event-body {
  padding: 18px;
  color: #e2e8f0;
}
.event-body h4 {
  color: #fff;
  margin-bottom: 6px;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
}
.meta i { color: #f7c873; }
.price {
  color: #f7c873;
  font-weight: 700;
  font-size: 16px;
}
.cta-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f7c873;
  font-weight: 600;
}


/* Event Details */

.banner-wrap {
  background: linear-gradient(135deg, #0a0f1f, #111827 45%, #0b132b);
  padding: 32px 0 12px;
}
.banner-visual {
  height: 340px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.banner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(170,132,83,0.2), transparent 32%), linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
}
.detail-shell {
  background: linear-gradient(180deg, var(--sand), #ffffff 55%, #f3ede5);
  padding: 70px 0 90px;
}
.info-card, .book-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5d8c7;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  padding: 22px;
}
.header-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px; 
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1e6d6;
  color: #5b431f;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.meta-list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 12px;
  margin-top: 14px;
}
.meta-list .item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #475569;
}
.meta-list i { color: #aa8453; }
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 14px;
  margin-top: 16px;
}
.metrics .box {
  background: #f9f4ec;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e2d7c7;
}
.section-heading {
  font-weight: 700;
  color: var(--ink);
}
.book-card .form-control,
.book-card textarea,
.book-card select {
  background: #f9f4ec;
  border-radius: 10px;
  border: 1px solid #e2d7c7;
}
.payment-pill {
  border: 1px solid #e2d7c7;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all .18s ease;
  background: #f9f4ec;
}
.payment-pill.active {
  background: linear-gradient(90deg, #aa8453, #c1996b);
  color: #0f122a;
  border-color: #c1996b;
  font-weight: 700;
}
.total-box {
  background: #0f122a;
  color: #fff;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.availability-hint {
  font-size: 13px;
  color: #0f122a;
}
.soldout { color: #b91c1c; font-weight: 700; }
.mini-card {
  background: #111827;
  border-radius: 12px;
  color: #e2e8f0;
  padding: 16px;
  height: 100%;
  text-decoration: none;
  display: block;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.mini-card .badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}



/* Ticket-Portal */

.ticket-hero {
  position: relative;
  background: radial-gradient(circle at 12% 20%, rgba(170,132,83,0.22), transparent 28%), radial-gradient(circle at 88% 12%, rgba(255,255,255,0.12), transparent 28%), linear-gradient(120deg, #0a0f1f, #111827 60%, #0b132b);
  color: #fff;
  padding: 100px 0 80px;
  overflow: hidden;
}
.ticket-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.ticket-hero .content {
  position: relative;
  z-index: 1;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 13px;
  letter-spacing: 0.3px;
}
.glass-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
}
.soft-card {
  background: #ffffff;
  border: 1px solid #e5ded2;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}
.soft-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f6f0e8;
  border-radius: 999px;
  font-size: 12px;
  color: #5b431f;
}

/* Ticket Preview */
.ticket-wrap{background:var(--bg); padding:48px 0;}

.ticket-card{
  max-width:900px;
  margin:0 auto;
  background:linear-gradient(180deg,var(--panel),#fff);
  border-radius:14px;
  box-shadow:0 18px 40px rgba(170,132,83,0.25);
  overflow:hidden;
  border:1px solid #e6d9c8
}

/* HEADER MAIN COLOR */
.ticket-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px 32px;
  background:#aa8453;        /* ← replaced */
  color:#fff
}

.ticket-brand{display:flex; align-items:center; gap:14px}

.ticket-brand img{
  height:192px;
  width:192px;
  object-fit:contain;
}

.ticket-brand h2{
  margin:0;
  font-size:20px;
  color:#fff              /* gold bg pe white better */
}

.ticket-meta{
  background:#fff7ea;
  color:#2b2b2b;
  padding:14px 18px;
  border-radius:8px
}

.ticket-body{
  padding:26px 32px;
  display:grid;
  grid-template-columns:1fr 320px;
  gap:22px
}

.event-panel, .guest-panel, .pay-panel{
  background:transparent;
  border:1px solid #efe6d9;
  padding:18px;
  border-radius:10px
}

.event-panel h3{margin:0 0 6px 0; color:var(--ink)}
.event-details{color:var(--muted); font-size:14px}
.guest-panel p{margin:6px 0; color:#374151}

.pay-panel .amount{
  font-weight:700;
  font-size:18px;
  color:var(--ink);
}

.right-rail{display:flex; flex-direction:column; gap:12px}

.qr-box{
  background:#ffffff;
  padding:12px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:280px;
  box-shadow:0 6px 18px rgba(0,0,0,0.05)
}

.code-box{
  background:#fff;
  padding:10px;
  border-radius:8px;
  text-align:center;
  color:#111;
  font-family:monospace
}

.ticket-footer{
  padding:18px 32px;
  background:#faf7f3;
  color:var(--muted);
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:space-between
}

.btns{display:flex; gap:10px}

/* PRIMARY BUTTON */
.btn{
  background:#aa8453;       /* ← replaced */
  color:#fff;
  padding:10px 14px;
  border-radius:8px;
  text-decoration:none
}

.btn.secondary{
  background:#fff;
  color:#aa8453;
  border:1px solid #aa8453
}

@media (max-width: 600px) {

  /* Card spacing */
  .ticket-wrap{
    padding:24px 10px;
  }

  .ticket-card{
    border-radius:12px;
  }

  /* HEADER FIX */
  .ticket-header{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:14px;
    padding:20px 16px;
  }

  .ticket-brand{
    flex-direction:column;
    gap:10px;
  }

  .ticket-brand img{
    height:110px;
    width:110px;
  }

  .ticket-meta{
    width:100%;
    text-align:center;
  }

  /* BODY GRID */
  .ticket-body{
    padding:18px 16px;
    grid-template-columns:1fr;
    gap:16px;
  }

  /* QR + RIGHT RAIL */
  .right-rail{
    flex-direction:column;
    align-items:center;
    gap:12px;
  }

  .qr-box{
    width:100%;
    height:280px;
  }

  .code-box{
    width:100%;
  }

  /* BUTTONS */
  .right-rail a.btn{
    width:100%;
    text-align:center;
  }

  /* FOOTER */
  .ticket-footer{
    flex-direction:column;
    gap:6px;
    text-align:center;
    padding:14px 16px;
  }
}
