/* ==========================================================================
   TEMPLATE 2: NORDIC MINIMALIST & CLEAN LIGHT MODE
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Nordic Light Palette */
  --primary-light: #fbfbfa;
  --secondary-light: #f6f2ee;
  --card-bg: #ffffff;
  --accent-gold: #bda28b; /* Soft warm sand */
  --accent-gold-rgb: 189, 162, 139;
  --accent-gold-hover: #9c8069;
  --text-dark: #2a2a2a; /* Slate black */
  --text-muted: #737373; /* Muted stone grey */
  
  /* Details */
  --border-light: rgba(42, 42, 42, 0.08);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  --glass-bg: rgba(251, 251, 250, 0.9);
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --section-padding: 120px 0;
}

/* ==========================================================================
   RESETS & GENERAL
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-light);
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: 0.2px;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Scandi light filter - high exposure, slightly low saturation */
  filter: brightness(1.03) contrast(0.97) saturate(0.9);
  transition: var(--transition);
}

.container {
  width: 88%;
  max-width: 1140px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-subtitle {
  color: var(--accent-gold-hover);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 4px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
}

.section-title span {
  font-style: normal;
  font-weight: 700;
  color: var(--accent-gold-hover);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--text-dark);
  color: var(--primary-light);
  transform: translateY(-1px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 15px 0;
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  font-weight: 400;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-dark);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--secondary-light);
  overflow: hidden;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: 100%;
  height: 100%;
  align-items: center;
}

.hero-content {
  padding-right: 60px;
}

.badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold-hover);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-title span {
  font-style: italic;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image-wrapper {
  height: 90%;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  padding: var(--section-padding);
  background-color: var(--primary-light);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-img-frame {
  padding: 15px;
  background-color: var(--secondary-light);
  border: 1px solid var(--border-light);
}

.about-content {
  padding-left: 20px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 35px;
}

.about-grid-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.icon-box h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
}

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

/* ==========================================================================
   MENU
   ========================================================================== */
.menu {
  padding: var(--section-padding);
  background-color: var(--secondary-light);
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.filter-btn {
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 0;
  position: relative;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--text-dark);
  transform: scaleX(0);
  transition: var(--transition);
}

.filter-btn:hover::after,
.filter-btn.active::after {
  transform: scaleX(1);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--text-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

.menu-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-light);
  padding: 30px;
  transition: var(--transition);
}

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

.menu-card-img {
  height: 220px;
  overflow: hidden;
  margin-bottom: 25px;
}

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

.menu-card-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
}

.menu-card-price {
  font-weight: 600;
  color: var(--accent-gold-hover);
}

.menu-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.menu-card-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.menu-card.hidden {
  display: none;
}

.menu-card.fade-in {
  animation: simpleFade 0.4s ease forwards;
}

/* ==========================================================================
   EXPERIENCE
   ========================================================================== */
.experience {
  padding: var(--section-padding);
  background-color: var(--primary-light);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.experience-card {
  border: 1px solid var(--border-light);
  padding: 50px 35px;
  text-align: center;
  transition: var(--transition);
}

.experience-card:hover {
  background-color: var(--secondary-light);
}

.experience-icon {
  margin-bottom: 25px;
  color: var(--accent-gold-hover);
}

.experience-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.experience-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   OUR SPACE
   ========================================================================== */
.space-section {
  padding: var(--section-padding);
  background-color: var(--secondary-light);
}

.space-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--primary-light);
}

.testimonials-carousel {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-slide {
  display: none;
  opacity: 0;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
  animation: simpleFade 0.5s ease forwards;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 35px;
  color: var(--text-dark);
}

.testimonial-user {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.testimonial-user span {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: none;
  font-style: italic;
  color: var(--text-muted);
  display: block;
  margin-top: 5px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--border-light);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--text-dark);
  transform: scale(1.2);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  padding: var(--section-padding);
  background-color: var(--secondary-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-block {
  margin-bottom: 35px;
}

.contact-block h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-block p {
  color: var(--text-muted);
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 500;
}

.time {
  color: var(--text-muted);
}

/* Form */
.form-container {
  background-color: var(--card-bg);
  border: 1px solid var(--border-light);
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

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

.form-group-full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-input {
  border: 1px solid var(--border-light);
  background-color: var(--primary-light);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--text-dark);
}

select.form-input {
  cursor: pointer;
}

textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

.form-feedback {
  margin-top: 20px;
  padding: 12px;
  font-size: 0.85rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background-color: rgba(189, 162, 139, 0.1);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-hover);
}

.form-feedback.error {
  display: block;
  background-color: rgba(231, 76, 60, 0.05);
  border: 1px solid #e74c3c;
  color: #e74c3c;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: var(--primary-light);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--text-dark);
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form .form-input {
  flex-grow: 1;
}

.newsletter-form .btn {
  padding: 12px 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes simpleFade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-layout, .space-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-content {
    padding-left: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--primary-light);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
  }
  
  .nav-links.active {
    right: 0;
  }
}

@media (max-width: 500px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
