/* =========================================
   Jubilee Bee — Elegant Wedding Styles
   ========================================= */

/* --- Variables --- */
:root {
  --purple: #4A2268;
  --purple-light: #6B3A8C;
  --purple-dark: #2E1540;
  --gold: #FFC83C;
  --gold-light: #FFD97A;
  --cream: #FFFDF8;
  --cream-warm: #F8F3EC;
  --cream-mid: #F2EBE0;
  --text: #3A2A4A;
  --text-light: #6A5A7A;
  --white: #FFFFFF;
  --border: rgba(74, 34, 104, 0.12);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;

  --max-w: 1140px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-soft: 0 2px 20px rgba(74, 34, 104, 0.08);
  --shadow-card: 0 4px 30px rgba(74, 34, 104, 0.1);
  --shadow-hover: 0 8px 40px rgba(74, 34, 104, 0.15);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-warm); }
::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 3px; }

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--purple);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--purple);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: transparent;
  color: var(--purple);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--purple);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

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

.btn-full { width: 100%; text-align: center; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--purple);
  padding-top: max(env(safe-area-inset-top), 20px);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(74, 34, 104, 0.1);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  background: var(--purple);
  box-sizing: border-box;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

@media (max-width: 768px) {
  .nav-brand {
    font-size: 1.2rem;
  }
}

.nav-brand:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}

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

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.80) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-bee {
  width: 480px;
  margin: 0 auto 2.5rem;
  animation: float 6s ease-in-out infinite;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-heading {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple);
  opacity: 0.4;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* =========================================
   INTRO
   ========================================= */
.intro {
  padding: 7rem 0;
  background: var(--cream);
}

.intro-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.9;
}

.divider-floral {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.divider-floral svg {
  width: 200px;
  height: 30px;
}

/* =========================================
   FEATURES
   ========================================= */
.features {
  padding: 5rem 0 7rem;
  background: var(--cream-warm);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
}

/* =========================================
   PACKAGES
   ========================================= */
.packages-section {
  padding: 7rem 0;
  background: var(--cream);
}

.packages-page {
  padding: 7rem 0;
  background: var(--cream);
}

.packages-full {
  display: grid;
  grid-template-columns: repeat(4, 280px);
  gap: 2rem;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  justify-content: center;
}

.package-card-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card-full:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.package-card-full.popular {
  border-color: var(--purple);
  border-width: 2px;
  box-shadow: var(--shadow-card);
  transform: translateY(-12px);
}

.package-card-full.popular:hover {
  transform: translateY(-18px);
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.package-card.featured {
  border-color: var(--purple);
  border-width: 2px;
  box-shadow: var(--shadow-card);
  transform: translateY(-12px);
}

.package-card.featured:hover {
  transform: translateY(-18px);
}

.package-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--purple-light);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.package-badge.featured-badge {
  background: var(--gold);
  color: var(--purple-dark);
}

.package-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.package-tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  font-family: var(--font-heading);
  margin-bottom: 2rem;
}

.package-features {
  text-align: left;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.package-features li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 300;
  border-bottom: 1px solid rgba(74,34,104,0.06);
}

.package-features li:last-child { border-bottom: none; }

.package-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.55rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: 7rem 0;
  background: var(--purple);
}

.testimonials .section-label { color: var(--gold-light); }
.testimonials .section-heading { color: var(--white); }

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

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-section {
  padding: 7rem 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-mid);
}

.gallery-item:nth-child(3n+1) { grid-column: span 1; }
.gallery-item:nth-child(3n+2) { grid-column: span 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* =========================================
   ABOUT
   ========================================= */
.about-section {
  padding: 7rem 0;
  background: var(--cream-warm);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

.value-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--purple);
}

.value-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  font-weight: 300;
  margin: 0;
}

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-bee-illustration {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-section {
  padding: 7rem 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  margin-top: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-detail strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail span {
  font-size: 0.95rem;
  color: var(--text);
}

/* --- Form --- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(74, 34, 104, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  font-weight: 300;
  opacity: 0.7;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--purple-dark);
  padding: 3rem 0 2rem;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

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

.footer-social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-social .social-link svg {
  width: 20px;
  height: 20px;
}

.footer-social .social-link:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.5;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .packages-grid { gap: 1.5rem; }
  .about-inner { gap: 3rem; }
  .contact-inner { gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; }
  .gallery-item:nth-child(3n+2) { grid-column: span 1; }
}

@media (max-width: 768px) {
  body {
    padding-top: max(env(safe-area-inset-top), 20px);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    background: var(--purple);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-link {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
  }

  .nav-link:hover { color: var(--gold); }
  .nav-link::after { display: none; }

  .hero { padding: 6rem 1.5rem 3rem; min-height: auto; padding-top: 8rem; padding-bottom: 5rem; }
  .hero-scroll-hint { display: none; }

  .features-grid,
  .packages-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-6px); }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image { order: -1; max-width: 360px; margin: 0 auto; width: 100%; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row { grid-template-columns: 1fr; }

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

  .gallery-item:nth-child(2n+1) { grid-column: span 1; }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }

  .intro, .features, .packages-section, .testimonials,
  .gallery-section, .about-section, .contact-section {
    padding: 5rem 0;
  }

  .section-header { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item:nth-child(2n+1) { grid-column: span 1; }
  .gallery-item { grid-row: span 1 !important; grid-column: span 1 !important; }
  .contact-form { padding: 1.5rem; }
  .hero-heading { font-size: 2rem; }
  .package-price { font-size: 2.5rem; }

  /* Mobile hero fixes */
  .hero { min-height: auto; padding: 5rem 1rem 3rem; }
  .hero-bee { width: 280px; margin-bottom: 1.5rem; }
  .hero-tagline { font-size: 0.9rem; margin-bottom: 0.5rem; }
  .hero-heading { font-size: 1.8rem; margin-bottom: 0.75rem; }
  .hero-sub { font-size: 1rem; }
  .hero-scroll-hint { display: none; }
}

/* --- Gallery Page --- */
.gallery-page {
  padding: 4rem 0;
  background: var(--cream);
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-full-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-full-grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
  .gallery-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .gallery-full-grid img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery-full-grid {
    grid-template-columns: 1fr;
  }
}
