/* ============================================================
   PARTHAS SUITES — PREMIUM LIGHT THEME (Palatin Inspired)
   Domain: parthassuites.com
   Palette: Cream backgrounds + Gold/Copper accents + Dark navbar
============================================================ */

/* ─── CSS VARIABLES ─── */
:root {
  --gold:          #a62237;
  --gold-dark:     #851b2c;
  --gold-light:    #dda5ac;
  --cream:         #fffdfc;
  --cream-2:       #fbf4f2;
  --cream-3:       #f3e3e2;
  --dark:          #5c1a24;
  --dark-2:        #4a141d;
  --text-dark:     #2a1115;
  --text-body:     #5a4a4c;
  --text-muted:    #9a8d8f;
  --white:         #ffffff;
  --lime:          #a62237;
  --text-light:    #ffffff;
  --accent:        #d1b292;
  --accent-dark:   #c2a079;
  --border:        rgba(166,34,55,0.24);
  --border-light:  rgba(166,34,55,0.14);
  --shadow:        0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.12);
  --radius:        12px;
  --transition:    all 0.3s ease;
}

/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: var(--transition); }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  line-height: 1.25;
}
ul { list-style: none; padding: 0; margin: 0; }

/* ─── NAVBAR ─── */
.navbar {
  background: var(--dark-2) !important;
  padding: 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar .container { padding-top: 14px; padding-bottom: 14px; }
.navbar-brand { padding: 0; }
.brand-logo-box { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 2px;
}
.brand-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}
.nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-link:hover,
.nav-link.active { color: var(--gold-light) !important; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border-color: rgba(255,255,255,0.2); }
.navbar-toggler-icon { filter: invert(1); }

/* ─── BUTTONS ─── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--gold);
  box-shadow: 0 4px 14px rgba(166,34,55,0.18);
  padding: 14px 28px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Mulish', sans-serif;
}
.btn-primary-custom:hover {
  background: var(--gold);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(166,34,55,0.35);
}
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  padding: 13px 26px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1.5px solid var(--accent);
  transition: var(--transition);
  cursor: pointer;
  font-family: 'Mulish', sans-serif;
}
.btn-outline-custom:hover {
  background: var(--accent);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--dark);
  background-image: linear-gradient(135deg, #5c1a24 0%, #3e0f18 100%);
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/suite-hall-1.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; }

/* ─── SECTIONS ─── */
.section { padding: 90px 0; }
.section-alt { background: var(--cream-2); }

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1.5px;
  background: var(--gold);
  transform: translateY(-50%);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.2;
}
.section-title span { color: var(--gold); }
.section-desc {
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.85;
  font-size: 0.95rem;
}

/* ─── ELEMENTS STRIP ─── */
.elements-strip {
  background: var(--dark);
  padding: 30px 0;
  border-top: 1px solid rgba(166,34,55,0.2);
  border-bottom: 1px solid rgba(166,34,55,0.2);
}
.element-item { padding: 16px 10px; }
.element-symbol { font-size: 1.8rem; margin-bottom: 6px; }
.element-name {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 4px;
}
.element-desc {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── ROOM CARDS ─── */
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-img { position: relative; overflow: hidden; height: 280px; }
.room-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 0.66rem;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.room-card-body { padding: 28px; }
.room-card-title {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.room-card-desc {
  color: var(--text-body);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.room-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-body);
}
.room-features li i { color: var(--gold); font-size: 0.7rem; }

/* ─── AMENITY CARDS ─── */
.amenity-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  height: 100%;
}
.amenity-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(166,34,55,0.15);
}
.amenity-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(166,34,55,0.1);
  border: 1.5px solid rgba(166,34,55,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.amenity-icon i { color: var(--gold); font-size: 1.3rem; }
.amenity-card h5 {
  font-size: 0.88rem;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.amenity-card p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* ─── ABOUT IMAGE ─── */
.about-img-wrap { position: relative; padding: 0 0 40px 40px; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 180px; height: 130px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 30px; right: -10px;
  background: var(--gold);
  color: #fff;
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(166,34,55,0.4);
}
.about-badge-float .num {
  font-size: 1.6rem; font-weight: 700;
  font-family: 'Cormorant Garamond', serif; line-height: 1;
}
.about-badge-float .lbl { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 1px; }

/* ─── WHY ITEMS ─── */
.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(166,34,55,0.12);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(166,34,55,0.1);
  border: 1px solid rgba(166,34,55,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon i { color: var(--gold); font-size: 1rem; }
.why-item h5 {
  font-size: 0.88rem;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.why-item p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ─── BOOKING WIDGET ─── */
.booking-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--gold);
}
.booking-widget h3 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 6px; }
.booking-widget p { color: var(--text-body); font-size: 0.82rem; margin-bottom: 24px; }
.form-label-custom {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.form-control-custom {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-family: 'Mulish', sans-serif;
  transition: var(--transition);
  outline: none;
}
.form-control-custom:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(166,34,55,0.1);
  background: #fff;
}

/* ─── CONTACT CARDS ─── */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  height: 100%;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(166,34,55,0.12);
}
.contact-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(166,34,55,0.1);
  border: 1px solid rgba(166,34,55,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-card-icon i { color: var(--gold); font-size: 1.3rem; }
.contact-card h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
.contact-card p { font-size: 0.84rem; color: var(--text-body); line-height: 1.7; margin-bottom: 12px; }
.contact-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(166,34,55,0.3);
  padding-bottom: 2px;
}
.contact-card-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ─── MAP ─── */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

/* ─── POLICY CARDS ─── */
.policy-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.policy-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.policy-card .icon { font-size: 2rem; margin-bottom: 10px; }
.policy-card h5 {
  color: var(--gold);
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.policy-card p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* ─── HERO BADGE / INNER ELEMENTS ─── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); border: 1px solid rgba(166,34,55,0.35);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 18px;
}
.hero-badge span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}
.hero-tagline { color: var(--gold-light); font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.hero-divider { width: 48px; height: 2px; background: var(--gold); margin: 16px 0; }
.hero-desc { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.85; margin-bottom: 24px; max-width: 480px; }
.hero-stats { display: flex; gap: 28px; margin: 24px 0; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.hero-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark-2);
  padding: 70px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.84rem; line-height: 1.8; max-width: 320px; }
.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { font-size: 0.55rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; width: 14px; }
.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold-light); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ─── BREADCRUMB ─── */
.breadcrumb { background: transparent; margin: 0; padding: 0; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ─── ANIMATIONS ─── */
.animate-up { animation: animUp 0.7s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes animUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── GALLERY THUMBS ─── */
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs img {
  width: 70px; height: 52px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.65;
}
.gallery-thumbs img:hover,
.gallery-thumbs img.active {
  border-color: var(--gold);
  opacity: 1;
}

/* ─── POLICY SECTION CONTENT ─── */
.policy-section h3 { color: var(--text-dark); margin-bottom: 14px; }
.policy-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.65;
}
.policy-section ul li i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.policy-highlight {
  background: rgba(166,34,55,0.08);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-body);
}

/* ─── QUICK REFERENCE TABLE ─── */
.quick-ref-table { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--border-light); }
.quick-ref-table table { width: 100%; border-collapse: collapse; }
.quick-ref-table th {
  background: var(--gold);
  color: #fff;
  padding: 12px 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
}
.quick-ref-table td {
  padding: 10px 16px;
  font-size: 0.84rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}
.quick-ref-table tr:last-child td { border-bottom: none; }
.quick-ref-table td:first-child { color: var(--text-dark); font-weight: 600; }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .section { padding: 60px 0; }
  .about-img-wrap { padding: 0 0 30px 20px; margin-bottom: 40px; }
  .hero-stats { gap: 18px; }
}
@media (max-width: 767px) {
  .section { padding: 48px 0; }
  .page-hero { padding: 100px 0 50px; }
  .room-features { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
  .brand-name { font-size: 1.05rem; }
  .about-img-accent { display: none; }
  .about-badge-float { right: 0; }
  .booking-widget { padding: 24px 20px; }
}

/* ─── BRAND LOGO IMAGES (added with logo integration) ─── */
.brand-logo-img  { height: 66px; width: auto; display: block; }
.footer-logo-img { height: 86px; width: auto; display: block; }
@media (max-width: 991px) {
  .brand-logo-img  { height: 54px; }
}
@media (max-width: 575px) {
  .brand-logo-img  { height: 46px; }
  .footer-logo-img { height: 70px; }
}

/* ─── RESPONSIVE POLISH (full responsive pass) ─── */
@media (max-width: 576px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.3rem; }
  .why-item { padding: 16px; }
}
