/*General Style for all Pages*/

/* Global content container */
.content-container {
  margin: 0 auto;              
  max-width: 1140px;            
  padding-left: 80px;           
  padding-right: 80px;
}

/* Example adjustment for smaller screens */
@media (max-width: 992px) {
  .content-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 576px) {
  .content-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* Full-height sections with subtle separators */
.section {
  min-height: 100vh;
  /*border-bottom: 1px solid #222; */
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: all 0.2s ease;
}

.nav-link:hover {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 4px;  
}

html {
  scroll-behavior: smooth;
}

/* Global Typography */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #000;
  color: #fff;
  margin: 0;
}

/* Headings use Playfair Display */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #f4dfc8;
}

p {
    text-align: justify;
}

.section2-text {
  text-align: justify;
  font-size: 18px;
  font-weight: 400;

}

/* Navbar brand consistent with headings */
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 2px;
}

.navbar-inner {
  margin-left: 80px;
  margin-right: 80px;
}




.search-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 40px;                
  height: 34px;
  overflow: hidden;
  transition: width 0.3s ease;
}


.search-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.8rem;
  pointer-events: none;        
  z-index: 2;
}


.search-input {
  width: 0;
  opacity: 0;
  height: 34px;
  padding-left: 32px;          
  padding-right: 6px;

  background: transparent !important;
  color: #fff !important;

  border: none;
  border-bottom: 1px solid transparent;
  outline: none;
  box-shadow: none;
  transition: all 0.3s ease;
}


.search-container:hover,
.search-container:focus-within {
  width: 220px;                
}

.search-container:hover .search-input,
.search-container:focus-within .search-input {
  width: 100%;
  opacity: 1;
  border-bottom-color: #fff;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}

/* Optional: subtle caret/underline color on focus */
.search-input:focus {
  caret-color: #fff;
  border-bottom-color: #fff;
}

/* Global reusable style */
.btn-outline-light-global {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* Solid white on hover */
.btn-outline-light-global:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

/* Compact variant for navbar use */
.navbar .btn-outline-light-global {
  padding: 0.3rem 0.8rem;
  border-width: 1px;
}

/* Make login modal pure black */
.login-modal {
  background: linear-gradient(to bottom, #111, #000) !important;
}

.form-control-transparent {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.35);
}

.form-control-transparent::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-control-transparent:focus {
  background: transparent !important;
  color: #fff !important;

  box-shadow: none;
  outline: none;
}


/* Section text */
.section p, .section a, .section li {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/*Home Page*/

/* Section 1*/
.hero {
  position: relative;
  min-height: 100vh;
  background: url('images/home1.jpg') center center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 20, 10, 0.4); 
  backdrop-filter: sepia(20%) contrast(95%) brightness(90%);
  z-index: 1;
}

.hero .content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-light:hover {
  background-color: solid #222;   
  color: #fff;              
}

/* Section 2*/
.section-news { 
  display: flex; 
  padding: 6rem 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #111, #000); 
}

/* Carousel container positioning */
#newsCarousel { 
  position: relative;
  overflow: visible; 
}

#newsCarousel .carousel-indicators {
  position: static;        
  margin-top: 2.5rem;      
  margin-bottom: 2,5rem;
  justify-content: center;
}
#newsCarousel .carousel-indicators [data-bs-target] {
  background-color: transparent;  
  border: 2px solid #fff;         
  opacity: 0.5;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}
#newsCarousel .carousel-indicators .active { 
  opacity: 1; 
  background-color: #fff; 
  border: 2px solid #fff;
}

#newsCarousel .carousel-control-prev,
#newsCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: transparent;  
  border: 2px solid #fff;  
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

#newsCarousel .carousel-control-prev:hover,
#newsCarousel .carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 0.2);  
  border-color: #fff; 
}

#newsCarousel .carousel-control-prev { 
  left: -4rem;   
}

#newsCarousel .carousel-control-next { 
  right: -4rem; 
}

#newsCarousel .carousel-control-prev-icon,
#newsCarousel .carousel-control-next-icon {
  filter: invert(1) brightness(200%);  /* white arrows on transparent background */
  width: 20px;
  height: 20px;
}

@media (min-width: 992px) {
  .news-pad-left  { padding-left: 3rem; }   
  .news-pad-right { padding-right: 3rem; }  
}

#newsCarousel .carousel-item img {
  width: 100%;
  aspect-ratio: 1 / 1;         /* Ensures the image container is square */
  object-fit: cover;            
  object-position: center;      
  display: block;              
}

.separator {
  width: 50%;               
  margin: 2rem auto;
  border:0;  
  border-top: 1px solid rgba(255,255,255,0.4); 
}


/* Half-height utility for split sections */
.half-section {
  min-height: 50vh;            /* instead of 100vh from .section */
  padding: 2rem 1rem;          /* a bit tighter */
}

/* Make carousel content sit nicely within 50vh */
.section-news .carousel-item img {
  /* max-height: 38vh;             keep images contained */
  object-fit: cover;
}
.section-news .row { margin: 0; }

/* Indicators below slides, not overlapping */
.section-news .carousel-indicators [data-bs-target]{
  background:#fff; opacity:.6;
}
.section-news .carousel-indicators .active{ opacity:1 }



/* Quote tweaks inside the half-height */
.quote-wrap .quote-section p{
  max-width: 700px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

/* Quote section should wrap content, not fill screen */
.quote-section {
  color: #f4dfc8;
  padding: 6rem 0;   
  min-height: auto;       
  display: block;         
  text-align: center;
}

.quote-section .quote-icon {
  font-size: 2rem;      /* smaller quote */
  display: block;
  color: #f4dfc8;
}

.quote-section p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
  text-align: center;   /* override justify if needed */
}

.section-news .separator { margin: 3rem auto 3rem; }     /* small top, no bottom */
.section-news .quote-section { padding:6rem 0 0; }   /* no bottom padding */


.location-panel {
  background:linear-gradient(to bottom, rgba(15,15,15,0.95), #000);
  color:#fff;
  width:100%;
  min-height:100vh;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,0.1);
}

/* Left content column */
.location-info {
  border-right:1px solid rgba(255,255,255,0.1);
}

/* Info table (lines between rows) */
.info-table {
  margin-top:1rem;
  border-top:1px solid rgba(255,255,255,0.15);
}
.info-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0.75rem 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
  font-size:0.95rem;
}
.info-row strong {
  color:#f4dfc8;
  min-width:150px;
  font-weight:600;
}

/* Right image */
.location-img {
  background-size:cover;
  background-position:center;
  min-height:100vh;
}

/* Responsive tweaks */
@media (max-width:992px){
  .location-info{ border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); }
  .location-img{ min-height:350px; }
}

/*Section 3*/

.section-ig {
  display: block;         
  padding: 0;        
}

/* Square tiles */
.ig-tile {
  aspect-ratio: 1 / 1;    
  overflow: hidden;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;      
  display: block;
}

/* Hover overlay with Instagram icon */
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0); /* hidden by default */
  transition: background 0.2s ease;
}

.ig-overlay i {
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: scale(0.95);
}

.ig-tile:hover .ig-overlay {
  background: rgba(255, 255, 255, 0.487);
}

.ig-tile:hover .ig-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* Section 4*/

/* Testimonials Section */
.testimonials {
  position: relative;
  background: url("images/testimonial-bg.jpg") center/cover no-repeat;
  padding: 0 1rem;
  display: flex;
  align-items: center;       /* vertical center */
  justify-content: center;   /* horizontal center */
  text-align: center;
  min-height: 100vh;         /* full screen if you want it like hero */
  color: #fff;
  z-index: 1;
}

.testimonials .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 20, 10, 0.4);
  backdrop-filter: sepia(20%) contrast(95%) brightness(90%);
  z-index: 1;
}

/* Ensure content is above overlay */
.testimonials .content-container {
  position: relative;
  z-index: 2;
}

/* Title */
.testimonials h2 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
}

/* Card styling */
.t-card {
  background: rgba(0,0,0,0.85);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  text-align: left;
}

/* Quote text */
.t-quote {
  color: #eaeaea;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
}

/* Thin separator line */
.t-sep {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}

/* Avatar styling */
.t-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}
.text-muted-50 {
  color: rgba(255,255,255,0.6);
}

/* ===== Section 5: Footer / Sitemap ===== */
.footer-section {
  display: block;                /* override any .section flex */
  padding: 3rem 0 2rem 0;
  background: #000;              /* solid black to match site */
  color: #e9e9e9;
  min-height: auto !important;   /* stop stretching */
  padding: 2rem 0;               /* keep some breathing room */
  display: block; 
}

/* Brand wordmark next to logo (uses Playfair like headings) */
.footer-section .brand-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: #f4dfc8;
}

/* Column headings */
.footer-heading {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  color: #f4dfc8;
  margin-bottom: .75rem;
}

/* Links */
.footer-list a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: inline-block;
  padding: .2rem 0;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.footer-list a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Social icons */
.social-link {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  transition: color .2s ease, transform .2s ease;
}
.social-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* Bottom copyright strip */
.footer-copy {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: .75rem 0;
  color: rgba(255,255,255,0.7);
}

/* Small screens spacing */
@media (max-width: 575.98px) {
  .footer-section { padding: 2rem 0 1.25rem 0; }
}




