/* Shared stylesheet for yl8 + hotel mini-site */
:root{
  --bg1:#1a1410;
  --bg2:#2a1f14;
  --bg3:#3a2a1a;
  --text:#f5efe6;
  --muted:rgba(245,239,230,.72);
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.13);
  --link:#c9a96e;
  --linkHover:#e8cfa0;
  --accent:rgba(201,169,110,.18);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

/* Browser default styles reset */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body{ height:100%; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 12% 10%, rgba(180, 120, 60, 0.18) 0%, rgba(42, 31, 20, 0) 55%),
    linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 35%, var(--bg3) 65%, #150f08 100%);
}

/* Link styling */
a{ color: var(--link); text-decoration: none; font-weight: 800; }
a:hover{ color: var(--linkHover); }

.container{
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility: highlight text */
.text-primary{
  color: #c9a96e;
}

/* Basic utilities */
.py-3{
  padding: 30px 0;
}

.py-30{
  padding: 30px 0;
}

/* Navigation bar */
#navbar{
  background: rgba(20,14,8,.82);
  border-bottom: 1px solid var(--border);
  overflow: auto;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}
#navbar::after{ content:""; display:block; clear: both; }

#navbar h1{
  float: left;
  font-size: 20px;
  padding: 14px 0;
  margin: 0;
}
#navbar h1 a{
  color: rgba(255,255,255,.96);
}

#navbar ul{
  list-style: none;
  float: right;
}
#navbar li{
  float: left;
}
#navbar li a{
  display: block;
  color: rgba(255,255,255,.96);
  padding: 14px 16px;
  text-align: center;
}
#navbar li a:hover,
#navbar li a.current{
  background: rgba(201,169,110,.18);
  color: rgba(255,255,255,.98);
}

/* Showcase */
#showcase{
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("img/showcase.jpg") center/cover no-repeat;
  min-height: 420px;
}

.showcase-content{
  color: rgba(255,255,255,.96);
  text-align: center;
  padding-top: 140px;
  padding-bottom: 40px;
}

.showcase-content h1{
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.showcase-content p{
  max-width: 70ch;
  margin: 0 auto 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
}

/* Info section */
.bg-dark{
  background: rgba(0,0,0,.45);
  color: rgba(255,255,255,.94);
}

#info{
  height: 400px;
}
#info .container{
  height: 100%;
}
#info .container::after{ content:""; display:block; clear: both; }

#info .info-content{
  float: right;
  width: 50%;
  height: 100%;
  text-align: center;
  padding: 0 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#info .info-content p{
  margin-top: 12px;
  margin-bottom: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.86);
  max-width: 52ch;
}

#info .info-img{
  float: left;
  width: 50%;
  min-height: 400px;
  background: url("img/photo-1.jpg") center/cover no-repeat;
}

/* About page info */
#about-info::after{ content:""; display:block; clear: both; }
#about-info .info-left{
  float: left;
  width: 50%;
  padding-right: 26px;
}
#about-info .info-right{
  float: right;
  width: 50%;
  text-align: center;
  padding-top: 10px;
}
#about-info .info-right img{
  width: 70%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: block;
  margin: 0 auto;
}

/* Testimonials */
#testimonials{
  background: url("img/test-bg.jpg") center/cover no-repeat;
}
#testimonials .container{
  padding-top: 30px;
  padding-bottom: 30px;
}
#testimonials h2{
  color: rgba(255,255,255,.96);
  text-align: center;
  margin-bottom: 20px;
}

.testimonial{
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
  opacity: 0.9;
  overflow: hidden;
}
.testimonial img{
  float: left;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 14px;
  border: 1px solid rgba(255,255,255,.22);
}
.testimonial p{
  margin: 0;
  color: rgba(255,255,255,.92);
  line-height: 1.7;
}

/* Contact form */
#contact-form .form-group{
  margin-bottom: 14px;
}
#contact-form label{
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}
#contact-form input,
#contact-form textarea{
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.94);
}
#contact-form textarea{
  height: 180px;
}
#contact-form input:focus,
#contact-form textarea:focus{
  outline: none;
  border-color: rgba(201,169,110,.80);
}

.content{
  padding: 22px 0 30px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.panel{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 14px;
}

.grid{
  display:grid;
  gap: 12px;
}
.grid--2{ grid-template-columns: 1fr 1fr; }
@media (max-width: 860px){
  .grid--2{ grid-template-columns: 1fr; }
}

h1{ margin: 0 0 8px; font-size: 24px; }
h2{ margin: 0 0 10px; font-size: 18px; }
h3{ margin: 0 0 8px; font-size: 16px; }
p{ margin: 8px 0; }
.muted{ color: var(--muted); }

.bg-light{
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
}

.bg-primary{
  background: rgba(201,169,110,.16);
  color: rgba(255,255,255,.94);
}

.box{
  float: left;
  width: 33.3%;
  padding: 50px 18px;
  text-align: center;
}
.box i{
  margin-bottom: 10px;
  color: #c9a96e;
}
.box p{
  margin-top: 10px;
  color: rgba(255,255,255,.86);
  line-height: 1.7;
}

#features::after{
  content: "";
  display: block;
  clear: both;
}

/* Clear floats helper (per assignment) */
.clr{
  clear: both;
}

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list strong{ color: var(--text); }

.codeblock{
  margin: 10px 0 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(245,239,230,.90);
  overflow:auto;
}

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
  align-items:stretch;
}
@media (max-width: 860px){
  .hero{ grid-template-columns: 1fr; }
}
.hero__media{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  overflow:hidden;
  background: rgba(255,255,255,.05);
}
.hero__media img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  opacity:.92;
}
.kpis{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.kpi{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.kpi__n{
  font-weight: 950;
  font-size: 22px;
  letter-spacing: .2px;
}
.kpi__t{ color: var(--muted); font-weight: 700; }

.form{
  display:grid;
  gap: 10px;
  margin-top: 10px;
}
.row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.row > *{ flex: 1 1 240px; }
label{ font-weight: 800; }
input, textarea, select{
  width: 100%;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
}
textarea{ resize: vertical; }
.actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn{
  display: inline-block;
  cursor:pointer;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 900;
}
.btn:hover{
  background: rgba(201,169,110,.20);
  border-color: rgba(201,169,110,.35);
}

.btn-light{
  background: #c9a96e;
  border-color: rgba(201,169,110,.60);
  color: #111;
}
.btn-light:hover{
  background: #dfc089;
  border-color: rgba(223,192,137,.75);
  color: #111;
}

.site-footer{
  border-top: 1px solid var(--border);
  background: rgba(20,14,8,.55);
  padding: 16px 0 22px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  align-items:center;
}