/* =============================================
   ULTIMATE HOTEL GHANA — Global Styles
   Forest Green & Gold Luxury Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --green-dark:   #0f2218;
  --green-mid:    #1a3a2a;
  --green-light:  #2a5a40;
  --green-muted:  #4a7a5a;
  --gold:         #d4af37;
  --gold-light:   #e8cc6a;
  --gold-pale:    #f5e9b8;
  --cream:        #f8f4ec;
  --cream-dark:   #ede8dc;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-mid:     #4a4a4a;
  --text-light:   #7a7a7a;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Lato', Arial, sans-serif;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 24px rgba(0,0,0,0.14);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.20);
  --radius:       4px;
  --transition:   0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--green-dark); }

.btn-green {
  background: var(--green-mid);
  color: var(--gold);
}
.btn-green:hover { background: var(--green-dark); }

/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 34, 24, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.nav-phone svg { width: 16px; height: 16px; fill: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,34,24,0.78) 0%, rgba(15,34,24,0.45) 60%, rgba(0,0,0,0.25) 100%);
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 800px;
}

.hero-content .section-label { color: var(--gold-light); font-size: 0.8rem; }

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::before {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── BOOKING BAR ── */
.booking-bar {
  background: var(--green-dark);
  padding: 1.5rem 5%;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--gold);
}

.booking-bar label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  min-width: 140px;
}

.booking-bar label span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.booking-bar input,
.booking-bar select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--cream);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}

.booking-bar input:focus,
.booking-bar select:focus { border-color: var(--gold); }

.booking-bar input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.5); }

/* ── SECTION WRAPPER ── */
.section {
  padding: 5rem 5%;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}

.section-header.centered .gold-divider {
  margin: 1rem auto 1.5rem;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 { color: var(--green-dark); margin-bottom: 0.5rem; }
.card-body p  { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1.2rem; }

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.card-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green-mid);
}

.card-price span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0.5rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,34,24,0.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── DARK SECTION ── */
.section-dark {
  background: var(--green-dark);
  color: var(--cream);
}

.section-dark .section-title { color: var(--gold); }
.section-dark .section-subtitle { color: rgba(248,244,236,0.8); }
.section-dark .gold-divider { background: var(--gold); }

/* ── CREAM SECTION ── */
.section-cream { background: var(--cream); }

/* ── TWO COLUMN LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  position: relative;
}

.two-col-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.two-col-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

/* ── AMENITIES LIST ── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.amenity-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.amenity-icon {
  width: 64px; height: 64px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-icon svg { width: 28px; height: 28px; stroke: var(--green-dark); fill: none; stroke-width: 1.8; }
.amenity-item h4 { color: var(--green-dark); }
.amenity-item p  { color: var(--text-mid); font-size: 0.9rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 52vh;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 3rem 5%;
  margin-top: 72px;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,34,24,0.88) 0%, rgba(15,34,24,0.3) 60%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-hero-content h1 { color: var(--white); }
.page-hero-content .section-label { color: var(--gold); }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold-pale);
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author strong { color: var(--green-dark); display: block; }
.testimonial-author span  { color: var(--text-light); font-size: 0.85rem; }

.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.25rem; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { color: var(--green-dark); margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--green-dark); fill: none; stroke-width: 1.8; }
.contact-detail h4 { color: var(--green-dark); margin-bottom: 0.2rem; }
.contact-detail p  { color: var(--text-mid); font-size: 0.95rem; }

.phone-highlight {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-mid);
  font-family: var(--font-serif);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 { color: var(--green-dark); margin-bottom: 1.5rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--cream-dark);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  background: var(--cream);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: var(--white); }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ── */
.footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 4rem 5% 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 54px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(1.2);
}

.footer-brand p {
  color: rgba(248,244,236,0.7);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.footer-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul li a {
  color: rgba(248,244,236,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(248,244,236,0.5);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(212,175,55,0.3);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  font-family: var(--font-serif);
  line-height: 1;
}

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(212,175,55,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-phone { font-size: 0.8rem; }
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide  { grid-column: span 2; }
  .gallery-item.tall  { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .booking-bar { flex-direction: column; }
  .booking-bar label { min-width: 100%; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide  { grid-column: span 1; }
  .footer-grid  { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
