/* src/css/style.css */

/* --- Variables & Basic Reset --- */
:root {
    --color-navy: #002347; /* Deeper navy */
    --color-white: #ffffff;
    --color-gold: #c5a667; /* Muted gold/tan */
    --color-light-bg: #f8f9fa; /* Light grey background */
    --color-text: #333333;
    --color-text-light: #555555;
    --font-serif: serif; /* Placeholder - Use 'Times New Roman', Georgia, or Google Font */
    --font-sans: sans-serif; /* Placeholder - Use Arial, Helvetica, Verdana, or Google Font */
    --transition-speed: 0.3s;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevents bottom space */
  }
  
  a {
    color: var(--color-navy);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
  }
  
  a:hover {
    color: var(--color-gold);
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .padded-section {
    padding: 60px 0;
  }
  
  .bg-light {
      background-color: var(--color-light-bg);
  }
  
  .text-center {
    text-align: center;
  }
  
  .section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--color-navy);
    position: relative;
    padding-bottom: 10px;
  }
  
  /* Simple underline effect for titles */
  .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--color-gold);
  }
  
  /* --- Header --- */
  #main-header {
      background-color: var(--color-white);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      position: sticky; /* Make header sticky */
      top: 0;
      z-index: 1000;
  }
  
  .header-top {
      background-color: var(--color-navy);
      color: var(--color-white);
      padding: 5px 0;
      font-size: 0.8rem;
  }
  
  .header-top .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .header-top ul {
      display: flex;
      gap: 15px; /* Space between items */
  }
  
  .header-top a {
      color: var(--color-white);
      opacity: 0.8;
  }
  .header-top a:hover {
      opacity: 1;
      color: var(--color-gold); /* Keep hover consistent */
  }
  .social-icons i {
      font-size: 1rem; /* Slightly larger icons */
  }
  
  .header-bottom {
      padding: 15px 0;
  }
  .header-bottom .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .logo-container {
      /* Adjust flex basis or width as needed */
  }

  .logo-text {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: bold;
      color: var(--color-navy);
      line-height: 1;
  }
  .logo-subtext {
      display: block;
      font-size: 0.7rem;
      color: var(--color-text-light);
      text-transform: uppercase;
      letter-spacing: 1px;
  }
  .logo-text:hover {
      color: var(--color-navy); /* Prevent color change on logo */
  }

  /* --- Header Logo Styling --- */
.logo-container-link {
  text-decoration: none; /* Remove underline from link */
  display: inline-block; /* Ensure it behaves well */
}

.logo-container {
  display: flex; /* Align logo image and text block side-by-side */
  align-items: center; /* Vertically center items */
  gap: 10px; /* Space between logo image and text */
}

.nav-logo-img {
  height: 50px; /* Adjust height as needed */
  width: auto; /* Maintain aspect ratio */
  display: block; /* Good practice for images */
}

/* Adjust text positioning if needed */
.logo-container > div {
  line-height: 1.1; /* Adjust line height of text block */
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-navy);
  line-height: 1; /* Already here, might need slight adjustment */
  display: block; /* Ensure it takes block space */
}

.logo-subtext {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Prevent color change on hover for logo area */
.logo-container-link:hover .logo-text,
.logo-container-link:hover .logo-subtext {
  color: var(--color-navy);
}
  
  
  #main-nav ul {
      display: flex;
      gap: 25px;
  }
  
  #main-nav a {
      font-family: var(--font-sans);
      font-weight: bold;
      color: var(--color-navy);
      text-transform: uppercase;
      font-size: 0.9rem;
      padding-bottom: 5px;
      position: relative;
  }
  /* Underline hover effect */
  #main-nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--color-gold);
      transition: width var(--transition-speed) ease;
  }
  #main-nav a:hover::after {
      width: 100%;
  }
  #main-nav a:hover {
      color: var(--color-navy); /* Keep text color same, rely on underline */
  }
  
  .search-icon a {
      font-size: 1.2rem;
  }
  
  #mobile-menu-toggle { /* Style for mobile nav button */
      display: none; /* Hide on desktop */
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--color-navy);
      cursor: pointer;
  }
  
  
  /* --- Hero Section --- */
  #hero {
    /* Height still defines the section's visible area */
    min-height: 80vh;
    /* Crucial: Create positioning context and clip overflow */
    position: relative;
    overflow: hidden;
    /* Remove all background-* properties */
    /* background-image: ... (REMOVE) */
    /* background-attachment: ... (REMOVE) */
    /* background-position: ... (REMOVE) */
    /* background-repeat: ... (REMOVE) */
    /* background-size: ... (REMOVE) */

    /* Keep flex alignment for content */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Push content container to the right */
    color: var(--color-white);
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 35, 71, 0.4); Navy overlay */
    z-index: 1; /* Ensure overlay is above image (z-index: 0) */
  }
  
  .hero-content {
    position: relative; /* Needs position to respect z-index */
    text-align: center; /* Center title text if it wraps */
    z-index: 2; /* Ensure content is above overlay */
    padding-left: 40%; /* Adjust % or use px/rem/vw for desired spacing from edge */
    padding-top: 15%;
    /* Remove width if previously added: width: 90%; (REMOVE) */
  }
  
  .hero-title {
    font-family: "Playfair Display", var(--font-serif); /* Use Playfair, fallback to existing serif */
    font-size: 4rem; /* Keep or adjust as needed */
    font-weight: 700; /* Example: Make it bold (optional) */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero-bg-image {
    /* Position absolutely within #hero */
    position: absolute;
    top: 0;
    left: 0;
    /* Cover the container width */
    width: 100%;
    /* Ensure it's tall enough, cover ensures aspect ratio is maintained while filling */
    min-height: 100%;
    object-fit: cover; /* Like background-size: cover */
    /* Send it behind the overlay and content */
    z-index: 0;
    /* Prevent image picking up flexbox alignment */
    align-self: auto;
    justify-self: auto;
    /* Crucial: Will be controlled by JS */
    transform: translateY(0px);
    /* Optional: Add a transition for slightly smoother initial load/resize (parallax itself is direct transform) */
    /* transition: transform 0.1s linear; */
  }
  
  /* --- Intro Section --- */
  #intro h2 {
      font-family: var(--font-serif);
      font-size: 2rem;
      color: var(--color-navy);
      margin-bottom: 20px;
  }
  #intro p {
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: var(--color-text-light);
  }
  
  /* --- Buttons --- */
  .btn {
      display: inline-block;
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
  }
  
  .btn-primary {
      background-color: var(--color-gold);
      color: var(--color-white);
  }
  .btn-primary:hover {
      background-color: #a88d52; /* Darker gold */
      color: var(--color-white);
      transform: translateY(-2px);
  }
  
  .btn-secondary {
      background-color: var(--color-navy);
      color: var(--color-white);
  }
  .btn-secondary:hover {
      background-color: #003366; /* Slightly different navy on hover */
      color: var(--color-white);
      transform: translateY(-2px);
  }
  
  
  /* --- Grid & Card Styles --- */
  .grid-section.no-padding {
      padding: 0; /* Remove padding for edge-to-edge grids */
  }
  
  .grid-container {
    display: grid;
    gap: 30px; /* Gap between grid items */
  }
  
  .grid-4-cols { grid-template-columns: repeat(4, 1fr); }
  .grid-3-cols { grid-template-columns: repeat(3, 1fr); }
  
  .card {
    background-color: var(--color-white);
    overflow: hidden; /* Ensure overlays/images stay contained */
    position: relative;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  }
  
  .link-card {
      display: block; /* Make the whole card clickable */
      color: var(--color-white); /* Text color for overlays */
  }
  .link-card:hover {
      transform: scale(1.03); /* Slight zoom effect */
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
      z-index: 5; /* Bring hovered card to front */
  }
  
  .card img {
    width: 100%;
    height: 100%; /* Make image fill container */
    object-fit: cover; /* Cover the area, might crop */
    transition: transform var(--transition-speed) ease;
  }
  .link-card:hover img {
      transform: scale(1.1); /* Slightly zoom image inside card on hover */
  }
  
  .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 35, 71, 0.8), rgba(0, 35, 71, 0)); /* Gradient overlay */
    padding: 40px 20px 20px 20px;
    text-align: center;
    transition: background-color var(--transition-speed) ease;
  }
  .link-card:hover .card-overlay {
     background: linear-gradient(to top, rgba(0, 35, 71, 0.9), rgba(0, 35, 71, 0.1));
  }
  
  .card-overlay h3, .card-overlay h4 {
    font-family: var(--font-serif);
    margin: 0;
    font-size: 1.5rem;
  }
  
  /* Specific adjustments for key areas vs events if needed */
  #key-areas .card { min-height: 300px; /* Example height */}
  #upcoming-events .card { min-height: 250px; /* Example height */}
  
  
  /* News Card specific styles */
  .news-card {
      background-color: var(--color-white);
      border: 1px solid #eee;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  .news-card img {
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
  }
  .news-card .card-content {
      padding: 20px;
  }
  .news-card h3 {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      margin-bottom: 10px;
  }
  .news-card h3 a {
      color: var(--color-navy);
  }
  .news-card h3 a:hover {
      color: var(--color-gold);
  }
  .news-card .news-date {
      font-size: 0.8rem;
      color: var(--color-text-light);
  }
  .news-card:hover {
      transform: translateY(-5px); /* Lift effect */
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  .more-link {
      margin-top: 40px;
  }
  
  /* --- Footer --- */
  #main-footer {
    background-color: var(--color-navy);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 50px;
    font-size: 0.9rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-column h4 {
    font-family: var(--font-serif);
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
  }
  /* Underline for footer titles */
  .footer-column h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background-color: var(--color-gold);
  }
  
  .footer-column p {
    margin-bottom: 10px;
  }
  .footer-column a {
    color: rgba(255, 255, 255, 0.8);
  }
  .footer-column a:hover {
    color: var(--color-white);
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-search {
      display: flex;
      margin-bottom: 20px;
  }
  .footer-search input[type="search"] {
      flex-grow: 1;
      padding: 8px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--color-white);
      border-radius: 3px 0 0 3px;
      outline: none;
  }
  .footer-search input[type="search"]::placeholder {
      color: rgba(255, 255, 255, 0.5);
  }
  .footer-search button {
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background-color: var(--color-gold);
      color: var(--color-white);
      border-left: none;
      cursor: pointer;
      border-radius: 0 3px 3px 0;
      transition: background-color var(--transition-speed) ease;
  }
  .footer-search button:hover {
      background-color: #a88d52; /* Darker gold */
  }
  .legals-heading {
      margin-top: 25px; /* Space above legal links */
  }
  
  .footer-bottom-bar {
    background-color: rgba(0, 0, 0, 0.2); /* Slightly darker bar */
    padding: 15px 0;
    margin-top: 30px;
    font-size: 0.8rem;
  }
  
  .footer-bottom-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom-bar .social-icons a {
      color: rgba(255, 255, 255, 0.8);
  }
  .footer-bottom-bar .social-icons a:hover {
      color: var(--color-white);
  }
  
  
  /* --- Responsive Design --- */
  
  /* Medium screens (Tablets) */
  @media (max-width: 992px) {
    .grid-4-cols { grid-template-columns: repeat(2, 1fr); }
    .grid-3-cols { grid-template-columns: repeat(2, 1fr); } /* Adjust news/events */
  
    .news-card:last-child { /* Avoid single card on last row if odd number */
        grid-column: span 2;
    }
      .event-card:last-child {
          grid-column: span 2;
      }
  
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2rem; }
  }
  
  /* Small screens (Mobile) */
  @media (max-width: 768px) {
    #main-nav ul#primary-navigation {
      display: none; /* Hide main nav links */
      /* JS needed to show/hide this on toggle */
      position: absolute;
      top: 100%; /* Position below header bottom */
      left: 0;
      width: 100%;
      background-color: var(--color-white);
      flex-direction: column;
      padding: 10px 0;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
     #main-nav ul#primary-navigation.active { /* Class added by JS */
        display: flex;
    }
  
    #main-nav li {
      text-align: center;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }
     #main-nav li:last-child {
        border-bottom: none;
     }
     #main-nav a::after { /* Disable underline effect on mobile nav */
         display: none;
     }
  
    #mobile-menu-toggle {
      display: block; /* Show mobile menu button */
    }
  
    .header-bottom .container {
        position: relative; /* Needed for absolute positioning of mobile nav */
    }
    .search-icon {
        margin-left: auto; /* Push search icon right */
        padding-left: 15px;
    }
  
    .header-top .container { flex-direction: column; gap: 5px;} /* Stack utility nav */
  
    .hero-title { font-size: 2.5rem; }
    #hero {
        /* Height: Fill viewport height initially */
        min-height: 100vh;
        /* Image */
        background-image: url('/img/hero-placeholder.jpg'); /* Replace with your actual hero image */
        /* Parallax Effect: Fixed background */
        background-attachment: fixed;
        /* Ensure background covers and is centered */
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        /* Positioning for content */
        position: relative; /* Needed for overlay */
        display: flex;
        align-items: center; /* Vertically center content */
        justify-content: center; /* Horizontally center content */
        color: var(--color-white);
        /* IMPORTANT: Add top padding equal to header height if content overlaps header */
        /* padding-top: 80px; */ /* Adjust this value if needed, depends on final header height */
      }
  
    .grid-4-cols, .grid-3-cols { grid-template-columns: 1fr; } /* Stack all grid items */
     .news-card:last-child, .event-card:last-child {
          grid-column: auto; /* Reset span on mobile */
      }
  
     .footer-grid { grid-template-columns: 1fr; } /* Stack footer columns */
     .footer-bottom-bar .container { flex-direction: column; gap: 10px; text-align: center;}
  }

  /* --- Upcoming Events Section Styling --- */
#upcoming-events {
  background-color: #161F2C; /* New dark blue background */
  color: var(--color-white); /* Default text color */
}

/* Adjust title color and underline */
#upcoming-events .section-title {
  color: var(--color-white);
}
#upcoming-events .section-title::after {
  background-color: var(--color-gold); /* Or var(--color-white) if preferred */
}

/* Desktop layout with logo */
#upcoming-events .events-container {
  display: flex;
  align-items: flex-start; /* Align items to the top */
  gap: 40px; /* Space between logo and content */
}

#upcoming-events .section-logo-container {
  flex: 0 0 180px; /* Logo container fixed width, adjust as needed */
  /* Or use max-width: flex: 0 1 180px; max-width: 180px; */
  padding-top: 14%; /* Add some space above the logo */
}
#upcoming-events .section-logo-container img {
  width: 100%;
  height: auto;
}

#upcoming-events .events-content {
  flex-grow: 1; /* Content takes remaining space */
}

/* Style cards within this section */
#upcoming-events .card {
  background-color: var(--color-white); /* White card background */
  border: 1px solid #4a5c70; /* Optional subtle border */
  color: var(--color-white); /* Default text color inside card */
}

/* Adjust overlay text color for contrast on white card */
#upcoming-events .card-overlay h4 {
   color: var(--color-white); /* Dark text on overlay */
   /* Optional: Make overlay less strong if needed */
   /* background: linear-gradient(to top, rgba(0, 35, 71, 0.6), rgba(0, 35, 71, 0)); */
}

/* Ensure button has good contrast */
#upcoming-events .btn-primary {
  /* Already styled, should contrast well */
}

/* --- Responsive adjustments for Events Section --- */
@media (max-width: 992px) { /* Tablet breakpoint */
  #upcoming-events .events-container {
      gap: 30px; /* Reduce gap */
  }
   #upcoming-events .section-logo-container {
      flex-basis: 150px; /* Make logo slightly smaller */
  }
}

@media (max-width: 768px) { /* Mobile breakpoint */
  #upcoming-events .events-container {
      display: block; /* Stack elements */
  }
  #upcoming-events .section-logo-container {
      display: none; /* Hide the logo entirely on mobile */
  }
   /* Content takes full width automatically */
  #upcoming-events .events-content {
     /* No specific changes needed as display: block is inherited */
  }
  #upcoming-events .grid-3-cols {
      grid-template-columns: 1fr; /* Stack event cards */
  }
   #upcoming-events .event-card:last-child {
      grid-column: auto; /* Reset any spanning from desktop */
  }

  /* Inside @media (max-width: 768px) { ... } */

  /* --- Mobile Hero Overrides --- */
  #hero {
    min-height: 60vh; /* Significantly reduce height (adjust as needed: 50vh, 70vh?) */
    /* Apply the standard background image method */
    background-image: url('/img/hero-mobile.jpg'); /* Use the mobile image */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* IMPORTANT: Ensure normal scroll behavior */
    /* Ensure flex alignment still works */
    display: flex;
    align-items: center;
    justify-content: center; /* Re-center content if you changed it for desktop */
  }

  /* Hide the parallax image element */
  .hero-bg-image {
    display: none;
  }

  /* Hide the overlay IF the mobile image has enough contrast */
  /* OR adjust overlay opacity for mobile */
  .hero-overlay {
    /* Option 1: Remove overlay if mobile image is dark enough */
    /* display: none; */

    /* Option 2: Reduce overlay strength */
    /* background-color: rgba(0, 35, 71, 0.3); Lighter overlay */
  }

  /* Adjust title size and position for smaller screen */
  .hero-content {
    padding-right: 5%; /* Reduce padding from edge if needed */
    /* Re-center text if needed */
    text-align: center;
    /* Reset horizontal alignment if needed */
    width: auto; /* Ensure it doesn't try to take full width */
    margin: 0 auto; /* Help centering if text-align isn't enough */
  }

  .hero-title {
    font-size: 2.8rem; /* Smaller font size for mobile title */
  }
  /* --- End Mobile Hero Overrides --- */
}

/* --- About Us Page Specific Styles --- */

/* Page Header */
#page-header {
  border-bottom: 1px solid #eee;
}
.page-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-navy);
  margin: 0;
}

/* Inception Story Section */
.inception-container {
  display: flex;
  align-items: center; /* Vertically align text and image */
  gap: 40px; /* Space between text and image */
}

.inception-text {
  flex: 1 1 60%; /* Allow text to take more space */
  padding-right: 20px; /* Add some space to the right of text */
}

.inception-image {
  flex: 1 1 40%; /* Allow image to take less space */
  max-width: 450px; /* Max width for the image */
}

.inception-image img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Slightly rounded corners */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Adjust section title alignment */
.section-title.text-left {
  text-align: left;
}
/* Remove centered underline for left-aligned titles */
.section-title.text-left::after {
  display: none;
}


/* Team Section */
.grid-5-cols { grid-template-columns: repeat(5, 1fr); } /* Define 5 column grid */

.team-card {
  background-color: var(--color-white);
  padding: 25px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.team-image {
  width: 120px; /* Fixed image size */
  height: 120px;
  border-radius: 50%; /* Circular images */
  object-fit: cover; /* Ensure image covers circle */
  margin: 0 auto 15px auto; /* Center image and add space below */
  border: 3px solid var(--color-light-bg); /* Optional subtle border */
}

.team-name {
  font-family: var(--font-sans); /* Or --font-serif if preferred */
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-navy);
  margin-bottom: 5px;
}

.team-title {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* --- About Page Responsive --- */

@media (max-width: 992px) { /* Tablet */
  .grid-5-cols {
      grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
  }
}

@media (max-width: 768px) { /* Mobile */
  .page-title {
      font-size: 2.5rem;
  }
  .inception-container {
      flex-direction: column; /* Stack text and image */
      gap: 30px;
  }
  .inception-text {
      padding-right: 0; /* Remove side padding when stacked */
      order: 2; /* Put text below image */
  }
  .inception-image {
      order: 1; /* Put image above text */
      max-width: 100%; /* Allow image full width */
  }
  .section-title.text-left { /* Center title on mobile if stacked */
    text-align: center;
  }
  .grid-5-cols {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  }
}

@media (max-width: 480px) { /* Smaller Mobile */
   .grid-5-cols {
      grid-template-columns: 1fr; /* 1 column on very small screens */
  }
}