/* ============================================
   GRISHA ENTERPRISES — GLOBAL STYLES
   ============================================ */

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

*, *::before, *::after { box-sizing: border-box; }

:root {
  --royal: #4169E1;
  --royal-dark: #2f4fad;
  --gold: #c8a96e;
  --black: #111111;
  --off-white: #f8f7f5;
  --mid-gray: #888;
  --light-gray: #e8e8e8;
  --text: #222;
  --section-gap: 100px;
  --radius: 20px;
  --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

html { scroll-behavior: smooth; }

body {
  margin: 0; padding: 0;
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ---- PAGE TRANSITION ---- */
body.page-fade { animation: pageFadeIn 0.5s ease forwards; }
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   HEADER / NAV
   ============================================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  position: sticky;
  top: 0; z-index: 999;
  background: rgba(248,247,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.logo {
  width: 160px;
  height: auto;
  display: block;
  transition: transform 0.3s;
}
.logo:hover { transform: scale(1.03); }

nav ul.nav-list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0; padding: 0;
  background: none;
}
nav ul.nav-list li a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.3px;
}
nav ul.nav-list li a:hover,
nav ul.nav-list li a.active {
  background: var(--royal);
  color: #fff;
}

/* Contact as button */
nav ul.nav-list li.nav-contact a {
  background: var(--royal);
  color: #fff;
  font-weight: 600;
}
nav ul.nav-list li.nav-contact a:hover { background: var(--royal-dark); }

/* Burger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1000;
}
.menu-toggle span {
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--black);
  color: #fff;
  padding: 70px 8% 25px;
  margin-top: 80px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand p { color: #aaa; font-size: 0.9rem; line-height: 1.7; max-width: 260px; }
.footer-nav h4, .footer-info h4, .footer-cta h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a { color: #bbb; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-nav ul li a:hover { color: #fff; }
.footer-info p { color: #bbb; font-size: 0.9rem; margin: 6px 0; line-height: 1.6; }
.footer-wa-link {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s;
  margin-top: 10px;
}
.footer-wa-link:hover { background: #1da851; transform: scale(1.05); }
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 22px;
  text-align: center;
  color: #555;
  font-size: 0.82rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--royal);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  line-height: 1.15;
  margin: 0 0 20px;
}
.section-sub { font-size: 1.05rem; color: #666; line-height: 1.8; max-width: 620px; }

/* ============================================
   BOOK NOW BUTTON
   ============================================ */
.book-btn {
  display: inline-block;
  background: var(--royal);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 25px rgba(65,105,225,0.3);
}
.book-btn:hover {
  background: var(--royal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(65,105,225,0.4);
}
.book-btn.large { font-size: 1.15rem; padding: 18px 50px; }

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 850px) {
  header {
    padding: 16px 5%;
    justify-content: space-between;
  }

  .logo { 
    width: 130px; 
  }

  .menu-toggle { 
    display: flex;
    margin-left: auto; /* ← pushes burger to far right */
  }

  nav ul.nav-list {
    position: fixed;
    top: 0; right: -100%;
    width: 70%; max-width: 300px;
    height: 100vh;
    flex-direction: column;
    background: var(--black);
    padding: 80px 30px 30px;
    gap: 6px;
    transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    align-items: flex-start;
  }
  nav ul.nav-list.active { right: 0; }
  nav ul.nav-list li a {
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 18px;
    width: 100%;
    display: block;
  }
  nav ul.nav-list li a:hover, 
  nav ul.nav-list li a.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }
  nav ul.nav-list li.nav-contact a { background: var(--royal); }

  .footer-content { flex-direction: column; gap: 30px; }
}

