@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@200..800&display=swap');

/* --- DESIGN SYSTEM --- */
/* 
  ========================================================
  NEXUS DESIGN STYLE GUIDE:
  - Change the root CSS variables below to change colors instantly!
  ========================================================
*/
:root {
  --bg-dark: #0c0a09;
  --bg-card: #14110f;
  --bg-card-hover: #1c1815;
  --primary: #d4b290;
  --primary-hover: #e5caae;
  --accent: #c49870;
  --text-main: #f5ede4;
  --text-muted: #9e8e82;
  --border-color: rgba(212, 178, 144, 0.12);
  --border-focus: rgba(212, 178, 144, 0.4);
  --glass-bg: rgba(12, 10, 9, 0.75);
  --glass-border: rgba(212, 178, 144, 0.08);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- UTILITIES --- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gold {
  color: var(--primary);
}

.text-serif {
  font-family: var(--font-serif);
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  .section-padding {
    padding: 5rem 0;
  }
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
  display: block;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-dark);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.6s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 178, 144, 0.15);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-wrapper {
  height: 70px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-menu {
  display: flex;
  gap: 3rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* --- MOBILE NAVIGATION --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-card);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--border-color);
    visibility: hidden;
  }
  
  .nav-menu.active {
    right: 0;
    visibility: visible;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 550px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-image {
  position: relative;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.85);
  transition: var(--transition-smooth);
}

.about-image:hover img {
  transform: scale(1.02);
  filter: saturate(1);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

/* --- SERVICES/HIGHLIGHTS --- */
.highlights {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

@media (max-width: 992px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.highlight-card {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  background-color: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  display: inline-block;
}

.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- BANNER CTA --- */
.banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 10rem 0;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}

.banner .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.banner h2 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .banner h2 {
    font-size: 2.3rem;
  }
}

.banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* --- TESTIMONIALS --- */
.testimonials-slider {
  max-width: 800px;
  margin: 4rem auto 0 auto;
  text-align: center;
}

.testimonial-item blockquote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .testimonial-item blockquote {
    font-size: 1.4rem;
  }
}

.testimonial-author {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 600;
}

/* --- MENU PAGE SPECIFIC --- */
.menu-header {
  padding-top: 12rem;
  padding-bottom: 4rem;
  text-align: center;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
}

.menu-filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  padding: 0.5rem 1.2rem;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  color: var(--primary);
  border-color: var(--primary);
}

.menu-sections {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.menu-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.menu-item:hover {
  border-bottom-color: var(--primary);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-item h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.menu-item:hover h4 {
  color: var(--primary);
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 500;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.menu-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .menu-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.showcase-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.showcase-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.showcase-img {
  height: 350px;
  overflow: hidden;
  position: relative;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.showcase-card:hover .showcase-img img {
  transform: scale(1.05);
}

.showcase-info {
  padding: 2.5rem;
}

.showcase-info h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.showcase-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* --- CONTACT & VISIT PAGE SPECIFIC --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info-block h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 400;
}

.info-block p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

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

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text-main);
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.social-link:hover svg {
  fill: var(--primary);
}

/* Form Styles */
.contact-form {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 576px) {
  .contact-form {
    padding: 2rem 1.5rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: 0;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(212, 178, 144, 0.05);
}

/* Map placeholder */
.map-container {
  height: 450px;
  width: 100%;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* --- FOOTER --- */
footer {
  background-color: #080706;
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 3rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-col h3 {
  font-family: var(--font-serif);
  color: var(--text-main);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer-col p {
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 178, 144, 0.05);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* --- SCROLL ANIMATIONS --- */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }



/* --- LUCIDE ICONS STYLE --- */
.lucide {
  stroke-width: 1.8;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  margin-right: 0.5rem;
  display: inline-block;
  color: var(--text-gold);
}

/* --- AMBIENT DECORATIONS --- */
.body-glow {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(212, 178, 144, 0.03) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.body-glow-alt {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(196, 152, 112, 0.02) 0%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}
.decorative-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
  position: relative;
  margin: 6rem 0;
}
.decorative-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}
