/* =========================================
   KORUNDUM LODGE WEBSITE STYLES
   ========================================= */

/* ---------- COLORS & FONTS ---------- */
:root {
  --brown: #4b2e05;
  --gold: #d4af37;
  --black: #111;
  --white: #fff;
  --light: #f9f9f9;
}

body {
  font-family: 'Mulish', sans-serif;
  line-height: 1.6;
  color: var(--black);
  overflow-x: hidden;
}

/* ---------- GLOBAL ELEMENTS ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  color: var(--brown);
  letter-spacing: 0.5px;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: var(--brown);
  text-decoration: none;
}

.text-brown { color: var(--brown); }
.text-gold { color: var(--gold); }
.bg-brown { background-color: var(--brown); }
.btn-gold {
  background-color: var(--gold);
  color: var(--black);
  padding: 10px 25px;
  border-radius: 25px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background-color: var(--brown);
  color: var(--white);
}

.btn-line-primary {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 10px 25px;
  border-radius: 25px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-line-primary:hover {
  background-color: var(--gold);
  color: var(--black);
}

.sec-default {
  padding: 80px 0;
}

.line-circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 5px;
}

/* ---------- HEADER TOP ---------- */
#header-top {
  font-size: 0.9rem;
}
#header-top a {
  color: var(--gold);
}
#header-top i {
  color: var(--gold);
}

/* ---------- LOGO AREA ---------- */
.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
}

/* ---------- NAVIGATION ---------- */
.navigation {
  background: var(--white);
  padding: 15px 0;
  transition: 0.4s;
  border-bottom: 1px solid #eee;
}
.navigation.nav-scrolled {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.navigation .menu-wrap li {
  margin: 0 15px;
  list-style: none;
}

.navigation .menu-wrap li a {
  color: var(--brown);
  font-weight: 700;
  text-transform: uppercase;
}

.navigation.nav-scrolled .menu-wrap li a {
  color: var(--white);
}

.navigation .menu-wrap li a:hover {
  color: var(--gold);
}

/* ---------- HERO SECTION ---------- */
.slider-section {
  position: relative;
}

.hero-slider .item {
  position: relative;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
}

.slider-content h1 {
  font-size: 2.8rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.slider-content p {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* ---------- ROOMS SECTION ---------- */
.post-single {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}
.post-single:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.post-thumbnail img {
  width: 100%;
  border-bottom: 3px solid var(--gold);
}
.ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brown);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
}
.post-content {
  padding: 20px;
}
.post-content h3 {
  color: var(--brown);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* ---------- AMENITIES SECTION ---------- */
.amenities {
  background-color: var(--light);
}
.amenities i {
  color: var(--gold);
}
.amenities p {
  font-weight: 600;
  color: var(--brown);
}

/* ---------- CONTACT SECTION ---------- */
#contact form input,
#contact form textarea {
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 0.95rem;
}
#contact form button {
  background: var(--gold);
  border: none;
  color: var(--black);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 25px;
  transition: 0.3s ease;
}
#contact form button:hover {
  background: var(--brown);
  color: var(--white);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--brown);
  color: var(--white);
}
.footer h5 {
  color: var(--gold);
  font-weight: 700;
}
.footer p, .footer a {
  color: var(--white);
  font-size: 0.95rem;
}
.footer a:hover {
  color: var(--gold);
}
.footer .border-top {
  border-color: rgba(255,255,255,0.2) !important;
}

/* ---------- SCROLLUP BUTTON ---------- */
.scrollup {
  position: fixed;
  bottom: 30px;
  right: 25px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 15px;
  border-radius: 50%;
  display: none;
  transition: 0.3s ease;
  z-index: 99;
}
.scrollup:hover {
  background: var(--brown);
  color: var(--white);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .navigation .menu-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .logo-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .slider-content h1 {
    font-size: 2rem;
  }
  .post-content h3 {
    font-size: 1.1rem;
  }
}
