@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700;800&display=swap');

:root {
  /* Colors - Kerala Heritage Theme */
  --primary: #2E473B;
  /* Deep Moss Green */
  --primary-dark: #1f332a;
  --secondary: #FFD700;
  /* Golden Yellow */
  --secondary-hover: #e5c100;
  --terracotta: #C04000;
  /* Terracotta Red */

  --text-dark: #1f2937;
  --text-light: #4b5563;
  --white: #ffffff;
  --off-white: #F5F5DC;
  /* Cream/Kasavu */

  --light-green: #e9f5ec;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(46, 71, 59, 0.95), rgba(31, 51, 42, 0.9));
  --gradient-gold: linear-gradient(to right, #FFD700, #FDB931);

  /* Toast Notification */
  --toast-bg: #333;
  --toast-success: #2e7d32;
  --toast-error: #c62828;
  --toast-info: #0277bd;
  --toast-warning: #f57f17;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s ease;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Constants */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 50px;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  background-color: var(--secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
}

.nav-links a:hover {
  color: var(--secondary);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

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

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../assets/images/hero-kerala.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 90vh;
  /* Full screen feel */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  overflow: hidden;
  border-bottom: 10px solid #FFD700;
  /* Kasavu Golden Border */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Pattern Overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/bg-pattern-seamless.png');
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  display: none;
  /* Remove previous abstract shape */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.hero-content h1,
.hero-content h2 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-title {
  font-size: 4.5rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
  font-size: 3rem;
  color: var(--white);
}

.highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

/* Underline effect for highlight */
.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 215, 0, 0.3);
  z-index: -1;
  transform: rotate(-2deg);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}

/* Modern Button Styles */
.btn,
.btn-primary,
.btn-action,
.btn-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 50px;
  /* Pill shape for primary buttons */
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before,
.btn-primary::before,
.btn-action::before,
.btn-pay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.btn:hover,
.btn-primary:hover,
.btn-action:hover,
.btn-pay:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn:hover::before,
.btn-primary:hover::before,
.btn-action::before,
.btn-pay:hover::before {
  opacity: 1;
}

/* Variant: Dark (Primary Green) */
.btn-dark,
.btn-pay,
.btn-action.primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(46, 71, 59, 0.3);
}

.btn-dark:hover,
.btn-pay:hover,
.btn-action.primary:hover {
  background: var(--primary-dark);
  color: var(--secondary);
  box-shadow: 0 8px 15px rgba(46, 71, 59, 0.4);
}

/* Variant: Outline/Ghost */
.btn-outline,
.btn-invoice {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  box-shadow: none;
}

.btn-outline:hover,
.btn-invoice:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(46, 71, 59, 0.2);
}

/* Specific overrides */
.btn-invoice {
  padding: 6px 16px;
  font-size: 0.8rem;
  border-radius: 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlights Section */
.highlights {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
  z-index: 10;
  margin-top: -50px;
  /* Overlap with hero */
}

/* Container modification to allow overlap */
.highlights .container {
  position: relative;
}

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

.highlight-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-gold);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.icon-box {
  width: 70px;
  height: 70px;
  background-color: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: bold;
}

.highlight-card h3 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.highlight-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Footer */
footer {
  background-color: #0b1a0e;
  /* Very dark green/black */
  color: #9ca3af;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

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

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

/* Page Headers (for inner pages) */
.page-header {
  background-color: var(--primary);
  background-image: var(--gradient-hero);
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
  margin-bottom: 60px;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

/* Content Blocks (Inner pages) */
.content-block {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  /* Fix for mobile background attachment */
  .hero {
    background-attachment: scroll;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

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

  .highlights {
    margin-top: 0;
    padding: 60px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    background-color: var(--white);
    width: 80%;
    max-width: 300px;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease-in-out;
    z-index: 1001;
    /* Above everything */
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1002;
    /* Above sidebar */
  }

  /* Animate hamburger to X */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Supporters Section */
.supporters {
  padding: 60px 0;
  background-color: var(--off-white);
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.supporters h2 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: 40px;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
}

.supporters h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  margin: 10px auto 0;
  border-radius: 2px;
}

.supporters-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.supporter-logo {
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.supporter-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .supporters-logos {
    gap: 30px;
    flex-direction: column;
  }

  .supporter-logo {
    height: 60px;
  }
}

/* Video Gallery */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.video-item {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  background-color: #000;
}

.video-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--off-white);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 350px;
  /* Adjust based on content */
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  pointer-events: none;
  padding: 20px;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--secondary);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.control-dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.control-dot.active {
  background-color: var(--primary);
}

/* Event Styles */
.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.event-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.event-content {
  padding: 30px;
}

.event-date {
  display: inline-block;
  background-color: var(--light-green);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background-color: var(--terracotta);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--terracotta);
}

.btn:hover {
  background-color: transparent;
  color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Footer Styles */
footer {
  background-color: var(--terracotta);
  color: var(--white);
  padding: 60px 0 20px;
}

/* Pagination Styles */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination-btn {
  background-color: var(--white);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-family: var(--font-body);
}

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

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

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 20px 15px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
}

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

.gallery-placeholder {
  background-color: #f0f0f0;
  height: 200px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-weight: 500;
  position: relative;
}

.gallery-placeholder::after {
  content: 'Image Placeholder';
  color: #9ca3af;
  font-size: 0.9rem;
}


/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 30px;
  padding: 15px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.3s;
  user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-caption-text {
  color: #ccc;
  margin-top: 15px;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.lightbox-description-text {
  color: #a0a0a0;
  margin-top: 5px;
  font-size: 0.9rem;
  max-width: 80%;
  text-align: center;
}

.slideshow-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid white;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.slideshow-btn:hover,
.slideshow-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-dark);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--toast-bg);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  font-weight: 500;
  text-align: center;
  font-family: var(--font-body);
}

.toast-notification.show {
  opacity: 1;
}

.toast-notification.success {
  background-color: var(--toast-success);
}

.toast-notification.error {
  background-color: var(--toast-error);
}

.toast-notification.info {
  background-color: var(--toast-info);
}


/* Responsive Sidebar & Layout */
.menu-toggle {
  display: none;
  /* Hidden on desktop */
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0;
  margin-right: 15px;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Mobile Breakpoint */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .main-content {
    margin-left: 0;
    padding: 20px;
    width: 100%;
  }

  /* Open State */
  body.sidebar-open .sidebar {
    transform: translateX(0);
  }

  body.sidebar-open .sidebar-overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  body.sidebar-open {
    overflow: hidden;
    /* Prevent scrolling when menu is open */
  }

  /* Grid Adjustments */
  .charts-grid,
  .charts-row-2,
  .charts-row-3 {
    grid-template-columns: 1fr;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .header>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header>div:first-child {
    justify-content: flex-start;
  }
}