/* ===== NAVBAR ===== */
.navbar{
    position:absolute;
    width:100%;
    z-index:1000;
}

.navbar-brand img{
    width:70px;
}

.nav-link{
    color:#fff !important;
    margin:0 10px;
}

.dropdown-menu{
    background:#3b0d0d;
}

.dropdown-item{
    color:#fff;
}

.quote-btn{
    border:1px solid #d4af37;
    color:#d4af37;
    padding:8px 18px;
    border-radius:5px;
    transition:.3s;
}

.quote-btn:hover{
    background:#d4af37;
    color:#000;
}

/* ===== HERO ===== */
.hero{
    position:relative;
    height:100vh;
}

/* SLIDER */
.carousel-item{
    height:100vh;
    background-size:cover;
    background-position:center;
}

/* OVERLAY 
.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(30,0,0,0.7);
    z-index:1;
}*/

/* FIXED CONTENT */
.hero-content{
    position:absolute;
    top:80%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    color:#fff;
    z-index:2;
}

.hero-logo{
    width:180px;
    margin-bottom:15px;
}

.hero-title{
    font-size:70px;
    color:#d4af37;
    font-weight:700;
}

.hero-sub{
    font-size:22px;
    margin-bottom:15px;
}

.hero-text{
    max-width:600px;
    margin:auto;
}

/* BUTTONS */
.btn-gold{
    background:#d4af37;
    color:#000;
    padding:12px 25px;
    margin:10px;
}

.btn-outline-light{
    padding:12px 25px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero-title{font-size:40px;}
    .hero-logo{width:120px;}
}

/***section 2*/
.about-section{
    padding:90px 0;
    background:#f8f4ef;
    font-family:'Poppins', sans-serif;
}

.about-left{
    padding-right:40px;
}

.about-tag{
    color:#b58b42;
    font-size:14px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:10px;
}

.about-tag::before,
.about-tag::after{
    content:"";
    width:30px;
    height:2px;
    background:#b58b42;
}

.about-title{
    font-family:'Cinzel', serif;
    font-size:52px;
    line-height:1.15;
    color:#3d1f17;
    font-weight:700;
    margin-bottom:25px;
    text-transform:uppercase;
}

.about-line{
    width:60px;
    height:3px;
    background:#b58b42;
    margin-bottom:28px;
}

.about-text{
    color:#5f514b;
    font-size:17px;
    line-height:1.9;
    margin-bottom:40px;
    max-width:560px;
}

.features-wrap{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.feature-box{
    text-align:center;
}

.feature-icon{
    width:75px;
    height:75px;
    border:1px solid rgba(181,139,66,0.4);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
    font-size:32px;
    color:#b58b42;
    transition:0.4s ease;
    background:#fff;
}

.feature-box:hover .feature-icon{
    background:#b58b42;
    color:#fff;
    transform:translateY(-5px);
}

.feature-title{
    font-size:18px;
    font-weight:600;
    color:#3d1f17;
    line-height:1.5;
}

.about-btn{
    display:inline-block;
    padding:16px 34px;
    background:#4a120f;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    border-radius:6px;
    transition:0.4s ease;
    border:2px solid #b58b42;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.about-btn:hover{
    background:#b58b42;
    color:#fff;
}

.about-image-box{
    position:relative;
}

.about-image{
    width:100%;
    border:4px solid #d6b57a;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

@media(max-width:991px){

    .about-left{
        padding-right:0;
        margin-bottom:50px;
    }

    .about-title{
        font-size:40px;
    }

    .features-wrap{
        gap:25px;
    }
}

@media(max-width:576px){

    .about-section{
        padding:70px 0;
    }

    .about-title{
        font-size:30px;
    }

    .about-text{
        font-size:15px;
    }

    .features-wrap{
        justify-content:center;
    }
}
/**Section 3**/
.services-section{
    position:relative;
    padding:80px 0;
    background:
      linear-gradient(rgba(35,0,0,0.88), rgba(35,0,0,0.88)),
      url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=1920&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    overflow:hidden;
    font-family:'Poppins', sans-serif;
  }

  .services-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
    opacity:0.18;
  }

  .section-subtitle{
    position:relative;
    color:#d4a63a;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
    font-weight:600;
  }

  .section-title{
    position:relative;
    color:#fff;
    font-family:'Cinzel', serif;
    font-size:42px;
    font-weight:700;
    margin-bottom:50px;
    text-transform:uppercase;
  }

  .service-card{
    position:relative;
    background:rgba(70, 10, 10, 0.45);
    border:1px solid rgba(212,166,58,0.45);
    border-radius:10px;
    padding:40px 25px;
    text-align:center;
    height:100%;
    transition:0.4s ease;
    overflow:hidden;
    backdrop-filter:blur(4px);
  }

  .service-card:hover{
    transform:translateY(-10px);
    border-color:#d4a63a;
    box-shadow:0 10px 25px rgba(212,166,58,0.25);
  }

  .service-icon{
    width:80px;
    height:80px;
    border:1px solid rgba(212,166,58,0.5);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    color:#d4a63a;
    font-size:34px;
    transition:0.4s;
  }

  .service-card:hover .service-icon{
    background:#d4a63a;
    color:#2b0000;
    transform:rotateY(360deg);
  }

  .service-title{
    color:#fff;
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
  }

  .service-text{
    color:#d6cfcf;
    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;
  }

  .read-more{
    color:#d4a63a;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    transition:0.3s;
    display:inline-block;
  }

  .read-more:hover{
    color:#fff;
    letter-spacing:2px;
  }

  @media(max-width:991px){
    .section-title{
      font-size:34px;
    }

    .service-card{
      margin-bottom:25px;
    }
  }

  @media(max-width:576px){
    .services-section{
      padding:60px 0;
    }

    .section-title{
      font-size:26px;
    }

    .service-card{
      padding:30px 20px;
    }
  }
  
/**section 4**/
.services-section{
    position:relative;
    padding:80px 0;
    background:
      linear-gradient(rgba(35,0,0,0.88), rgba(35,0,0,0.88)),
      url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=1920&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    overflow:hidden;
    font-family:'Poppins', sans-serif;
  }

  .services-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
    opacity:0.18;
  }

  .section-subtitle{
    position:relative;
    color:#d4a63a;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
    font-weight:600;
  }

  .section-title{
    position:relative;
    color:#fff;
    font-family:'Cinzel', serif;
    font-size:42px;
    font-weight:700;
    margin-bottom:50px;
    text-transform:uppercase;
  }

  .service-card{
    position:relative;
    background:rgba(70, 10, 10, 0.45);
    border:1px solid rgba(212,166,58,0.45);
    border-radius:10px;
    padding:40px 25px;
    text-align:center;
    height:100%;
    transition:0.4s ease;
    overflow:hidden;
    backdrop-filter:blur(4px);
  }

  .service-card:hover{
    transform:translateY(-10px);
    border-color:#d4a63a;
    box-shadow:0 10px 25px rgba(212,166,58,0.25);
  }

  .service-icon{
    width:80px;
    height:80px;
    border:1px solid rgba(212,166,58,0.5);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    color:#d4a63a;
    font-size:34px;
    transition:0.4s;
  }

  .service-card:hover .service-icon{
    background:#d4a63a;
    color:#2b0000;
    transform:rotateY(360deg);
  }

  .service-title{
    color:#fff;
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
  }

  .service-text{
    color:#d6cfcf;
    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;
  }

  .read-more{
    color:#d4a63a;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    transition:0.3s;
    display:inline-block;
  }

  .read-more:hover{
    color:#fff;
    letter-spacing:2px;
  }

  @media(max-width:991px){
    .section-title{
      font-size:34px;
    }

    .service-card{
      margin-bottom:25px;
    }
  }

  @media(max-width:576px){
    .services-section{
      padding:60px 0;
    }

    .section-title{
      font-size:26px;
    }

    .service-card{
      padding:30px 20px;
    }
  }
  
/**section 5**/
.menu-section {
  background: #f6f2ee;
  font-family: 'Poppins', sans-serif;
}

/* Subtitle */
.menu-sub {
  color: #c9a45c;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Title */
.menu-title {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  font-weight: 700;
  color: #3b1d14;
  margin-top: 10px;
}

/* Cards */
.menu-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

.menu-card:hover img {
  transform: scale(1.08);
}

/* Label */
.menu-label {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #6b1d1d;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Button */
.menu-btn {
  background: #6b1d1d;
  color: #fff;
  padding: 12px 35px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  transition: 0.3s;
}

.menu-btn i {
  margin-right: 8px;
}

.menu-btn:hover {
  background: #a52a2a;
}
/**Section 6**/

.gallery-section {
  background: #4a0d0d;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Subtitle */
.gallery-sub {
  color: #d4a63a;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

/* Title */
.gallery-title {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}

/* Image box */
.gallery-box {
  border: 2px solid #d4a63a;
  padding: 5px;
}

.gallery-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-box img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* Button */
.gallery-btn {
  background: transparent;
  border: 1px solid #d4a63a;
  color: #fff;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s;
}

.gallery-btn i {
  margin-right: 8px;
}

.gallery-btn:hover {
  background: #d4a63a;
  color: #000;
}
/**Section 7**/
.choose-section {
  background: #f8f4ef;
  font-family: 'Poppins', sans-serif;
}

/* LEFT */
.choose-sub {
  color: #c9a45c;
  letter-spacing: 2px;
  font-size: 14px;
}

.choose-title {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  font-weight: 700;
  color: #3b1d14;
  margin-top: 10px;
}

.choose-box {
  display: flex;
  gap: 15px;
}

.choose-box .icon {
   width: 85px;
    height: 43px;
    border: 2px solid #c9a45c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a45c;
    font-size: 23px;
}

.choose-box h5 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.choose-box p {
  font-size: 13px;
  margin: 0;
  color: #555;
}

/* RIGHT FORM */
.booking-form {
  background: #5a0e0e;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
}

.form-title {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
}

.booking-form .form-control {
  background: transparent;
  border: 1px solid #a56a2a;
  color: #fff;
}

.booking-form .form-control::placeholder {
  color: #ddd;
}

.booking-form select option {
  color: #000;
}

/* BUTTON */
.form-btn {
  background: #d4a63a;
  color: #000;
  width: 100%;
  padding: 12px;
  font-weight: 600;
  border-radius: 5px;
}

.form-btn:hover {
  background: #f1c25c;
}

/**Section 8**/
.footer-section {
  background: #4a0d0d;
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-logo {
  width: 120px;
}

.footer-text {
  font-size: 14px;
  color: #ddd;
}

/* Titles */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #d4a63a;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-links li:hover {
  color: #d4a63a;
}

/* Icons */
.social-icons i {
  background: #d4a63a;
  color: #4a0d0d;
  padding: 10px;
  margin-right: 8px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}

/* Newsletter */
.newsletter-box {
  display: flex;
  border: 1px solid #d4a63a;
}

.newsletter-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

.newsletter-box button {
  background: #d4a63a;
  border: none;
  padding: 10px 15px;
  color: #000;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-bottom span {
  cursor: pointer;
}

.footer-bottom span:hover {
  color: #d4a63a;
}


/**Contact Page**/
body{
    font-family:'Poppins', sans-serif;
}

/* NAVBAR */
.navbar{
    position:absolute;
    width:100%;
    z-index:1000;
}

.quote-btn{
    border:1px solid gold;
    color:gold;
}

/* HERO */
.hero{
    height:60vh;
    background:url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3') center/cover;
    position:relative;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

.hero-content-menu{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
}

.hero-content-menu h1{
    font-family:'Cinzel';
    font-size:60px;
    color:gold;
}

/* CONTACT */
.contact-section{
    background:#f8f4ef;
}

.form-box{
    background:#4a0d0d;
    padding:30px;
    border-radius:10px;
    color:#fff;
}

.form-control{
    background:transparent;
    color:#fff;
    border:1px solid gold;
}

.submit-btn{
    background:gold;
    color:#000;
}

/* FOOTER */
.footer{
    background:#4a0d0d;
    color:#fff;
    padding:20px;
}

/**123**/
body{
margin:0;
font-family:'Poppins', sans-serif;
}

/* MAIN WRAPPER */
.contact-wrapper{
background:#f6f2ee;
padding:80px 0;
}

/* LEFT SIDE */
.contact-left{
padding:40px;
}

.contact-left h6{
color:#c9a45c;
letter-spacing:2px;
font-size:13px;
}

.contact-left h2{
font-size:30px;
font-weight:700;
margin:10px 0;
color:#3b1d14;
}

.contact-left p{
font-size:14px;
color:#555;
margin-bottom:20px;
}

.contact-info{
display:flex;
gap:10px;
margin-bottom:12px;
font-size:14px;
}

.contact-info i{
color:#6b1d1d;
}

.social i{
background:#6b1d1d;
color:#fff;
padding:10px;
margin-right:8px;
border-radius:50%;
}

/* FORM CARD */
.form-card{
background:#5a0e0e;
padding:30px;
border:2px solid #d4a63a;
border-radius:10px;
color:#fff;
position:relative;
}

.form-card h3{
text-align:center;
margin-bottom:25px;
color:#d4a63a;
}

/* INPUT */
.form-card input,
.form-card select,
.form-card textarea{
width:100%;
padding:12px;
background:transparent;
border:1px solid #d4a63a;
color:#fff;
outline:none;
}

.form-card textarea{
height:90px;
}

/* BUTTON */
.btn-submit{
background:#d4a63a;
border:none;
width:100%;
padding:14px;
margin-top:20px;
font-weight:600;
}

/* MAP */
.map-wrapper{
position:relative;
}

.map-wrapper iframe{
width:100%;
height:300px;
border:0;
}

.location-box{
position:absolute;
bottom:20px;
left:20px;
background:#5a0e0e;
padding:20px;
border:2px solid #d4a63a;
color:#fff;
}

/********************************************************
*****************************************************************
************************************************************************/
.menu-section{
  padding:80px 0;
  background:#f5f5f5;
  font-family:'Poppins', sans-serif;
}

.menu-img img{
  width:100%;
  border-radius:6px;
}

.menu-title{
  font-size:36px;
  font-weight:700;
  color:#7a1c1c;
  margin-bottom:30px;
  text-transform:uppercase;
}

/* ITEM BOX */
.menu-item{
  display:flex;
  gap:20px;
  padding:20px;
  border:1px dashed #ddd;
  margin-bottom:20px;
  background:#fff;
  align-items:flex-start;
  transition:0.3s;
}

.menu-item:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

/* ICON */
.menu-item .icon{
  width:70px;
  height:70px;
  background:#f1f1f1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#7a1c1c;
}

/* CONTENT */
.menu-item .content{
  flex:1;
}

/* TOP ROW */
.menu-item .top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:5px;
}

.menu-item h4{
  font-size:18px;
  font-weight:700;
  margin:0;
  color:#7a1c1c;
}

.menu-item span{
  font-weight:700;
  color:#7a1c1c;
}

.menu-item p{
  margin:0;
  font-size:14px;
  color:#666;
}
/********************************************************** 
section 2
********************************************************************/
/* OPTIONAL spacing tweak for reverse layout*/
.menu-section .row{
  margin-bottom:40px;
}