/* ====================================
   HIMA NURJI - Professional Design
   ==================================== */

:root {
  /* Colors */
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --secondary: #0f766e;
  --accent: #f59e0b;
  --accent-light: #fcd34d;
  --dark: #1f2937;
  --dark-light: #374151;
  --gray: #6b7280;
  --light: #f3f4f6;
  --lighter: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;

  /* Typography */
  --font-primary: "Poppins", sans-serif;
  --font-heading: "Montserrat", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.detail-thumbs img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.detail-thumbs img:hover {
  transform: scale(1.05);
}

/* 🔥 penting: mobile tetap 4 kolom */
@media (max-width: 768px) {
  .detail-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .detail-thumbs img {
    height: 75px;
  }
}

/* ====================================
   RESET & BASE STYLES
   ==================================== */

/* ================= HERO CLEAN FIX ================= */

.hero {
  margin-top: 70px;
  padding: 80px 0;
}

/* layout */
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* teks */
.hero-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

/* gambar */
.hero-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* ukuran maskot */
.maskot {
  width: 100%;
  max-width: 480px; /* UBAH DI SINI kalau mau lebih besar */
  height: auto;

  /* animasi halus ala loker */
  animation: floatIdle 3s ease-in-out infinite;
}

/* animasi smooth */
@keyframes floatIdle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-img {
    justify-content: center;
    margin-top: 40px;
  }

  .maskot {
    max-width: 260px;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* ====================================
   TYPOGRAPHY
   ==================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  color: var(--dark);
}

h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--dark);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--dark);
}

h4 {
  font-size: 1.25rem;
  color: var(--dark-light);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: var(--spacing-md);
}

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

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

/* ====================================
   UTILITY CLASSES
   ==================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-padding {
  padding: var(--spacing-2xl) 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: var(--spacing-xl) 0;
  }
}

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

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

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

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

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
}

/* ====================================
   BUTTONS
   ==================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
}

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

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
  padding: var(--spacing-sm) 0;
}

.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--spacing-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.logo img {
  height: 40px;
  width: auto;
}

.logo:hover {
  color: var(--primary-dark);
}

/* Navigation */
.navbar {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.navbar a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.navbar a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary);
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.navbar .btn-cta {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}

.navbar .btn-cta:hover {
  background-color: var(--primary-dark);
}

/* Mobile Menu Toggle */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 100px 20px 20px 20px;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .navbar::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    z-index: -1;
  }

  .navbar.active {
    left: 0;
  }

  .navbar.active::before {
    opacity: 1;
    visibility: visible;
  }

  .navbar li {
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-sm) 0;
  }

  .navbar a {
    display: block;
    padding: var(--spacing-sm) 0;
    font-size: 1.1rem;
  }

  .navbar a::after {
    display: none;
  }

  .navbar .btn-cta {
    width: 100%;
    margin-top: var(--spacing-lg);
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  body {
    padding-top: 70px;
  }

  .header {
    padding: 0.75rem 0;
  }
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: var(--spacing-2xl) 0;
}

/* .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,112C672,128,768,192,864,197.3C960,203,1056,149,1152,128C1248,107,1344,117,1392,122.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
} */

/* =========================================
   GALLERY CARD (INDEX PREVIEW)
========================================= */

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

.gallery-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.gallery-item:hover {
  transform: translateY(-6px);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* teks bawah gambar (bukan overlay lagi biar jelas) */
.gallery-content {
  padding: 18px;
}

.gallery-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
}

.gallery-desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 14px;
}

.read-more-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-decoration: none;
}

.read-more-btn:hover {
  opacity: 0.9;
}

.detail-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  text-align: justify;
}
  
/* ===============================
   GALLERY INDEX FINAL FIX
=============================== */

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

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* overlay gelap biar teks kebaca */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 16px;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.5),
    transparent
  );

  color: #fff;
}

.gallery-overlay h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}

.gallery-overlay p {
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffd54f;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 10vw, 4rem);
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

.hero h1 span {
  color: var(--accent-light);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn {
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

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

/* ====================================
   SECTION HEADER
   ==================================== */

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-header .subtitle {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
}

.section-header h2 span {
  color: var(--secondary);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  margin: 0 auto var(--spacing-lg);
  border-radius: 2px;
}

.section-header p {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray);
}

/* ====================================
   ABOUT SECTION
   ==================================== */

.about {
  background-color: var(--lighter);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--secondary);
  border-radius: 1.25rem;
  opacity: 0.3;
}

.about-content h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.about-content p {
  margin-bottom: var(--spacing-lg);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

.feature-item {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.feature-item h4 {
  margin-bottom: var(--spacing-xs);
}

.feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ====================================
   PROGRAMS SECTION
   ==================================== */

.programs {
  background-color: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.program-card {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 1rem;
  padding: var(--spacing-xl);
  color: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.program-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
}

.program-card:hover::before {
  top: -25%;
  right: -25%;
}

.program-card-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.program-card h3 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.program-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.program-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.program-card-tags span {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* ====================================
   TEAM SECTION
   ==================================== */

.team {
  background: linear-gradient(135deg, var(--lighter) 0%, var(--light) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.team-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

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

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: var(--spacing-lg);
}

.team-content h3 {
  margin-bottom: var(--spacing-xs);
}

.team-position {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.team-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ====================================
   GALLERY SECTION
   ==================================== */

.gallery {
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-lg);
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay-content h4 {
  color: var(--white);
  margin-bottom: var(--spacing-xs);
}

.gallery-overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ====================================
   CONTACT SECTION
   ==================================== */

.contact {
  background-color: var(--lighter);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
}

.contact-info h3,
.contact-form h3 {
  margin-bottom: var(--spacing-lg);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item h4 {
  margin-bottom: var(--spacing-xs);
}

.contact-item p {
  margin-bottom: 0;
  color: var(--gray);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-form button {
  width: 100%;
}

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

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

.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-social {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 768px) {
  .navbar {
    gap: 0;
  }

  .hero {
    margin-top: 70px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .hero .btn {
    padding: 0.75rem 1.5rem;
  }

  .section-padding {
    padding: var(--spacing-xl) 0;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero {
    padding: var(--spacing-xl) 0;
    min-height: auto;
  }

  .hero-buttons {
    gap: var(--spacing-sm);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .feature-item {
    padding: var(--spacing-md);
  }
}
