/* ==========================================================================
   DIGITAL YEARBOOK SMA SATURN - CLAYMORPHISM DESIGN SYSTEM & STYLESHEET
   Based on Layout from Image 1 & Clay 3D Aesthetics from Image 2
   ========================================================================== */

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

:root {
  /* Color Palette - Warm Clay Pastels */
  --bg-main: #F7F3EC;
  --bg-gradient-start: #FAF6EF;
  --bg-gradient-end: #F2ECE1;
  
  --clay-bg-white: #FFFFFF;
  --clay-bg-card: #FAF6F0;
  --clay-bg-alt: #FFFDF9;
  
  /* Pastel Accent Colors */
  --accent-peach: #FF8F6B;
  --accent-peach-light: #FFEBE3;
  --accent-mint: #4EAA98;
  --accent-mint-light: #E2F5F1;
  --accent-yellow: #F4C443;
  --accent-yellow-light: #FFF6DB;
  --accent-blue: #5B92E5;
  --accent-blue-light: #EBF3FF;
  --accent-purple: #9D74E8;
  --accent-purple-light: #F3ECFE;

  /* Typography Colors */
  --text-dark: #2A2E3D;
  --text-muted: #6C7289;
  --text-light: #8E95A9;
  
  /* Volumetric Clay Shadows */
  --clay-shadow-outer: 10px 14px 28px rgba(165, 149, 134, 0.22), -6px -6px 18px rgba(255, 255, 255, 0.95);
  --clay-shadow-inner: inset -5px -6px 10px rgba(150, 135, 120, 0.08), inset 6px 7px 12px rgba(255, 255, 255, 0.9);
  --clay-shadow-combined: 10px 14px 28px rgba(165, 149, 134, 0.22), inset -5px -6px 10px rgba(160, 145, 130, 0.06), inset 6px 7px 12px rgba(255, 255, 255, 0.9);
  --clay-shadow-btn: 6px 10px 20px rgba(255, 143, 107, 0.35), inset -3px -4px 6px rgba(0, 0, 0, 0.12), inset 4px 4px 6px rgba(255, 255, 255, 0.6);
  --clay-shadow-pressed: inset 4px 5px 8px rgba(0, 0, 0, 0.15), inset -3px -3px 6px rgba(255, 255, 255, 0.5);

  /* Radius Tokens */
  --radius-card: 32px;
  --radius-pill: 9999px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-main);
}

body {
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ==========================================================================
   CLAYMORPHISM CORE CLASSES
   ========================================================================== */

.clay-card {
  background-color: var(--clay-bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--clay-shadow-combined);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.clay-card-hover:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 14px 20px 36px rgba(165, 149, 134, 0.32), inset -5px -6px 10px rgba(160, 145, 130, 0.05), inset 6px 7px 12px rgba(255, 255, 255, 0.95);
}

.clay-pill {
  border-radius: var(--radius-pill);
  box-shadow: var(--clay-shadow-combined);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.clay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background-color: var(--accent-peach);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--clay-shadow-btn);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  user-select: none;
}

.clay-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background-color: #FF7D54;
  box-shadow: 8px 14px 24px rgba(255, 143, 107, 0.45), inset -3px -4px 6px rgba(0, 0, 0, 0.12), inset 4px 4px 6px rgba(255, 255, 255, 0.7);
}

.clay-btn:active {
  transform: translateY(2px) scale(0.97);
  box-shadow: var(--clay-shadow-pressed);
}

.clay-btn-secondary {
  background-color: var(--clay-bg-white);
  color: var(--text-dark);
  box-shadow: var(--clay-shadow-combined);
}

.clay-btn-secondary:hover {
  background-color: #FFFDF9;
  box-shadow: 12px 16px 28px rgba(165, 149, 134, 0.28), inset -4px -5px 8px rgba(0, 0, 0, 0.05), inset 5px 6px 10px rgba(255, 255, 255, 0.95);
}

.clay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--clay-shadow-combined);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.clay-badge-peach { background-color: var(--accent-peach-light); color: #D84E29; }
.clay-badge-mint { background-color: var(--accent-mint-light); color: #237A6A; }
.clay-badge-yellow { background-color: var(--accent-yellow-light); color: #B38200; }
.clay-badge-blue { background-color: var(--accent-blue-light); color: #2A60B7; }
.clay-badge-purple { background-color: var(--accent-purple-light); color: #6E3FB7; }

/* ==========================================================================
   HEADER / FLOATING PILL NAVBAR (IMAGE 1 INSPIRED)
   ========================================================================== */

.header-container {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.navbar-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 24px;
  width: 100%;
  max-width: 1040px;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  box-shadow: var(--clay-shadow-combined);
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-peach) 0%, var(--accent-yellow) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 900;
  box-shadow: var(--clay-shadow-btn);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-dark);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 4px 6px 12px rgba(165, 149, 134, 0.15), inset -2px -2px 4px rgba(0, 0, 0, 0.03), inset 3px 3px 6px rgba(255, 255, 255, 0.9);
}

.nav-link.active {
  background-color: var(--accent-peach);
  color: #FFF;
  box-shadow: var(--clay-shadow-btn);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.audio-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: var(--clay-bg-white);
  color: var(--accent-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--clay-shadow-combined);
  transition: all 0.2s ease;
}

.audio-toggle-btn:hover {
  transform: scale(1.08);
}

.audio-toggle-btn.playing {
  background-color: var(--accent-peach);
  color: #FFF;
  animation: pulse-clay 2s infinite;
}

@keyframes pulse-clay {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   HERO SECTION (IMAGE 1 ASYMMETRICAL SPLIT + CLAY STYLES)
   ========================================================================== */

.hero-section {
  padding-top: 130px;
  padding-bottom: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.hero-title span.highlight {
  color: var(--accent-peach);
  position: relative;
  display: inline-block;
}

.hero-title span.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--accent-yellow-light);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 2px dashed rgba(108, 114, 137, 0.15);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  width: 100%;
  max-width: 480px;
  height: 520px;
  border-radius: 40px 40px 180px 180px;
  overflow: hidden;
  position: relative;
  box-shadow: 16px 24px 45px rgba(165, 149, 134, 0.35), inset -6px -6px 12px rgba(0, 0, 0, 0.08), inset 6px 8px 14px rgba(255, 255, 255, 0.9);
  border: 4px solid rgba(255, 255, 255, 0.95);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.05);
}

/* Floating Decorative Clay Shapes */
.floating-clay-shape {
  position: absolute;
  border-radius: 50%;
  box-shadow: var(--clay-shadow-combined);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.shape-1 {
  top: -15px;
  right: 20px;
  width: 65px;
  height: 65px;
  background-color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.shape-2 {
  bottom: 30px;
  left: -20px;
  width: 75px;
  height: 75px;
  background-color: var(--accent-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  animation-delay: 1.5s;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */

.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.section-title-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-peach);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* ==========================================================================
   SECTION 1: HORIZONTAL MOMENTS CAROUSEL (IMAGE 1 INPIRED CARD SLIDER)
   ========================================================================== */

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--clay-bg-white);
  border: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--clay-shadow-combined);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
  background-color: var(--accent-peach);
  color: white;
  transform: scale(1.08);
}

.slider-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 16px 8px 32px 8px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.slider-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.moment-card {
  min-width: 320px;
  width: 320px;
  height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.moment-card-img-wrapper {
  height: 240px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.moment-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.moment-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.moment-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.moment-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   SECTION 2: PROFIL SINGKAT ANGKATAN
   ========================================================================== */

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.profile-feature-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--clay-shadow-combined);
}

.profile-feature-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.profile-feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ==========================================================================
   SECTION 3: PRAKATA KEPALA SEKOLAH
   ========================================================================== */

.principal-card {
  padding: 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #FFFDF9 0%, #FAF5EE 100%);
}

.principal-photo-frame {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--clay-shadow-combined);
  border: 3px solid #FFF;
}

.principal-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.principal-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.principal-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
}

.principal-title-tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-peach);
}

.principal-speech {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

.quote-box {
  padding: 18px 24px;
  background-color: var(--accent-yellow-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-yellow);
  font-weight: 600;
  font-size: 0.95rem;
  color: #7A5B00;
}

/* ==========================================================================
   SECTION 4: CARD AKSES HALAMAN KELAS
   ========================================================================== */

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.class-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.class-card-cover {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.class-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.class-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
}

.class-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.class-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.class-nickname {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-mint);
}

.class-walas-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1.5px dashed rgba(108, 114, 137, 0.15);
}

.walas-avatar-mini {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--clay-shadow-combined);
}

.walas-avatar-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.walas-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.walas-text h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 700;
}

.class-card-action {
  margin-top: 12px;
}

.class-card-action .clay-btn {
  width: 100%;
}

/* ==========================================================================
   POPUP MODAL KELAS FULL-SCREEN
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(42, 46, 61, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 95vw;
  max-width: 1280px;
  height: 92vh;
  background: var(--bg-main);
  background: linear-gradient(135deg, #FAF6EF 0%, #F2ECE1 100%);
  border-radius: 36px;
  box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.9);
  overflow-y: auto;
  position: relative;
  padding: 40px;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: sticky;
  top: 10px;
  float: right;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-peach);
  color: white;
  border: none;
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--clay-shadow-btn);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background-color: #FF5A36;
}

.modal-class-hero {
  margin-top: 10px;
  margin-bottom: 40px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  height: 320px;
  box-shadow: var(--clay-shadow-combined);
}

.modal-class-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-class-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(42, 46, 61, 0.9) 0%, rgba(42, 46, 61, 0) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-class-title {
  font-size: 2.5rem;
  font-weight: 800;
}

.modal-class-slogan {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
  font-style: italic;
}

/* Modal Section: Wali Kelas */
.walas-section-card {
  padding: 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.walas-photo-frame {
  width: 100%;
  height: 240px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--clay-shadow-combined);
  border: 3px solid white;
}

.walas-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.walas-details h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.walas-details span {
  font-weight: 700;
  color: var(--accent-peach);
  font-size: 0.9rem;
}

.walas-details p {
  margin-top: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  font-size: 1rem;
}

/* Modal Section: Student Profiles Carousel */
.student-card {
  min-width: 320px;
  width: 320px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  background-color: #FFFDF9;
}

.student-avatar-frame {
  width: 100%;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--clay-shadow-combined);
  border: 2.5px solid white;
}

.student-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-info-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}

.student-info-gender {
  font-size: 0.8rem;
}

.student-biodata-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bio-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bio-item strong {
  min-width: 70px;
  color: var(--text-dark);
}

.student-quote {
  margin-top: 6px;
  padding: 12px;
  background-color: var(--accent-peach-light);
  border-radius: 16px;
  color: #B23D19;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer-section {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 24px 30px 24px;
  border-radius: 40px 40px 0 0;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-peach);
}

.footer-brand p {
  color: #A0A5BA;
  line-height: 1.6;
  max-width: 400px;
}

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

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.social-icon-btn:hover {
  background-color: var(--accent-peach);
  transform: translateY(-3px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #A0A5BA;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #71778D;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-image-wrapper { order: -1; }
  .principal-card { grid-template-columns: 1fr; text-align: center; }
  .principal-photo-frame { height: 300px; max-width: 280px; margin: 0 auto; }
  .footer-container { grid-template-columns: 1fr; }
  .walas-section-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.2rem; }
  .modal-container { padding: 20px; width: 100vw; height: 100vh; border-radius: 0; }
}
