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

/* ==========================================
   DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
  /* Colors */
  --primary: #f47a20;
  --primary-hover: #d96512;
  --primary-light: #FDF6F0;
  --secondary: #C5A880;
  --secondary-hover: #B4966E;
  --dark: #1F1918;
  --dark-light: #2D2523;
  --light: #FAF7F5;
  --light-dark: #F5EFEB;
  --white: #FFFFFF;
  
  /* Text Colors */
  --text: #4A3F3C;
  --text-light: #7E6F6C;
  --text-white: #FFFFFF;
  
  /* Typography */
  --font-sans: 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Layout & Spacing */
  --container-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Borders & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 30px;
  --radius-round: 50%;
  
  --shadow-sm: 0 2px 8px rgba(31, 25, 24, 0.05);
  --shadow-md: 0 8px 24px rgba(31, 25, 24, 0.08);
  --shadow-lg: 0 16px 36px rgba(31, 25, 24, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

/* ==========================================
   BASE & RESET
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

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

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

.text-white {
  color: var(--white);
}

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

/* ==========================================
   REUSABLE UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

.d-flex { display: flex; }
.d-grid { display: grid; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

/* Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
  position: relative;
}

.section-header .sub {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-size: 15px;
  gap: 10px;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224, 92, 43, 0.25);
}

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

.btn-secondary:hover {
  background-color: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--white);
}

.btn-white:hover {
  background-color: var(--light-neutral);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.header.shrink {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: var(--shadow-md);
}

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

.header.shrink .nav-container {
  height: 65px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 70px;
  width: auto;
  transition: var(--transition);
}

.header.shrink .logo img {
  height: 55px;
}

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

.logo-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  color: var(--dark);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

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

.logo-title b {
  font-weight: 800;
  color: var(--dark);
}

.logo-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  flex-wrap: nowrap;
}

.nav-link {
  font-weight: 500;
  color: var(--dark);
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-cta {
    display: none; /* In mobile we can put it in the menu or hide */
  }
  
  .nav-menu .nav-cta-mobile {
    display: block !important;
  }
}

.nav-menu .nav-cta-mobile {
  display: none;
}

/* Toggle Menu Animation */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  background-color: var(--white);
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  z-index: 10;
}

.hero-content .tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.hero-content h1 {
  font-size: 54px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 35px;
  max-width: 520px;
}

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

.hero-contact {
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--light-dark);
  padding-top: 25px;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-contact-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-light);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}

.hero-contact-text span {
  display: block;
  font-size: 12px;
  color: var(--text-light);
}

.hero-contact-text a {
  font-weight: 600;
  color: var(--dark);
  font-size: 15px;
}

.hero-contact-text a:hover {
  color: var(--primary);
}

.hero-image-container {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.hero-image-container:hover .hero-image-wrapper img {
  transform: scale(1.08);
}

.hero-shape-bg {
  display: none;
}

/* Desktop styles for full-bleed, full-height hero image */
@media (min-width: 993px) {
  .hero-image-container {
    position: absolute;
    top: 80px; /* Align below the fixed navigation header */
    right: 0;
    width: 52%;
    height: calc(100% - 80px);
    z-index: 5;
  }

  .hero-image-wrapper {
    width: 100%;
    height: 100%;
    /* Fade out the left edge of the image to merge seamlessly into the content area */
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
  }

  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-position: right top; /* Show top edge (heads) and right edge (chef) clearly */
  }
}

/* SVG Wave Divider */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 15;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-contact {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 40px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hero-contact {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    max-width: max-content;
    margin: 0 auto;
  }
}


/* ==========================================
   FEATURES RIBBON
   ========================================== */
.features-ribbon {
  background-color: var(--white);
  padding: 40px 0;
  box-shadow: 0 -10px 30px rgba(31, 25, 24, 0.02);
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--light-dark);
}

.features-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-ribbon-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 15px;
}

.feature-ribbon-item:not(:last-child) {
  border-right: 1px solid var(--light-dark);
}

.feature-ribbon-icon {
  width: 54px;
  height: 54px;
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-ribbon-item:hover .feature-ribbon-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

.feature-ribbon-info h3 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.feature-ribbon-info p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}

@media (max-width: 992px) {
  .features-ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .feature-ribbon-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .features-ribbon-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .feature-ribbon-item {
    border-right: none !important;
    padding: 0;
  }
}


/* ==========================================
   COURSES CARDS
   ========================================== */
.courses-section {
  background-color: var(--light);
}

.course-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--light-dark);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.course-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

.course-card:hover .course-card-img img {
  transform: scale(1.08);
}

.course-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
}

.course-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-card-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.course-card-content p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.course-card-footer {
  border-top: 1px solid var(--light-dark);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-card-link:hover {
  color: var(--primary-hover);
}

.course-card-link i {
  transition: var(--transition);
}

.course-card-link:hover i {
  transform: translateX(4px);
}


/* ==========================================
   STATISTICS BANNER
   ========================================== */
.stats-banner {
  background-color: var(--dark);
  color: var(--white);
  padding: 50px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(224, 92, 43, 0.15);
  border: 1px solid rgba(224, 92, 43, 0.3);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.stat-info h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2px;
}

.stat-info p {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stat-item {
    max-width: 280px;
    margin: 0 auto;
  }
}


/* ==========================================
   ABOUT PREVIEW SECTION
   ========================================== */
.about-section {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 60px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 20px;
}

.about-content p.lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 15px;
}

.about-image {
  position: relative;
}

.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  z-index: 5;
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-shape {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--secondary);
  border-radius: var(--radius-md);
  z-index: 1;
  opacity: 0.3;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-img-wrapper img {
    height: 320px;
  }
}


/* ==========================================
   CTA BANNER (READY TO START)
   ========================================== */
.cta-banner {
  background-color: var(--primary);
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}

.cta-text h2 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 800;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-round);
  z-index: 1;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .cta-text h2 {
    font-size: 26px;
  }
}


/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--dark);
  color: var(--text-white);
  padding-top: 80px;
  padding-bottom: 30px;
}

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

.footer-col h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-about p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background-color: var(--dark-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 16px;
}

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

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

.footer-links a {
  color: var(--text-light);
  font-size: 14px;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  color: var(--text-light);
  font-size: 14px;
}

.footer-contact i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact a {
  color: var(--text-light);
}

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

.footer-bottom {
  border-top: 1px solid var(--dark-light);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

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


/* ==========================================
   PAGES SPECIFIC STYLES
   ========================================== */

/* Inner Page Hero Header */
.page-hero {
  background: url('../images/page-hero.png') no-repeat center center/cover;
  padding: 100px 0 60px 0;
  position: relative;
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(31, 25, 24, 0.8), rgba(31, 25, 24, 0.95)), url('../images/page-hero.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 44px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 800;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--white);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

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

/* About Page Styles */
.about-features {
  background-color: var(--light);
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-feature-card {
  background-color: var(--white);
  padding: 35px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--light-dark);
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
}

.about-feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.about-feature-card p {
  font-size: 14px;
  color: var(--text-light);
}

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

/* Chef Profile Section */
.chefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.chef-card-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.chef-card-detail:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.chef-card-detail:nth-child(2) {
  border-top-color: var(--secondary);
}

.chef-card-detail .chef-img-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.chef-card-detail .chef-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-card-detail h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark);
}

.chef-card-detail .title {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.chef-card-detail .bio-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 15px;
}

.chef-card-detail .quote {
  font-style: italic;
  font-size: 14px;
  color: var(--text-light);
  border-left: 3px solid var(--primary);
  padding-left: 15px;
  text-align: left;
  margin-top: auto;
}

.chef-card-detail:nth-child(2) .quote {
  border-left-color: var(--secondary);
}

@media (max-width: 768px) {
  .chefs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .chef-preview-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Courses Page Styles - Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  background-color: var(--light-dark);
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

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

/* Gallery Masonry */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 25, 24, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--primary);
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 25, 24, 0.95);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
}

/* Admission Forms */
.admission-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-dark);
  padding: 40px;
}

.admission-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.admission-info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.admission-info-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
}

.admission-info-text p {
  font-size: 14px;
  color: var(--text-light);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--light-dark);
  background-color: var(--light);
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(224, 92, 43, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

/* Contact Details Page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-card-info {
  background-color: var(--light);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-dark);
}

.contact-details-list li {
  margin-bottom: 25px;
}

.contact-details-list li strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 5px;
}

.contact-details-list li p, .contact-details-list li a {
  color: var(--text-light);
  font-size: 14px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  border: 1px solid var(--light-dark);
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

/* ==========================================
   STUDENT PORTFOLIO
   ========================================== */
.portfolio-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  background-color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--light-dark);
}

.portfolio-count {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}

.portfolio-count span {
  color: var(--primary);
  font-weight: 700;
}

.portfolio-selects {
  display: flex;
  gap: 15px;
}

.portfolio-select {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  background-color: var(--light);
  border: 1.5px solid var(--light-dark);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-select:focus {
  border-color: var(--primary);
  background-color: var(--white);
}

.student-col {
  display: flex;
}

.student-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 24px;
  text-align: center;
  border: 1.5px solid var(--light-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.student-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.student-img-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  padding: 5px;
  overflow: hidden;
}

.student-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--transition);
}

.student-card:hover .student-img-wrapper img {
  transform: scale(1.08);
}

.student-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.student-course {
  font-size: 14px;
  color: var(--text-light);
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.student-course i {
  color: var(--primary);
  font-size: 14px;
  margin-right: 6px;
}

.student-duration {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.student-duration i {
  font-size: 13px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: var(--light);
  color: var(--dark);
  border: 1.5px solid var(--light-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .portfolio-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .portfolio-selects {
    flex-direction: column;
    gap: 10px;
  }
}

/* Watermark styles (Free version / extensible) */
.premium-watermark {
  background-color: var(--dark-light);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 6px;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.premium-watermark a {
  color: var(--primary);
  font-weight: 600;
}

/* Culinary Specializations Styles */
.spec-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(244, 122, 32, 0.05);
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 122, 32, 0.15);
}

.spec-icon {
  font-size: 32px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  transition: var(--transition);
}

.spec-card:hover .spec-icon {
  transform: scale(1.1) rotate(5deg);
}

.spec-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}

/* Course Detail Page Specific Layout */
.course-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.course-col {
  transition: all 0.4s ease;
}
.course-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 15px 0;
  padding: 12px;
  background-color: var(--light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  text-align: left;
}
.course-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.course-meta-item i {
  color: var(--primary);
  width: 16px;
  display: inline-block;
}
@media (max-width: 992px) {
  .course-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .course-details-grid {
    grid-template-columns: 1fr;
  }
}
