/*
    Copyright (c) 2025-2026 BytePenguin
    Licensed under the MIT License. See LICENSE in the project root for license information.
*/

/* styles.css */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

:root {
    /* Colour palette */
    --black: #000000;
    --green-dd: #043003;
    --green-d: #265b25;
    --green-m: #5c895b;
    --green-l: #739f85;
    --green-ll: #c4ebbf;
    --pale: #e6edbe;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--pale);
    color: var(--green-dd);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--green-m);
    display: flex;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.website-embed {
    border-radius: 10px;
    overflow: hidden;
}

.website-embed iframe {
    width: 100%; /* Adjust as needed */
    aspect-ratio: 9/16; /* Change to desired ratio */
    object-fit: cover; /* Ensures it fills the container */
    border: none;
}

.instagram-wrapper {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically if needed */
    height: auto; /* Let the height adjust based on content */
    padding-left: 10px;
    max-width: 80%; /* Prevent overflow */
    overflow: visible; /* Allow the content to overflow (remove clipping) */
    box-sizing: border-box; /* Ensure padding doesn't cause overflow */
    border-radius: 16px;
}

.instagram-media {
    width: 100%; /* Allow it to scale responsively */
    max-width: 100%; /* Prevent overflow */
    height: auto; /* Ensure the height adjusts automatically */
    aspect-ratio: 9/16; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure content fits without clipping */
    display: block; /* Ensure it behaves as a block element */
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-logos {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Site Header */
.site-header {
    margin-top: 100px;
    background: linear-gradient(135deg, var(--green-ll), var(--green-l));
    padding: 10rem;
    text-align: center;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    animation: fadeIn 1s ease-out;
}

.site-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.site-header p {
    font-size: 1.25rem;
    color: var(--white);
}

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

    .site-header h1 {
        font-size: 2rem;
    }

    .site-header p {
        font-size: 1rem;
    }
}


/* Carousel Section */
.carousel-section {
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    border-radius: 16px; /* Ensures rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Carousel Container */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 500px; /* Adjust height as needed */
    margin: auto;
    border-radius: 16px; /* Ensures the entire carousel is rounded */
}

/* Ensuring the images have rounded corners */
.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 16px; /* Ensures inner elements are rounded */
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
    position: relative;
}

/* Ensuring images have rounded corners */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px; /* Ensures images follow the rounded shape */
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(92, 137, 91, 0.8); /* Semi-transparent Green */
    color: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.carousel-control:hover {
    background-color: var(--green-d);
}

.carousel-control.prev {
    left: 1rem;
}

.carousel-control.next {
    right: 1rem;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    /* Adjust carousel height on mobile */
    .carousel {
        height: 300px; /* Adjust as needed */
    }

    /* Ensure the images do not stretch excessively */
    .carousel-item img {
        object-fit: fill; /* Cover ensures the image fills the container */
        width: 100%;
        aspect-ratio: 1/1;
        height: 100%;
    }
}

/* Content Sections */
.content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content-section {
    background-color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.8s forwards;
    height: auto; /* Allow the height to adjust based on content */
}

.content-section-winner {
    background-color: #edfff4;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.8s forwards;
    height: auto; /* Allow the height to adjust based on content */
}

.content-section:nth-child(odd) {
    animation-delay: 0.3s;
}

.section-title {
    background-color: var(--green-m);
    color: var(--white);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    max-width: 100%; /* Ensure it doesn’t overflow */
    white-space: normal; /* Allow text to wrap */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* .flexbox {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
} */

.flexbox p {
    flex: 1;
    min-width: 280px;
}

.flexbox img {
    flex: 1;
    min-width: 280px;
    max-width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* Mission List */
.mission-list {
    list-style-type: decimal;
    margin-left: 1.5rem;
    text-align: left;
}

.mission-list li {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--green-m);
    color: var(--white);
    text-align: center;
    padding: 2rem 1rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-icons img {
    width: 40px;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.footer-bottom {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    /* Hide the hamburger menu on larger screens */
    .hamburger {
        display: none;
    }

    /* Ensure the nav links are displayed as a horizontal row on larger screens */
    .nav-links {
        display: flex;
        max-height: none; /* Remove max-height constraint on larger screens */
        transition: none; /* No transition on desktop */
    }

    /* Keep the original text size on larger screens */
    .nav-links a {
        font-size: 16px; /* Larger font size for desktop */
    }
}

/* Activity Styles */
.activity-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.activity-heading,
.activity-dropdown {
    background-color: var(--green-l);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Image Grid */
.image-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 1rem;
    height: auto;
}

/* Ensure images have a consistent size and height */
.image-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover; /* Ensure the image covers the area without distortion */
    border-radius: 8px;
}
/* Two Columns */
.image-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.image-grid.two-columns img {
    height: 400px;
}

/* Three Columns */
.image-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.image-grid.three-columns img {
    height: 250px; /* Set a fixed height for consistency */
}
/* Partner Groups */
.partner-group {
    margin-bottom: 1.5rem;
}

.partner-header {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.partner-image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.partner-image-container img {
    max-height: 80px;
    max-width: 95%;
    object-fit: contain;
}

/* SGD SECTION */
.sdg-section {
display: flex;
    flex-wrap: wrap;
    gap: 1rem;
      border-radius: 15px;
  background-color: transparent; 
}

#sdg h2 {
   background-color: var(--green-m);
    color: var(--white);
    display: inline-block;
    border-radius: 8px;
    text-align: center;
    max-width: 1200px; /* Ensure it doesn’t overflow */
    white-space: normal; /* Allow text to wrap */
    box-sizing: border-box; /* Include padding in width calculation */
}

.sdg {
  display: inline-block;
  flex: 1 1 200px
  max-width: 1200px;
  margin: 1px;
  padding: 1rem;
    border-radius: 15px;
 background-color: #ffffff;
  overflow: hidden;
  vertical-align: top;
}


.sdg h4 {
  font-size: 1.5rem;
  color: #2b2b2b;
}

.sdg p {
  color: #555555;
}

.sdg img {
  width: auto;
  height: 150px;
  border-radius: 6px;
}

.sdg-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem; /* consistent spacing */
  justify-content: center; /* centers rows */
}


/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--green-m);
    display: flex;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    margin-right: 20px;
    margin-left: 20px;
}

.nav-logos {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

#lol {
    text-decoration: none;
}

/* Hamburger Button */
.hamburger {
    margin-top: -40px;
    width: 40px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

/* Bars */
.bar {
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Top Bar */
.bar:nth-child(1) {
    top: 8px;
}

/* Middle Bar */
.bar:nth-child(2) {
    top: 15px;
}

/* Bottom Bar */
.bar:nth-child(3) {
    top: 22px;
}

.hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 15px;
}

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

.hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 15px;
}

/* Hide hamburger on larger screens */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

/* MEDIA QUERIES – MOBILE */
@media (max-width: 768px) {
    html,
    body {
        width: 100vw;
        overflow-x: hidden;
        text-align: center;
    }

    .nav-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    p,
    h1,
    h2,
    h3 {
        text-align: center;
    }

    li {
        text-align: left;
    }

    /* Adjust .nav-row for flex layout */
    .nav-row {
        display: flex; /* Use flexbox for layout */
        justify-content: space-between; /* Align children to left and right */
        align-items: center; /* Vertically center the items */
        padding: 10px 40px; /* Adjust the padding (10px vertical, 20px horizontal) */
        max-height: 60px; /* Adjust the height of the navbar */
        width: 100%;
    }

    .nav-icons {
        align-self: start;
    }

    .hamburger-menu {
        align-self: end;
    }

    /* Nav logo alignment */
    .nav-logo {
        flex: 0 1 auto; /* Prevent the logo from stretching */
        max-height: 40px; /* Adjust logo size */
        margin: auto;
    }

    /* Hamburger button alignment */
    .hamburger {
        display: block; /* Ensure the hamburger is displayed */
        flex: 0 1 auto; /* Prevent the hamburger from stretching */
        order: 1; /* Ensure hamburger appears last in flex */
    }

    /* Mobile Menu */
    .nav-links.mobile {
        display: none;
        flex-direction: column;
        background-color: var(--green-m);
        width: 100%;
        text-align: center;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-out;
    }

    .nav-links.mobile a {
        font-size: 14pt;
        padding: 6px 0;
        text-align: center;

        border-radius: 32px; /* Add rounded corners */
        overflow: hidden;
    }

    /* Show Mobile Menu */
    .nav-links.mobile.show {
        display: flex;
        max-height: 300px;
        transition: max-height 0.5s ease-in;
    }

    /* Add some space above the header */
    .site-header {
        margin-top: 70px;
    }

    .activity-group {
        align-items: center;
        justify-content: center;
        justify-items: center;
        width: 100%;
    }

    .image-grid.two-columns,
    .image-grid.three-columns {
        grid-template-columns: 1fr;
    }

    .image-grid.two-columns img,
    .image-grid.three-columns img,
    .image-grid img {
        height: auto;
        min-height: unset;
        max-height: unset;
    }
}

/* Leaderboard section styling */
.leaderboard {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.top-winner {
    position: relative;
    background: #ffffff;
    box-shadow: 0 0 20px #a5f3b1, 0 0 40px #d1ffd5;
    animation: glowPulse 2s infinite ease-in-out;
    overflow: hidden;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px #a5f3b1, 0 0 20px #d1ffd5;
    }
    50% {
        box-shadow: 0 0 25px #a5f3b1, 0 0 50px #d1ffd5;
    }
    100% {
        box-shadow: 0 0 10px #a5f3b1, 0 0 20px #d1ffd5;
    }
}

.top-winner:hover {
    transform: scale(1.03);
}

.winner-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 1rem;
    background-color: white; /* white box just around the logo */
    display: inline-block;
}

.home-m {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background: black;
}

.home-m-items {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-m-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.home-m-item.active {
    opacity: 0.45;
    z-index: 2;
}

.header-overlay-text {
    position: absolute;  /* change from relative */
    top: 50%;
    left: 50%;            /* add this */
    transform: translate(-50%, -50%);  /* horizontal + vertical centering */
    z-index: 3;
    text-align: center;
    width: 100%;          /* ensure full width */
    padding: 0 1rem;      /* some side padding for small screens */
    box-sizing: border-box;
    color: white;
}

.header-overlay-text h1 {
    font-size: 3rem;
    margin: 0;
}

.header-overlay-text p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Get Involved Section */
.get-involved-section {
    text-align: center;
}

#volunteer {
    scroll-behavior: smooth;
    scroll-margin-top: 10px;
}

.get-involved-button {
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--green-d);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;

     line-height: normal;    
    min-height: 48px;        
    overflow: visible; 
}

.cta-button:hover {
    background-color: var(--green-dd);
}

.cta-icon {
    width: 24px;
    height: 24px;
   object-fit: contain;
    flex-shrink: 0;
     display: block;
}

.get-involved-section .image-grid img {
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 1rem;
}

impact{padding:80px 24px 96px;background:#f4efe6;position:relative;overflow:hidden;}
.impact::before{
  content:'IMPACT';position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  font-family:'Fraunces',serif;font-size:clamp(100px,20vw,210px);
  font-weight:900;color:rgba(45,106,79,.038);white-space:nowrap;
  pointer-events:none;user-select:none;letter-spacing:-2px;
}

/* ── GRID ── */
.stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  max-width:980px;
  margin:0 auto;
}

/* ── CARD BASE ── */
.stat-card{
  border-radius:28px;padding:36px 32px 32px;
  position:relative;overflow:hidden;
  opacity:0;transform:translateY(36px);
  transition:opacity .65s ease,transform .65s ease,box-shadow .3s ease;
}
.stat-card.visible{opacity:1;transform:translateY(0);}
.stat-card:hover{transform:translateY(-6px)!important;box-shadow:0 22px 64px rgba(0,0,0,.13);}

/* card colours */
.card-volunteers {background:#0d2b1a;transition-delay:.00s;}
.card-online     {background:#0a1e3d;transition-delay:.10s;}
.card-elephant   {background:#fff8f2;border:2px solid #f4c09a;transition-delay:.18s;}
.card-community  {background:#1a3c2a;transition-delay:.26s;}

/* ── CARD HEADER TEXT ── */
.card-eyebrow{font-size:9px;letter-spacing:3.5px;text-transform:uppercase;font-weight:800;display:block;margin-bottom:10px;}
.card-volunteers .card-eyebrow{color:#52b788;}
.card-online     .card-eyebrow{color:#74c0fc;}
.card-elephant   .card-eyebrow{color:#c05621;}
.card-community  .card-eyebrow{color:#95d5b2;}

.card-num{font-family:'Fraunces',serif;font-weight:900;font-size:clamp(2.4rem,4.5vw,3.6rem);line-height:1;display:block;margin-bottom:4px;}
.card-volunteers .card-num{color:#fff;}
.card-online     .card-num{color:#fff;}
.card-elephant   .card-num{color:#7b2d00;}
.card-community  .card-num{color:#fff;}

.card-num sup{font-size:.42em;vertical-align:super;}
.card-volunteers .card-num sup{color:#52b788;}
.card-online     .card-num sup{color:#74c0fc;}
.card-elephant   .card-num sup{color:#e76f51;}
.card-community  .card-num sup{color:#95d5b2;}

.card-desc{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;line-height:1.5;margin-bottom:22px;}
.card-volunteers .card-desc{color:rgba(255,255,255,.45);}
.card-online     .card-desc{color:rgba(255,255,255,.4);}
.card-elephant   .card-desc{color:rgba(192,86,33,.6);}
.card-community  .card-desc{color:rgba(255,255,255,.4);}

* ══════════════════════════════════════════
   CARD 1 — VOLUNTEERS: person icon grid
══════════════════════════════════════════ */
.people-grid{display:flex;flex-wrap:wrap;gap:4px;margin-top:4px;}
.person-fig{opacity:0;transform:scale(0) translateY(6px);transition:opacity .2s ease,transform .32s cubic-bezier(.34,1.56,.64,1);}
.person-fig.shown{opacity:1;transform:scale(1) translateY(0);}
.legend-note{margin-top:10px;font-size:9px;color:rgba(255,255,255,.25);font-weight:700;letter-spacing:1.2px;text-transform:uppercase;}

/* ══════════════════════════════════════════
   CARD 2 — ONLINE: ripple signal rings
══════════════════════════════════════════ */
.signal-wrap{
  position:relative;display:flex;align-items:center;justify-content:center;
  height:180px;margin-top:4px;
}
.signal-dot{
  width:18px;height:18px;border-radius:50%;
  background:#74c0fc;box-shadow:0 0 18px rgba(116,192,252,.6);
  position:relative;z-index:2;flex-shrink:0;
}
.ripple{
  position:absolute;border-radius:50%;
  border:1.5px solid rgba(116,192,252,.7);
  animation:rippleOut 2.8s ease-out infinite;
  opacity:0;
}
.ripple:nth-child(2){width:50px; height:50px; animation-delay:.0s;}
.ripple:nth-child(3){width:90px; height:90px; animation-delay:.4s;}
.ripple:nth-child(4){width:136px;height:136px;animation-delay:.8s;}
.ripple:nth-child(5){width:186px;height:186px;animation-delay:1.2s;}
.ripple:nth-child(6){width:240px;height:240px;animation-delay:1.6s;}
@keyframes rippleOut{
  0%  {opacity:.8;transform:scale(.5);}
  60% {opacity:.3;}
  100%{opacity:0;transform:scale(1);}
}

/* Phone icon in centre */
.signal-phone{
  position:absolute;z-index:3;
  display:flex;flex-direction:column;align-items:center;gap:6px;
}
.sp-screen{
  width:40px;height:60px;border-radius:8px;
  background:rgba(255,255,255,.1);border:2px solid rgba(116,192,252,.5);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;
  padding:6px;
}
.sp-bar{height:3px;border-radius:2px;background:rgba(116,192,252,.6);}
.sp-bar:nth-child(1){width:70%;}
.sp-bar:nth-child(2){width:90%;}
.sp-bar:nth-child(3){width:60%;}

/* Floating person icons around ripple */
.fp-icon{
  position:absolute;opacity:0;
  animation:fpFloat 3.5s ease-in-out infinite;
}
@keyframes fpFloat{
  0%,100%{transform:translateY(0);opacity:.9;}
  50%{transform:translateY(-8px);opacity:1;}
}
.fp-icon:nth-child(7) {top:10px; left:12px; animation-delay:.2s;}
.fp-icon:nth-child(8) {top:10px; right:16px;animation-delay:.6s;}
.fp-icon:nth-child(9) {bottom:14px;left:20px;animation-delay:1.0s;}
.fp-icon:nth-child(10){bottom:14px;right:14px;animation-delay:1.4s;}
.fp-icon:nth-child(11){top:50%;left:4px; transform:translateY(-50%);animation-delay:1.8s;}
.fp-icon:nth-child(12){top:50%;right:4px;transform:translateY(-50%);animation-delay:.9s;}
.fp-icon.show{animation-play-state:running;}


@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 0;
    }

    .nav-row {
        padding: 0 20px; /* Remove vertical padding */
        max-height: 50px;
    }

    .nav-logo {
        max-height: 36px; /* Reduce logo size */
    }
.square-pic {
  width: 10px;
  aspect-ratio: 1 / 1;
     object-fit: cover;
}
    .hamburger {
        width: 32px;
        height: 32px;
    }

    .bar {
        height: 4px;
    }
}

img[src*="insta.jpg"] {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

