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

:root {
  --color-cream: #FDFBF7;
  --color-cream-dark: #F2EFE8;
  --color-terracotta: #D9735A;
  --color-terracotta-dark: #B85841;
  --color-sage: #9CA986;
  --color-sage-light: #B8C5A3;
  --color-text: #4A3F35;
  --color-text-light: #7A6F65;
  --color-white: #FFFFFF;
  
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px rgba(74, 63, 53, 0.05);
  --shadow-md: 0 10px 20px rgba(74, 63, 53, 0.08);
  --shadow-lg: 0 20px 40px rgba(74, 63, 53, 0.12);
  --glass-bg: rgba(253, 251, 247, 0.85);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  color: var(--color-text);
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 5vw + 1rem, 5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--color-text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-family: var(--font-primary);
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: 0 10px 20px rgba(217, 115, 90, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-terracotta-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(217, 115, 90, 0.4);
}

.btn-secondary {
  background-color: var(--color-sage);
  color: var(--color-white);
  box-shadow: 0 10px 20px rgba(156, 169, 134, 0.3);
}

.btn-secondary:hover {
  background-color: var(--color-sage-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(156, 169, 134, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn-outline:hover {
  background-color: var(--color-text);
  color: var(--color-cream);
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-fast);
  padding: 1.5rem 0;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-terracotta);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  color: var(--color-sage);
}

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

.nav-links a {
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--color-terracotta);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background-color: var(--color-cream-dark);
}

.collage-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transition: transform var(--transition-slow);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.1) brightness(0.65); /* Dimmer background photos */
  transition: all var(--transition-fast);
}

.collage-item:hover img {
  filter: saturate(1.2) contrast(1.1) brightness(0.85);
  transform: scale(1.05);
}

/* Secondary Photos Scattered Aesthetic */
.collage-1 {
  width: 35vh;
  height: 45vh;
  top: -10vh;
  left: 30vw;
  transform: rotate(-8deg);
  opacity: 0.7;
}

.collage-2 {
  width: 30vh;
  height: 40vh;
  bottom: -5vh;
  left: 40vw;
  transform: rotate(5deg);
  opacity: 0.7;
}

.collage-3 {
  width: 25vh;
  height: 35vh;
  top: 10vh;
  right: -5vw;
  transform: rotate(12deg);
  opacity: 0.7;
}

.collage-4 {
  width: 32vh;
  height: 38vh;
  bottom: -8vh;
  right: 15vw;
  transform: rotate(-10deg);
  opacity: 0.7;
}

/* Main Photo - Prominent and Brighter */
.collage-main {
  width: 45vw;
  height: 70vh;
  top: 15vh;
  right: 5vw;
  transform: rotate(3deg);
  z-index: 2;
  border: 12px solid var(--color-white);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  animation: float 8s ease-in-out infinite;
}

.collage-main img {
  filter: saturate(1.25) contrast(1.15) brightness(1.0) !important; /* Brighter intensity for focus */
}

@keyframes float {
  0% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-15px) rotate(4deg); }
  100% { transform: translateY(0) rotate(3deg); }
}



.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(253, 251, 247, 0.95) 0%,
    rgba(253, 251, 247, 0.7) 45%,
    rgba(253, 251, 247, 0.0) 100%
  );
  z-index: 5;
}

.hero-content {
  max-width: 650px;
  animation: fadeUp 1s ease-out forwards;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(156, 169, 134, 0.2);
  color: var(--color-sage);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--color-terracotta);
  font-style: italic;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--color-text);
  max-width: 500px;
}

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

/* About Section */
.about {
  background-color: var(--color-cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  border-top-left-radius: 200px;
  border-bottom-right-radius: 200px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content h2 span {
  color: var(--color-sage);
  font-style: italic;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.feature-item:hover .feature-icon {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  transform: translateY(-3px);
}

.feature-text h4 {
  font-family: var(--font-primary);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.feature-text p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Menu Highlight Section */
.menu {
  background-color: var(--color-cream-dark);
}

.section-header {
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 span {
  color: var(--color-terracotta);
  font-style: italic;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.menu-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(217, 115, 90, 0.05) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.menu-card:hover::before {
  opacity: 1;
}

.menu-img {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-card:hover .menu-img img {
  transform: scale(1.1);
}

.menu-category {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-sage);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.menu-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.menu-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--color-cream-dark);
  padding-top: 1rem;
}

.price {
  font-weight: 700;
  color: var(--color-terracotta);
  font-size: 1.25rem;
}

.menu-link {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.menu-link:hover {
  color: var(--color-terracotta);
}

/* Full Menu List Styles */
.full-menu-wrapper {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.menu-column h3 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  color: var(--color-terracotta);
  border-bottom: 2px dashed var(--color-sage-light);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.menu-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-category-title i {
  color: var(--color-sage);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
}

.menu-item-row::after {
  content: '';
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  right: 0;
  border-bottom: 1px dotted rgba(74, 63, 53, 0.3);
  z-index: 0;
}

.menu-item-info {
  background-color: var(--color-cream-dark);
  padding-right: 10px;
  z-index: 1;
  max-width: 80%;
}

.menu-item-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  font-family: var(--font-primary);
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.2rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.menu-item-price {
  background-color: var(--color-cream-dark);
  padding-left: 10px;
  z-index: 1;
  font-weight: 700;
  color: var(--color-terracotta);
  font-family: var(--font-primary);
  font-size: 1.1rem;
}

/* Facilities Section */
.facilities {
  background-color: var(--color-cream);
  position: relative;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.facility-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  border-bottom: 4px solid transparent;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-sage);
}

.facility-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-sage);
  transition: all var(--transition-fast);
}

.facility-card:hover .facility-icon-wrapper {
  background-color: var(--color-sage);
  color: var(--color-white);
  transform: scale(1.1);
}

.facility-card h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.facility-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Footer Section */
footer {
  background-color: #2F2922;
  color: var(--color-cream);
  padding: 5rem 0 2rem;
}

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

.footer-logo {
  font-family: var(--font-secondary);
  font-size: 2rem;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-logo span {
  color: var(--color-terracotta);
}

.footer-about p {
  color: rgba(253, 251, 247, 0.7);
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--color-terracotta);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(253, 251, 247, 0.7);
}

.footer-links a:hover {
  color: var(--color-terracotta);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(253, 251, 247, 0.7);
}

.footer-contact i {
  color: var(--color-terracotta);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(253, 251, 247, 0.5);
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid {
    gap: 2rem;
  }
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
  }
  .full-menu-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right var(--transition-fast);
    padding: 2rem;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }
  
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(253, 251, 247, 0.95) 0%,
      rgba(253, 251, 247, 0.9) 55%,
      rgba(253, 251, 247, 0.2) 100%
    );
  }
  
  .collage-main {
    width: 90vw;
    height: 45vh;
    top: auto;
    bottom: -2vh;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    animation: floatMobile 8s ease-in-out infinite;
  }
  
  @keyframes floatMobile {
    0% { transform: translateX(-50%) translateY(0) rotate(2deg); }
    50% { transform: translateX(-50%) translateY(-10px) rotate(3deg); }
    100% { transform: translateX(-50%) translateY(0) rotate(2deg); }
  }
  
  .collage-1, .collage-2, .collage-3, .collage-4 {
    display: none; /* Hide background scatter on small mobile to avoid clutter */
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-img-wrapper {
    order: -1;
    height: 400px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .menu-grid, .facilities-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-btns {
    flex-direction: column;
  }
}
