/* CSS Variables */
:root {
  --sage: #8b9d83;
  --deep-sage: #5c6b54;
  --cream: #faf7f2;
  --terracotta: #d4745f;
  --charcoal: #2b2b2b;
  --warm-white: #fffcf7;
  --clay: #c89f8c;
  --olive: #737d5c;
}

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

body {
  font-family: "Manrope", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  padding-top: 80px;
}

/* Fixed Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255, 252, 247, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1002;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar > * {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1003;
}

.navbar-logo:hover {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--terracotta);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #e88770;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      rgba(92, 107, 84, 0.5) 0%,
      rgba(43, 43, 43, 0.5) 100%
    ),
    url("img/cooking-1.jpg") center center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  padding: 6rem 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(212, 116, 95, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(200, 159, 140, 0.1) 0%,
      transparent 50%
    );
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out;
}

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

.hero-subtitle {
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: fadeInUp 1.2s ease-out 0.2s backwards;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 1rem;
  letter-spacing: -2px;
  animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

.hero-tagline {
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 3rem;
  animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--terracotta);
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 1.2s ease-out 0.8s backwards;
  box-shadow: 0 10px 30px rgba(212, 116, 95, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 116, 95, 0.4);
  background: #e88770;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  cursor: pointer;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.scroll-indicator::after {
  content: "↓";
  font-size: 2rem;
  color: var(--cream);
  opacity: 0.6;
}

/* About Section */
.about {
  padding: 8rem 5%;
  background: var(--warm-white);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: url("img/about.jpeg") center center;
  background-size: cover;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-content {
  animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-label {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  font-weight: 600;
}

.about h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--deep-sage);
  margin-bottom: 1.5rem;
}

.credentials {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--sage);
  display: flex;
  gap: 3rem;
}

.credential-item {
  flex: 1;
}

.credential-item strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.credential-item span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--charcoal);
}

/* Services Section */
.services {
  padding: 8rem 5%;
  background: linear-gradient(
    to bottom,
    var(--warm-white) 0%,
    var(--cream) 100%
  );
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

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

.service-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 8px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--clay));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-image {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--deep-sage);
}

/* Social Media & Collaborations Section */
.social-collab {
  padding: 8rem 5%;
  background: var(--cream);
  position: relative;
}

.social-collab::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
}

.social-collab-container {
  max-width: 1200px;
  margin: 0 auto;
}

.social-collab-header {
  text-align: center;
  margin-bottom: 4rem;
}

.social-collab h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.social-collab-intro {
  font-size: 1.2rem;
  color: var(--deep-sage);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.social-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.social-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.social-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.social-content p {
  font-size: 1rem;
  color: var(--deep-sage);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--deep-sage);
  gap: 0.75rem;
}

.collab-section {
  background: linear-gradient(135deg, var(--sage) 0%, var(--deep-sage) 100%);
  padding: 4rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.collab-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  animation: shimmer 15s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.collab-content {
  position: relative;
  z-index: 1;
}

.collab-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.collab-section p {
  font-size: 1.1rem;
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  opacity: 0.95;
}

.collab-types {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.collab-type {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: var(--warm-white);
  font-size: 0.95rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.collab-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--terracotta);
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(212, 116, 95, 0.3);
}

.collab-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 116, 95, 0.5);
  background: #e88770;
}

/* Client Reviews Section */
.reviews {
  padding: 8rem 5%;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
  opacity: 0.06;
  border-radius: 50%;
}

.reviews::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.reviews-intro {
  font-size: 1.2rem;
  color: var(--deep-sage);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.4;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.review-stars {
  display: flex;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.review-stars span {
  color: var(--terracotta);
  font-size: 1.1rem;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--deep-sage);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 157, 131, 0.2);
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--deep-sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.review-author-info h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.review-author-info span {
  font-size: 0.9rem;
  color: var(--sage);
}

.review-card.featured {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d3d3d 100%);
}

.review-card.featured::before {
  color: var(--terracotta);
  opacity: 0.3;
}

.review-card.featured .review-stars span {
  color: var(--terracotta);
}

.review-card.featured .review-text {
  color: var(--cream);
}

.review-card.featured .review-author {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.review-card.featured .review-author-info h4 {
  color: var(--warm-white);
}

.review-card.featured .review-author-info span {
  color: var(--clay);
}

/* Achievements Section */
.achievements {
  padding: 8rem 5%;
  background: var(--deep-sage);
  position: relative;
  overflow: hidden;
}

.achievements::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 116, 95, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.achievements-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.achievements h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 4rem;
  text-align: center;
}

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

.achievement-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.achievement-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.02);
}

.achievement-logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  display: block;
}

.achievement-logo img {
  width: 80%;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.achievement-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--warm-white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.achievement-card p {
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 8rem 5%;
  background: var(--warm-white);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.contact p {
  font-size: 1.2rem;
  color: var(--deep-sage);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-button {
  padding: 1rem 2.5rem;
  background: var(--sage);
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(139, 157, 131, 0.3);
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 157, 131, 0.4);
  background: var(--deep-sage);
}

.contact-button.primary {
  background: var(--terracotta);
  box-shadow: 0 10px 30px rgba(212, 116, 95, 0.3);
}

.contact-button.primary:hover {
  background: #e88770;
  box-shadow: 0 15px 40px rgba(212, 116, 95, 0.4);
}

/* Footer */
footer {
  padding: 3rem 5%;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

footer p {
  font-size: 0.95rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero h1 {
    font-size: 4.5rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid,
  .social-grid,
  .reviews-grid,
  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .collab-section {
    padding: 3rem 2rem;
  }

  .collab-types {
    gap: 1rem;
  }

  .credentials {
    flex-direction: column;
    gap: 1.5rem;
  }

  .navbar {
    height: 70px;
  }

  body {
    padding-top: 70px;
  }

  .hero {
    min-height: calc(100vh - 70px);
    padding: 4rem 0;
  }

  /* Mobile Navigation */
  .nav-toggle {
    display: flex;
    z-index: 1003;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(255, 252, 247, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 90px;
    gap: 1.5rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.5rem 2rem;
  }

  .nav-links .nav-cta {
    margin-top: 1rem;
  }

  .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(5px, -5px);
  }
}

@media (max-width: 480px) {
  .scroll-indicator {
    bottom: 0.5rem !important;
    transform: translateX(-50%) scale(0.8);
  }
}
