/* ===== ABOUT HERO SECTION ===== */
.about-hero {
  position: relative;
  width: 100%;
  height: 65vh; /* narrower hero than homepage */
  background: url('../assets/hero-bg/hero-bg\(2\).jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Overlay */
.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Content */
.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 700px;
  animation: slideUp 1.2s ease forwards;
}

/* Title */
.about-hero-content h1 {
  font-family: 'Ethnocentric', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.about-hero-content h1 span {
  color: #d4a017;
}

/* Paragraph */
.about-hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 3vw, 1rem);
  color: #ccc;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== FADE-IN ON SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-hero {
    height: 55vh;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 50vh;
  }

  .about-hero-content h1 {
    font-size: 1.5rem;
  }

  .about-hero-content p {
    font-size: 0.85rem;
  }
}

/* MISSION AND PHILOSOPHY SECTION */

/* ===== MISSION & PHILOSOPHY SECTION ===== */
.mission-philosophy {
  background: #111;
  color: #eee;
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-philosophy .container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.mission-philosophy .row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.mission-philosophy .row.reverse {
  flex-direction: column;
}

.text-block h2 {
  color: #d4a017;
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.text-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  max-width: 550px;
}

.image-block img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

/* ===== ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ===== TABLET AND UP ===== */
@media (min-width: 768px) {
  .mission-philosophy .row {
    flex-direction: row;
    justify-content: space-between;
  }

  .mission-philosophy .row.reverse {
    flex-direction: row-reverse;
  }

  .text-block, .image-block {
    flex: 1;
  }

  .text-block {
    max-width: 500px;
  }

  .image-block img {
    max-width: 100%;
  }
}

/* ===== SMALL SCREENS ===== */
@media (max-width: 480px) {
  .mission-philosophy {
    padding: 3rem 1rem;
  }

  .text-block h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .text-block p {
    font-size: 0.95rem;
    text-align: center;
  }

  .image-block img {
    width: 100%;
  }
}

/* ===== HYGIENE & SAFETY SECTION ===== */
.hygiene {
  background: #121212;
  color: #fff;
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hygiene-container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* ===== IMAGE ===== */
.hygiene-img {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  height: clamp(200px, 40vh, 350px);
}

.hygiene-img img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* ===== TEXT ===== */
.hygiene-text {
  text-align: left;
  line-height: 1.6;
  color: #ccc;
}

.hygiene-text h2 {
  font-family: 'Ethnocentric', sans-serif;
  text-align: center;
  color: #fff;
  font-size: clamp(1.3rem, 4vw, 2rem);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hygiene-text h2 span {
  color: #d4a017;
}

.hygiene-text h3 {
  color: #d4a017;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.hygiene-text ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.hygiene-text li {
  margin-bottom: 0.6rem;
  color: #ccc;
  font-size: 0.95rem;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .hygiene {
    padding: 4rem 2rem;
  }

  .hygiene-text {
    text-align: justify;
  }
}

@media (min-width: 1024px) {
  .hygiene {
    padding: 5rem 3rem;
  }

  .hygiene-container {
    gap: 3rem;
  }

  .hygiene-text h2 {
    font-size: 2.2rem;
  }
}

/* ===== OUR STUDIO SECTION ===== */
.studio {
  background: #121212;
  color: #fff;
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.studio-container {
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.studio-container h2 {
  font-family: 'Ethnocentric', sans-serif;
  color: #fff;
  letter-spacing: 2px;
  font-size: clamp(1.3rem, 4vw, 2rem);
  margin-bottom: 2rem;
}

.studio-container h2 span {
  color: #d4a017;
}

/* ===== GALLERY ===== */
.studio-gallery {
  columns: 1;
  column-gap: 1rem;
}

.studio-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.studio-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

.studio-item img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* ===== MODAL ===== */
.studio-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease forwards;
}

.studio-modal-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.studio-modal.show .studio-modal-img {
  opacity: 1;
  transform: scale(1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.studio-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.studio-close:hover {
  color: #d4a017;
}


/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 480px) {
  .studio-gallery {
    columns: 2;
  }
}

@media (min-width: 768px) {
  .studio-gallery {
    columns: 3;
  }

  .studio {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .studio-gallery {
    columns: 4;
  }

  .studio {
    padding: 5rem 3rem;
  }
}
