/* ========================================
   CSS VARIABLES & GLOBAL STYLES
   ======================================== */
:root {
  --primary: #facc15;        /* Main yellow color */
  --primary-dark: #eab308;   /* Darker yellow */
  --secondary: #991b1b;      /* Red color */
  --secondary-dark: #7f1d1d; /* Darker red */
  --dark: #000;              /* Black */
  --light: #fff;             /* White */
  --gray-light: #e5e7eb;     /* Light gray */
  --gray: #9ca3af;           /* Medium gray */
  --border-light: #e5e5e5;   /* Light border */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  min-height: 100vh;
  color: var(--light);
  line-height: 1.6;
   background-color: var(--dark);
  background-image: url('facade.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ========================================
   IMAGE DIVIDER SECTION
   ======================================== */
   
footer::before {
  content: "";
  display: block;
  height: 18px;
  background-image: url("header.png");
  background-repeat: repeat-x;
  background-size: auto 18px;
  margin-top: 10px;
}

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

.header {
  background: rgba(0, 0, 0, 0.85);
  background-size: cover;
  background-position: center;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo-container {
  display: flex;
  align-items: center;
  order: 2;
}

.logo-box {
  background: url("logo.png") no-repeat;
  background-size: contain;
  width: 8rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 0.5rem;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 1;
}

.nav-link {
  background: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
  border: 1px solid var(--secondary);
  border-radius: 8px;
  color: var(--light);
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(0, 0, 0, 0.8);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(0, 0, 0, 0.8);
}

.logo-container h2 {
  color: var(--light);
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* ========================================
   MAIN CONTENT AREA
   ======================================== */

.main-content {
  background-color: transparent;
  color: var(--light);
  min-height: calc(100vh - 200px);
}

.container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.section {
  margin-bottom: 2.5rem;
}

.section h1, 
.section h2,
.section h3 {
  font-weight: bold;
  margin-bottom: 1.25rem;
  color: var(--primary);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.section h1 {
  font-size: 2.25rem;
}

.section h2 {
  font-size: 1.75rem;
}

.section h3 {
  font-size: 1.35rem;
  margin-top: 1.5rem;
}

.text-container {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.text-content {
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.text-content p {
  margin-bottom: 1rem;
}

/* ========================================
   BUTTON STYLES
   ======================================== */

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.btn-primary:hover {
  background-color: #f3f4f6;
}

.btn-outline {
  background-color: transparent;
  color: var(--light);
  border: 1px solid var(--gray);
}

.btn-outline:hover {
  background-color: var(--light);
  color: var(--dark);
}

.btn-explore {
  background-color: var(--secondary);
  color: var(--light);
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.btn-explore:hover {
  background-color: var(--secondary-dark);
}

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

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

.btn-booking {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--light);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-booking:hover {
  background-color: var(--secondary-dark);
}

.submit-btn {
  background: var(--primary);
  color: var(--dark);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover {
  background: var(--primary-dark);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========================================
   ABOUT US PHOTOS
   ======================================== */
   
  .aboutus-image {
  width: 50%;
  height: 20rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  border: 2px solid var(--secondary);
}

/* ========================================
   PROJECTS GRID
   ======================================== */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.project-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  border: 2px solid var(--primary);
}

.project-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--primary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.project-description {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.project-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-current {
  background-color: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.status-completed {
  background-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.status-upcoming {
  background-color: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* ========================================
   OFFICERS GRID
   ======================================== */

.officers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.officer-card {
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.officer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}

.officer-image {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  border: 2px solid var(--primary);
}

.officer-name {
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.officer-title {
  font-size: 1.1rem;
  opacity: 0.9;
  color: var(--gray-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* ========================================
   FACILITIES GRID
   ======================================== */

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.facility-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.facility-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 2px solid var(--primary);
}

.facility-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--primary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.facility-description {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.facility-features {
  list-style: none;
  padding: 0;
}

.facility-features li {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  opacity: 0.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.facility-features li:before {
  content: "• ";
  color: var(--primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* ========================================
   IMAGE GALLERY SECTION - CAROUSEL
   ======================================== */

.gallery-section {
  margin-top: 3rem;
}

.gallery-carousel {
  position: relative;
  margin: 1.5rem 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid var(--primary);
  height: 500px;
}

.landscape-carousel {
      height: 500px;
}

.portrait-carousel {
      height: 600px;
      max-width: 450px;
      margin-left: auto;
      margin-right: auto;
}

.carousel-slide {
      display: none;
      height: 100%;
      width: 100%;
      position: relative;
}

.carousel-slide.active {
      display: block;
}

.carousel-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
}

.portrait-carousel .carousel-image {
      object-fit: contain;
      background-color: #000;
}

.carousel-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      color: var(--light);
      padding: 1.5rem;
      font-size: 1rem;
      font-weight: 500;
}

.carousel-controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 1rem;
      z-index: 5;
}

.carousel-btn {
      background: rgba(0, 0, 0, 0.5);
      color: var(--light);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s ease;
}

.carousel-btn:hover {
      background: rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
      position: absolute;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
      z-index: 5;
}

.indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: background 0.3s ease;
}

.indicator.active {
      background: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--primary);
  transform: scale(1.05);
}

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

/* ========================================
   CONTACT FORM & INFO
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background: var(--primary);
  color: var(--dark);
  padding: 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
}

.contact-details h3 {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.contact-details p {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.contact-details a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.contact-details a:hover {
  color: var(--primary);
}

.contact-form {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

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

.form-group label {
  display: block;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: var(--light);
  font-size: 1rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.7);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

/* ========================================
   MAP SECTION
   ======================================== */

.map-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.map-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.map-link:hover {
  text-decoration: underline;
}

.map-container {
  margin-top: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
  cursor: pointer;
}

/* ========================================
   SUCCESS MESSAGE
   ======================================== */

.success-message {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid #22c55e;
  color: #22c55e;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: none;
}

.success-message.show {
  display: block;
}

/* ========================================
   MISSION LIST
   ======================================== */

.mission-list {
  list-style: none;
  padding-left: 0;
}

.mission-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.mission-list li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

footer {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.85);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #d1d5db;
  padding-top: 1.5rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-sitemap {
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--secondary);
}

.footer-sitemap h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.sitemap-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

.sitemap-links a:hover {
  color: var(--primary);
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 15;
  padding: 5rem 2rem 2rem;
  gap: 1rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.2rem;
  padding: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@media (max-width: 768px) {
  .header {
    padding: 0.75rem 1rem;
  }
  
  .navigation {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .logo-container h2 {
    font-size: 1.1rem;
  }
  
  .logo-box {
    width: 6rem;
    height: 3rem;
  }
  
  .section h1 {
    font-size: 1.75rem;
  }
  
  .section h2 {
    font-size: 1.5rem;
  }
  
  .text-content {
    font-size: 1rem;
  }
  
  .projects-grid,
  .officers-grid,
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .gallery-carousel {
    height: 300px;
  }
  
  .portrait-carousel {
    height: 500px;
    max-width: 100%;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .sitemap-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .carousel-caption {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .contact-grid {
    direction: ltr !important;
  }
  
  .map-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (min-width: 768px) {
  .header {
    padding: 1rem 3rem;
  }

  .container {
    padding: 2.5rem;
  }

  footer {
    padding: 0 3rem 1.5rem;
  }

  .footer-links {
    margin-top: 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    
    /* Form on left, info on right for better user flow */
    direction: rtl;
  }
  
  .contact-grid > * {
    direction: ltr;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 900px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* ========================================
   INDEX PAGE SPECIFIC STYLES
   ======================================== */
.index-container {
    min-height: 100vh;
    background-image: url('facade.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
}

.index-container .main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 0 1.5rem;
    background: transparent;
}

.hero-content {
    max-width: 64rem;
    margin-top: -2rem;
    text-align: center;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-wrap: balance;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    max-width: 32rem;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}