/* ============================================
   Rose Garden Company - Premium Modern Design
   ============================================ */

:root {
  --primary: #0a71c0;
  --primary-dark: #0a4c8b;
  --rose: #ef6fa7;
  --rose-dark: #d946a0;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --shadow: rgba(15, 23, 42, 0.08);
  --shadow-lg: rgba(15, 23, 42, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Language Toggle Button
   ============================================ */
.lang-toggle {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1000;
  background: var(--card-bg);
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  color: var(--primary);
}

.lang-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.lang-toggle svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px var(--shadow);
  z-index: 999;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 8px 32px var(--shadow-lg);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-ar {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-en {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--purple));
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(10, 113, 192, 0.05) 0%,
    rgba(239, 111, 167, 0.05) 50%,
    rgba(139, 92, 246, 0.05) 100%);
}

.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--purple));
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.hero-particles span:nth-child(1) { width: 80px; height: 80px; top: 10%; right: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { width: 60px; height: 60px; top: 60%; right: 20%; animation-delay: 2s; }
.hero-particles span:nth-child(3) { width: 100px; height: 100px; top: 30%; left: 15%; animation-delay: 4s; }
.hero-particles span:nth-child(4) { width: 70px; height: 70px; bottom: 20%; left: 25%; animation-delay: 6s; }
.hero-particles span:nth-child(5) { width: 50px; height: 50px; top: 70%; right: 30%; animation-delay: 1s; }
.hero-particles span:nth-child(6) { width: 90px; height: 90px; bottom: 30%; right: 15%; animation-delay: 3s; }
.hero-particles span:nth-child(7) { width: 65px; height: 65px; top: 45%; left: 10%; animation-delay: 5s; }
.hero-particles span:nth-child(8) { width: 75px; height: 75px; bottom: 40%; left: 40%; animation-delay: 7s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(10px, -20px) scale(1.1); }
  50% { transform: translate(-15px, 15px) scale(0.9); }
  75% { transform: translate(20px, 10px) scale(1.05); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 64px;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.title-line {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-highlight {
  background: linear-gradient(135deg, var(--rose), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  margin-top: 8px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 550px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 8px 24px rgba(10, 113, 192, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 113, 192, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.hero-image {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.floating-image {
  width: 100%;
  height: auto;
  display: block;
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.image-glow {
  position: absolute;
  inset: -50%;
  background: linear-gradient(135deg, var(--rose), var(--purple));
  opacity: 0.3;
  filter: blur(60px);
  z-index: -1;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-light);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--text-light);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(10, 113, 192, 0.1), rgba(239, 111, 167, 0.1));
  border-radius: 50px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary-dark), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Glass Card Effect
   ============================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 8px 32px var(--shadow);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px var(--shadow-lg);
}

/* ============================================
   About Section
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.about-card {
  padding: 40px;
  text-align: center;
}

.card-icon {
  margin-bottom: 24px;
  display: inline-block;
}

.about-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.about-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(10, 113, 192, 0.05), rgba(239, 111, 167, 0.05));
  border-radius: 20px;
}

.detail-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-box p {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   Brands Section
   ============================================ */
.brands {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 113, 192, 0.02) 100%);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.brand-card {
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
  transition: var(--transition);
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px var(--shadow-lg);
}

.brand-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.brand-card:hover .brand-image {
  transform: scale(1.05);
}

.brand-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 76, 139, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.brand-image-wrapper:hover .brand-overlay {
  opacity: 1;
}

.view-btn {
  background: white;
  color: var(--primary);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.view-btn:hover {
  transform: scale(1.05);
}

.brand-content {
  padding: 32px;
}

.brand-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.brand-category {
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(10, 113, 192, 0.1), rgba(239, 111, 167, 0.1));
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.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: rgba(10, 76, 139, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  color: white;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: linear-gradient(180deg, rgba(10, 113, 192, 0.02) 0%, var(--bg) 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  padding: 32px;
}

.info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--rose));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-icon svg {
  color: white;
}

.info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.info-card p {
  color: var(--text-light);
  font-size: 16px;
}

.info-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.info-card a:hover {
  color: var(--rose);
}

.contact-form {
  padding: 40px;
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(10, 113, 192, 0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 113, 192, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  opacity: 0.9;
  line-height: 1.8;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  opacity: 0.8;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.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;
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--rose);
  color: white;
}

/* ============================================
   Animations
   ============================================ */
[data-aos] {
  opacity: 0;
  transition: all 0.8s ease;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-stats,
  .hero-buttons {
    justify-content: center;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 72px);
    background: white;
    flex-direction: column;
    padding: 32px;
    transition: var(--transition);
    box-shadow: -4px 0 24px var(--shadow);
    gap: 16px;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-title {
    font-size: 40px;
  }

  .title-highlight {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .lang-toggle {
    top: 16px;
    left: 16px;
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .title-highlight {
    font-size: 28px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-details {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
