/* ==========================================
   ATITHI HOSPITALITY - COMING SOON STYLING
   Theme: Luxury Emerald Green & Royal Gold
   Fully Responsive (Mobile, Tablet, Desktop)
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&display=swap');

:root {
  --primary-deep: #061810;
  --primary-green: #0f3424;
  --primary-forest: #174833;
  --accent-gold: #d4af37;
  --accent-gold-light: #f3e5ab;
  --accent-gold-dark: #aa8620;
  --text-dark: #192720;
  --text-muted: #8ea398;
  --text-light: #f7faf8;
  --glass-bg: rgba(15, 52, 36, 0.65);
  --glass-border: rgba(212, 175, 55, 0.28);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
  --shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.45);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--primary-deep);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Atmosphere */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 50% 12%, rgba(23, 72, 51, 0.65) 0%, transparent 60%),
    radial-gradient(circle at 85% 85%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #05140d 0%, #0d2a1d 50%, #05140d 100%);
  z-index: -2;
  pointer-events: none;
}

.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Container */
.container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.main-header {
  padding: 24px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  width: clamp(52px, 8vw, 68px);
  height: clamp(52px, 8vw, 68px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  transition: var(--transition);
  flex-shrink: 0;
}

.brand-logo-img:hover {
  transform: scale(1.05) rotate(2deg);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.25rem, 3.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-tagline-mini {
  font-size: clamp(0.68rem, 1.8vw, 0.78rem);
  color: var(--accent-gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 3px;
}

.header-actions {
  display: flex;
  align-items: center;
}

.btn-contact-quick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  text-decoration: none;
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.btn-contact-quick:hover {
  background: var(--accent-gold);
  color: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

/* Main Hero Content */
.hero-section {
  padding: 20px 0 28px;
  text-align: center;
}

.badge-launch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--accent-gold-light);
  font-size: clamp(0.72rem, 2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: pulseGlow 3s infinite ease-in-out;
  max-width: 100%;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-gold);
  flex-shrink: 0;
}

.hero-heading-top {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.25rem, 3.2vw, 2.2rem);
  font-weight: 600;
  color: #e5ede8;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hero-heading-script {
  font-family: 'Alex Brush', cursive;
  font-size: clamp(2.8rem, 8.5vw, 5.4rem);
  font-weight: 400;
  color: var(--accent-gold);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
  word-break: break-word;
}

.hero-description {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: #d1ded6;
  font-weight: 300;
  line-height: 1.7;
  padding: 0 10px;
}

.hero-description strong {
  color: #ffffff;
  font-weight: 600;
}

/* Golden Divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 12px auto 16px;
  max-width: 240px;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.leaf-icon {
  color: var(--accent-gold);
  font-size: 1.1rem;
  animation: floatLeaf 4s ease-in-out infinite;
}

/* Amenities Simple Bar */
.amenities-simple-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: linear-gradient(180deg, rgba(17, 56, 39, 0.85) 0%, rgba(10, 34, 23, 0.95) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 22px 14px;
  max-width: 680px;
  margin: 0 auto 34px;
  box-shadow: var(--shadow-deep);
}

.amenity-simple-card {
  text-align: center;
  position: relative;
  padding: 0 8px;
}

.amenity-simple-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(212, 175, 55, 0.3);
}

.amenity-simple-icon {
  width: clamp(42px, 6vw, 48px);
  height: clamp(42px, 6vw, 48px);
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  transition: var(--transition);
}

.amenity-simple-card:hover .amenity-simple-icon {
  background: var(--accent-gold);
  color: var(--primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.amenity-simple-title {
  font-size: clamp(0.72rem, 1.8vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.35;
}

/* Contact / Phone Booking Section */
.contact-section {
  max-width: 620px;
  margin: 0 auto 16px;
  text-align: center;
}

.contact-label {
  font-size: clamp(0.75rem, 2vw, 0.84rem);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  margin-bottom: 14px;
  font-weight: 600;
}

.phone-cards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.phone-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(11, 38, 26, 0.85);
  border: 1px solid var(--accent-gold);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.phone-card .icon {
  width: 34px;
  height: 34px;
  background: var(--accent-gold);
  color: var(--primary-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.phone-card:hover {
  background: var(--accent-gold);
  color: var(--primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.phone-card:hover .icon {
  background: var(--primary-deep);
  color: var(--accent-gold);
}

/* Footer */
.main-footer {
  text-align: center;
  padding: 20px 20px 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  color: #8fa59c;
  font-size: 0.86rem;
  margin-top: auto;
}

.footer-quote {
  font-family: 'Alex Brush', cursive;
  font-size: clamp(1.8rem, 4.5vw, 2.2rem);
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.footer-desc {
  margin-bottom: 8px;
  color: #a4b8af;
  font-size: clamp(0.82rem, 2vw, 0.9rem);
}

.footer-copy {
  letter-spacing: 0.8px;
  font-size: clamp(0.72rem, 1.8vw, 0.8rem);
  margin-bottom: 6px;
  opacity: 0.85;
}

.footer-credits {
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.footer-credits .credit-brand {
  color: var(--accent-gold-light);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  }
}

@keyframes floatLeaf {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(8deg);
  }
}

/* ==========================================
   RESPONSIVE BREAKPOINTS (Mobile & Tablet)
   ========================================== */

/* Tablet (Portrait & Landscape: 768px - 991px) */
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  .amenities-simple-bar {
    max-width: 95%;
  }
}

/* Small Tablet & Large Mobile (481px - 767px) */
@media (max-width: 767px) {
  .main-header {
    padding: 18px 0 10px;
  }
  .hero-section {
    padding: 16px 0 22px;
  }
  .amenities-simple-bar {
    gap: 8px;
    padding: 18px 10px;
  }
  .phone-cards-grid {
    gap: 12px;
  }
  .phone-card {
    padding: 11px 20px;
  }
}

/* Mobile Devices (up to 480px) */
@media (max-width: 480px) {
  .main-header {
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 0 8px;
  }
  .brand-wrapper {
    gap: 10px;
  }
  .btn-contact-quick {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .badge-launch {
    padding: 6px 14px;
    font-size: 0.68rem;
    letter-spacing: 1.2px;
  }
  .amenities-simple-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 16px;
    border-radius: 16px;
  }
  .amenity-simple-card:not(:last-child)::after {
    display: none;
  }
  .amenity-simple-card {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 0;
  }
  .amenity-simple-icon {
    margin: 0;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
  .amenity-simple-title {
    font-size: 0.82rem;
  }
  .phone-cards-grid {
    flex-direction: column;
    width: 100%;
  }
  .phone-card {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }
  .main-footer {
    padding: 18px 15px 24px;
  }
}
