:root {
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --color-dark: #1a1a1a;
  --color-light: #fdf1dc;
  --color-accent: #c54d2e;
  --color-white: #fff;
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --border-radius: 12px;
}

/* ===== Body ===== */
body {
  font-family: var(--font-secondary);
  color: var(--color-dark);
  background-color: var(--color-white);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* ===== Navbar ===== */
.navbar {
  padding: 0;
  background: var(--color-white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.navbar-nav .nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  margin-left: 15px;
  color: var(--color-dark);
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
  color: var(--color-accent);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  background: transparent; /* start transparent */
}

/* Style when scrolling */
header.scrolled {
  background: #fff; /* solid background */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0; /* make it smaller */
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, #5A5A5A, #FF5733);
  position: relative;
  padding: 50px 0;
  text-align: center;
  color: var(--color-white);
}
.hero-overlay {
    width: 60%;
    margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 64px;
  margin-bottom: 20px;
}
.hero p {
  font-family: var(--font-secondary);
  font-size: 16px;
}

/* ===== Sections ===== */
.section-dark {
  background: url("images/hotel.jpg") center/cover no-repeat;
  color: var(--color-white);
  padding: 60px 0;
  position: relative;
  z-index: 1; /* ensure section content is above other stuff */
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
  background: rgba(0,0,0,0.6); /* dark overlay */
  z-index: -1; /* behind the content */
}

h3.second-block {
	color: rgb(255, 255, 255);
	font-size: 46px;
    line-height: 1.3;
}

.section-two-block {
	    margin: 0 auto;
    width: 60%;
}

.info-box.transparent {
  background-color: rgba(204, 202, 200, 0.7); /* semi-transparent #cccac8 */
  color: #000; /* text color black */
  box-shadow: none; /* remove shadow if needed */
  border-radius: 12px; /* keep rounded corners */
  padding: 30px;
}

.info-box p {
    text-align: left;
}

.section-light {
  background: var(--color-light);
  padding: 60px 0;
}

/* ===== Info Box ===== */
.info-box {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.info-box h5 {
  font-family: var(--font-primary);
  font-weight: 600;
  margin-top: 20px;
  text-align: left;
}

/* ===== Reviews ===== */
.reviews h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 40px;
}
.reviews h5 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.3;
}
.reviews p {
  font-size: 16px;
   line-height: 1.3;
  color: #000;
}



/* ===== Images ===== */
img {
  /*border-radius: var(--border-radius); */
  max-width: 100%;
  height: auto;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
img:hover {
  transform: scale(1.03);
}

.head-logo {

border-radius: none;
 width: 50%;
 box-shadow: none;
}


/* ===== Buttons ===== */
.btn-light {
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  border: none;
  transition: background 0.3s;
}
.btn-light:hover {
  background: #a03a20;
}

/* ===== Forms ===== */
form input, form textarea {
  border-radius: var(--border-radius);
  border: 1px solid #ccc;
  padding: 12px;
  font-family: var(--font-secondary);
}
form textarea {
  resize: none;
}

/* ===== Gallery ===== */
.gallery img {
  border-radius: var(--border-radius);
  object-fit: cover;
  height: 250px;
}

/* ===== Footer ===== */
footer {
  background: #222;
  color: #ccc;
  padding: 40px 0;
}
footer a {
  color: var(--color-accent);
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: var(--color-white);
}
footer input {
  border-radius: var(--border-radius);
  border: 1px solid #555;
  padding: 8px;
}
.dropdown-item img,
.nav-link img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

#formMessage {
  transition: all 0.3s ease;
  font-size: 1rem;
}

#formMessage.text-success {
  color: #198754;
}

#formMessage.text-danger {
  color: #dc3545;
}