* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ✅ FIXED HEADER COMPENSATION */
body {
  padding-top: 100px;   
}

/* Fixed Header */
.main-header {
  margin-top: -100px;
  position: relative;
  height: 100px;   
  left: 0;
  width: 100%;
  background: #000;
  border-bottom: 2px solid #eee;
  z-index: 999;
}

/* Container */
.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 130px;        
  width: auto;
  display: block;
  margin-top: -28px;
}

/* Navigation */
.nav-menu {
  display: flex;
  gap: 35px;
}

.nav-menu a {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  margin-top: -22px;
}

/* Hover underline effect */
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  margin-top: -30px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}

/* MOBILE MENU */
@media (max-width: 992px) {

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 95px;              
    right: 20px;
    width: 260px;
    background: #ffffff;   
    border-radius: 14px;
    padding: 20px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
    text-align: center;
    z-index: 999;
  }

  .nav-menu a {
    font-family: 'Libre Franklin', sans-serif;
    color: #000;
    text-decoration: none;
    padding: 14px 0;
    font-size: 15px;
    letter-spacing: 1px;
  }

  .nav-menu a:hover{
    color: #6f5a3e;
  }

  .nav-menu a:not(:last-child) {
    border-bottom: 1px solid #eee;
  }

  .nav-menu.active {
    display: flex;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 83.5vh;
  overflow: hidden;
  background: #f6efe8;
  margin-top: 0;   
}

/* Image */
.hero-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }
}

/* About Us Section */
.about-us {
  padding: 80px 20px;
  font-family: 'Cormorant Garamond', serif;
  background-color: #f7f3ec;
  margin-top: -30px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 5px;
}

.about-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
  color: #222;
}

.about-text p {
  margin-bottom: 20px;
}

.about-link {
  color: #000;          
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
}

.about-link:hover {
  color: #000;        
}

@media (max-width: 768px) {

  .about-us {
    padding: 50px 15px;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }

  .about-link {
    display: inline-block;
    margin-top: 10px;
  }
}

/* GALLERY SECTION */
.gallery-section {
  background: #f7f3ec;
  padding: 100px 20px;
  text-align: center;
  margin-top: -110px;
}

/* Header */
.gallery-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-header h2 {
  font-family: 'Italiana', serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #111;
}

.view-all {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #111;
}

/* Slider Image */
.gallery-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto 60px;
}

.gallery-slider img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* Arrows */
.gallery-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: #fff;
  border: none;
  font-size: 26px;
  padding: 10px 16px;
  cursor: pointer;
}

.gallery-slider .prev {
  left: 20px;
}

.gallery-slider .next {
  right: 20px;
}

/* Text */
.gallery-text {
  max-width: 700px;
  margin: auto;
}

.gallery-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 20px;
}

.gallery-text p {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.gallery-text p span {
  font-size: 15px;
  color: #111;
  letter-spacing: 1px;
  padding-bottom: 2px;
}

.gallery-tagline {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: #777;
}

.about-quote-section {
  padding: 100px 20px;
  background: #f7f3ec;
  font-family: 'Georgia', serif;
}

.brx-gallery-wrap{
  background:#f6f2ea;
  padding:60px 120px;
  margin-top: -80px;
}

.brx-gallery-inner{
  max-width:1500px;
  margin:auto;
  position:relative;
  min-height:520px;
}

.brx-image-slide{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:6px;             
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .9s ease;
}

.brx-image-slide.active{
  opacity:1;
  transform:translateY(0);
  position:relative;
}

.brx-image-slide img{
  width:100%;
  height:180px;
  object-fit:cover;
  transition:transform .5s ease;
}

.brx-image-slide img:hover{
  transform:scale(1.04);
}

/* ===== MOBILE RESPONSIVE WITH SLIDE ===== */
@media (max-width: 768px){

  .brx-gallery-wrap{
    padding:40px 20px;
  }

  .brx-gallery-inner{
    min-height: auto;
  }

  .brx-image-slide{
    grid-template-columns: repeat(3, 1fr); /* 3 images */
    gap:10px;
  }

  .brx-image-slide img{
    height:150px;
  }
}

.container {
  max-width: 1200px;
  margin: auto;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* Text */
.about-quote {
  flex: 1;
  position: relative;
  text-align: center;
  margin-top: -110px;
}

.about-quote p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  max-width: 520px;
  margin: 0 auto 20px auto;   
  text-align: center;         
  transition: opacity 0.5s ease;
  font-family: 'Courier New', Courier, monospace;
}

.quote-author {
  font-size: 14px;
  letter-spacing: 2px;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .quote-mark {
    position: relative;
    top: 0;
    left: 0;
  }

  .about-quote p {
    font-size: 18px;
  }
}

/* ===== SERVICES / GALLERY SECTION ===== */
.br-gallery {
  background: #f7f3ec;
  padding: 100px 0;
  margin-top: -130px;
}

.br-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* GRID */
.br-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* ITEM */
.br-item {
  text-align: center;
}

/* IMAGE */
.br-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.br-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* subtle luxury hover */
.br-item:hover img {
  transform: scale(1.05);
}

/* TEXT */
.br-text {
  margin-top: 28px;
}

.br-text p {
  font-family: 'Italiana', serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: #8a6b3f;
  margin-bottom: 10px;
}

.br-text span {
  display: block;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.8px;
  color: #6f5a3e;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .br-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .br-img {
    height: 460px;
  }
}

@media (max-width: 576px) {
  .br-grid {
    grid-template-columns: 1fr;
  }

  .br-img {
    height: 420px;
  }

  .br-gallery {
    padding: 70px 0;
  }
}

/* ===== FOOTER (COMPACT & PROFESSIONAL) ===== */
.br-footer {
  background: #0b0b0b;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 0;
  padding-bottom: 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  margin-top: 80px;
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #6f5a3e;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #e2ad68;
  padding-left: 5px;
}

.footer-col.contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}

.footer-col.contact i {
  color: #fff;   
  font-size: 16px;
  min-width: 20px;
}

.brand img {
  width: 160px;
  margin-bottom: 10px;
}

.brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  background: #1a1a1a;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-links a i {
  color: #fff;       
  font-size: 15px;
}

.social-links a:hover {
  background: #6f5a3e;   
}

.social-links a:hover i {
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  background: #050505;
  border-top: 1px solid #4e4d4d;
}

.footer-bottom p {
  font-size: 13px;
  color: #fff;
}

.footer-newsletter h4 {
  margin-top: 80px;
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  position: relative;
}

.footer-newsletter h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: #6f5a3e;
}

.footer-newsletter p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-map {
  margin-top: 30px;
  color: #cfcfcf;
}

.footer-map h4 {
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #fff;
}

.map-container {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #636363de;
}

/* ===== FOOTER MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;                 
    padding: 30px 20px;
    text-align: center;
  }

  /* Heading spacing fix */
  .footer-col h4,
  .footer-newsletter h4,
  .footer-map h4 {
    margin-top: 20px;      
    margin-bottom: 15px;
  }

  .footer-col h4::after,
  .footer-newsletter h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* List spacing */
  .footer-col ul li {
    margin-bottom: 8px;
  }

  /* Contact info center */
  .footer-col.contact p {
    justify-content: center;
    font-size: 13px;
  }

  /* Brand section */
  .brand img {
    margin: 0 auto 12px;
  }

  .brand p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Social icons center */
  .social-links {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .social-links a {
    margin: 5px;
    width: 36px;
    height: 36px;
  }

  /* Map */
  .map-container {
    height: 200px;
    margin-top: 10px;
  }

  /* Footer bottom */
  .footer-bottom p {
    font-size: 12px;
    line-height: 1.5;
  }
}
