
html{scroll-behavior:smooth;}
*{
box-sizing:border-box;
}
body{
font-family:'Cinzel',serif;
background:#F6F3EE;
color:#333;
overflow-x:hidden;
}
section{
scroll-margin-top:150px;
}
.brand-logo{
font-family:'Cinzel',serif;
font-size:36px;
letter-spacing:3px;
color:#ffffff;
}
img{
max-width:100%;
height:auto;
display:block;
}
.row{
margin-left:0;
margin-right:0;
}
.brand-subtitle{
font-family:'Poppins',sans-serif;
letter-spacing:6px;
color:#C89B3C;
font-size:14px;
}

h1,h2,h3,h4{
font-family:'Cinzel',serif;
}
p{
    line-height: 2.0rem;
}

section{padding:90px 0;}

:root{
--gold:#C89B3C;
--dark:#0B2D24;
--bg:#F6F3EE;
}

/* NAVBAR */

.navbar{background:#000000;}

.navbar-brand{
font-family:'Playfair Display';
font-size:26px;
color:var(--gold) !important;
}

.nav-link{
color:#fff !important;
margin-right:15px;
}

.nav-link:hover{color:var(--gold) !important;}

.btn-gold{
background:var(--gold);
color:#fff;
border:none;
padding:10px 25px;
}

.btn-gold:hover{
background:#a87c2c;
color:#fff;
}

/* HERO */

.hero{
height:100vh;
background:url('../img/hero-banner.jpeg') center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}

.hero::before{
content:'';
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
}

.hero-content{
position:relative;
z-index:2;
}

.hero h1{font-size:65px;}

.hero p{
font-size:18px;
margin-bottom:30px;
}

/* ABOUT */

.about-img{
border-radius:10px;
}

/* SERVICES */

.service-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.4s;
height:100%;
}

.service-card img{
height:220px;
width:100%;
object-fit:cover;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.service-content{padding:25px;}

.service-content h5{color:var(--dark);}

/* GALLERY */

.gallery img{
width:100%;
height:auto;
max-height:260px;
object-fit:cover;
border-radius:8px;
}

.gallery img:hover{
transform:scale(1.08);
}


/* CONTACT */

.contact-icon{
width:60px;
height:60px;
background:var(--gold);
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin-right:20px;
color:#fff;
font-size:20px;
padding: 35px;
}

.spa-input{
border-radius:40px;
padding:14px 20px;
border:1px solid #ddd;
}

textarea.spa-input{
border-radius:20px;
}

.submit-btn{
background:var(--gold);
color:#fff;
border:none;
padding:14px 45px;
border-radius:40px;
}

.submit-btn:hover{
background:var(--dark);
}

/* MAP */

.map-section iframe{
width:100%;
height:450px;
border:0;
max-width:100%;
}

/* FOOTER */

footer{
background:#000000;
color:#fff;
padding:70px 0 40px;
text-align:center;
}

.footer-logo{
font-family:'Playfair Display';
font-size:34px;
color:var(--gold);
}

.footer-desc{
max-width:550px;
margin:auto;
margin-top:10px;
margin-bottom:25px;
}

.footer-icons i{
color:var(--gold);
font-size:18px;
margin:0 10px;
}

.footer-contact{
margin:10px 0;
}

.footer-address{
margin-top:10px;
color:#ccc;
}

.footer-bottom{
margin-top:30px;
border-top:1px solid rgba(255,255,255,0.2);
padding-top:20px;
font-size:14px;
}

/* FLOAT BUTTONS */

/*.scroll-top{*/
/*position:fixed;*/
/*bottom:90px;*/
/*right:20px;*/
/*background:var(--gold);*/
/*color:#fff;*/
/*padding:10px 14px;*/
/*border-radius:50%;*/
/*display:none;*/
/*}*/
.floating-buttons {
          position: fixed;
          right: 0px;
          bottom: 150px;
          display: flex;
          flex-direction: column;
          align-items: center;
          background-color: #CC9933!important; /* Match purple/maroon from image */
          padding: 15px 10px;
          border-radius: 15px 0px 0px 15px;
          z-index: 9999;
          box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .floating-buttons-left {
          position: fixed;
          left: 0px;
          bottom: 150px;
          display: flex;
          flex-direction: column;
          align-items: center;
          background-color: #CC9933!important; /* Match purple/maroon from image */
          padding: 15px 10px;
          border-radius: 0px 15px 15px 0px;
          z-index: 9999;
          box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .icon-btn {
          color: #fff;
          font-size: 24px;
          margin: 10px 0;
          text-decoration: none;
          transition: transform 0.3s ease;
        }
        
        .icon-btn:hover {
          transform: scale(1.2);
        }
        
        .divider {
          width: 30px;
          height: 2px;
          background: rgba(255, 255, 255, 0.6);
          margin: 5px 0;
          border-radius: 2px;
        }
#testimonials{
background:#F6F3EE;
}

.testimonial-box{
/*max-width:700px;*/
margin:auto;
text-align:center;
padding:40px;
background:#fff;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-box p{
color:#555;
line-height:1.7;
}

.testimonial-box h5{
font-family:'Playfair Display',serif;
color:#0B2D24;
margin-top:15px;
}

.stars i{
color:#C89B3C;
}

.carousel-indicators{
margin-top:30px;
position:relative;
}

/* .carousel-indicators button{
width:5px;
height:5px;
border-radius:50%;
background:#C89B3C;
}

.carousel-indicators .active{
background:#0B2D24;
} */