/* --- Global Theme Variables --- */
:root {
  --white: #f2f3f4;
  --offwhite: #f4f3f2;
  --black: #555263;
  --pink: #f2695c;
  --magenta: #ef4581;
  --lavender: #a794bb;

  --font-family: 'Plus Jakarta Sans', sans-serif;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

/* --- Base Styles --- */
body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--black);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* --- Navbar --- */
.navbar {
  background-color: transparent;
  padding: 15px 30px;
}

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

.site-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--pink);
}

.logo-inline {
  max-width: 25px;
  margin-left: 8px;
  vertical-align: middle;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--pink);
  font-weight: 500;
  transition: color 0.3s;
}

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

/* --- Mobile Nav --- */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--lavender);
}

@media (max-width: 767px) {
  .card-grid .card-tile {
    margin-bottom: 2rem;
  }
  .card-grid .card-tile:last-child {
    margin-bottom: 0;
  }
@media (max-width: 767px) {
  .card-tile.image-card {
    margin-top: 4rem !important;
  }
}


  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    width: 100%;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Hero Section --- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background-color: var(--offwhite);
  padding: 0 20px;
}

.hero-content {
  max-width: 700px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-logo {
  max-width: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  color: var(--pink);
  margin-bottom: 0.3rem;
}

.hero h2 {
  font-size: 1.5rem;
  color: var(--magenta);
  margin: 0.3rem 0;
}

.motto {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--black);
}

/* --- Button --- */
.btn, .cta-button {
  background-color: var(--magenta);
  color: var(--white);
  font-size: 1.1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn:hover, .cta-button:hover {
  background-color: var(--lavender);
}

/* --- Section Wrapper --- */
.section-light {
  background-color: var(--offwhite);
  padding: 4rem 1rem;
  text-align: center;
}

.section-light p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Card Grid Section --- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card-grid.equal-height > .card-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


@media (min-width: 768px) and (orientation: landscape) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-tile {
  background-color: var(--pink);
  color: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

.card-tile em {
  font-style: italic;
}

/* --- Footer --- */
footer {
  background-color: var(--offwhite);
  text-align: center;
  padding: 2rem 2rem;
  font-size: 0.9rem;
  color: var(--black);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 2rem
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

/* --- Utility --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (orientation: landscape) {
  .card-grid.equal-height > .card-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* === Standalone Page Styling (for about.html, the_app.html, the_chef.html) === */

.about-page {
  padding: 40px 20px;
  background-color: var(--white);
  color: var(--black);
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-hero {
  padding: 80px 20px 30px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3px);
}

.about-hero h1 {
  font-size: 2.8rem;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.about-hero .tagline {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--black);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-content h2 {
  font-size: 1.8rem;
  color: var(--magenta);
  margin-top: 2rem;
}

.about-content ul {
  padding-left: 1.2rem;
}

.about-content ul li {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  line-height: 1.5;
}
.more-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--pink);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.more-link:hover {
  color: var(--magenta);
  transform: translateX(5px);
}

.more-link::after {
  content: "→";
  margin-left: 5px;
  transition: all 0.3s ease;
}

.more-link:hover::after {
  margin-left: 10px;
}

.image-card img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* match card style */
  display: block;
  object-fit: cover;
}

#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  background-color: var(--magenta);
  color: var(--white);
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  background-color: var(--pink);
}
body {
  font-size: 1.1rem;
  line-height: 1.8;
}

