/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Root Variables for Scalability */
:root {
    --red: #b22222;
    --blue: #000080;
    --white: #fff;
    --gold: #FFD700;
    --dark-gold: #DAA520;
    --shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    --font-size-base: 0.95rem;
    --font-size-large: 1.25rem;
    --font-size-xl: 1.75rem;
}

/* Mobile-First Body Styling */
body {
    background: url('../img/us_flag.webp') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    line-height: 1.5;
    font-size: var(--font-size-base);
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

#falling-hats {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.hat {
    position: absolute;
    top: -100px;
    animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) rotate(20deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(40deg);
        opacity: 1;
    }
}

/* Header */
header {
    background: linear-gradient(45deg, var(--gold) 30%, var(--dark-gold) 70%);
    color: var(--white);
    text-align: center;
    padding: clamp(1rem, 4vw, 1.5rem);
    border-bottom: 3px solid var(--dark-gold);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 95%;
    margin: 0 auto;
}

header h1 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.3);
}

header p {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: clamp(0.85rem, 3vw, 1.1rem);
    margin-top: 0.4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(255, 255, 255, 0.2);
}

/* Navigation Bar */
.navbar {
    background-color: #000;
    text-align: center;
    padding: clamp(0.5rem, 2vw, 0.75rem);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0; /* Prevent text node gaps */
}

.merch-btn {
    display: block; /* Stack vertically in menu */
    background: linear-gradient(45deg, var(--gold) 30%, var(--dark-gold) 70%);
    color: var(--white);
    padding: clamp(0.7rem, 2.5vw, 0.9rem) clamp(1.2rem, 4vw, 1.8rem);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    border-radius: 6px;
    border: 2px solid var(--dark-gold);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    touch-action: manipulation;
    animation: pulse 2s infinite ease-in-out;
    position: relative;
    overflow: hidden;
    margin: 0.5rem 0;
}

.merch-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%; /* Reduced to prevent overflow */
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 2s infinite linear;
}

.merch-btn:hover,
.merch-btn:focus {
    animation: none;
    transform: scale(1.05);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(255, 215, 0, 0.5);
    outline: 2px solid var(--white);
}

.merch-btn:hover::after,
.merch-btn:focus::after {
    animation: none;
}

/* Hamburger Menu */
.hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: clamp(0.5rem, 2vw, 0.75rem);
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--gold);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px; /* Smooth edges to prevent artifacts */
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-menu.active {
    display: flex;
}

/* Hero Section */
.hero {
    color: var(--gold);
    text-align: center;
    padding: clamp(2rem, 6vw, 3rem) 1rem;
    position: relative;
}

.hero-content {
    background-color: black;
    color: var(--gold);
    max-width: 90%;
    margin: 0 auto;
    padding: clamp(0.8rem, 2.5vw, 1.2rem);
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
    border: 3px solid var(--gold); /* Gold wire-like border */
    box-shadow: inset 0 0 8px rgba(218, 165, 32, 0.5), 0 0 10px rgba(255, 215, 0, 0.3); /* Inner and outer glow for metallic effect */
}

.hero h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px var(--dark-gold), 0 0 8px var(--dark-gold);
    color: var(--gold);
}

.hero p {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(0.75rem, 4vw, 1.15rem);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(255, 255, 255, 0.2);
    color: var(--gold);
}

.member-counter {
    margin: clamp(0.5rem, 2vw, 0.75rem) auto;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    color: var(--gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.member-counter span#member-count {
    font-weight: bold;
    color: var(--white);
    animation: glow 2s infinite ease-in-out;
}

@keyframes glow {
    0% { text-shadow: 0 0 5px var(--gold), 0 0 10px var(--gold); }
    50% { text-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold); }
    100% { text-shadow: 0 0 5px var(--gold), 0 0 10px var(--gold); }
}

.join-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--gold) 30%, var(--dark-gold) 70%);
    color: var(--white);
    padding: clamp(0.7rem, 2.5vw, 0.9rem) clamp(1.2rem, 4vw, 1.8rem);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    border-radius: 6px;
    border: 2px solid var(--dark-gold);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    touch-action: manipulation;
    animation: pulse 2s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

.join-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 2s infinite linear;
}

.join-btn:hover,
.join-btn:focus {
    animation: none;
    transform: scale(1.05);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(255, 215, 0, 0.5);
    outline: 2px solid var(--white);
}

.join-btn:hover::after,
.join-btn:focus::after {
    animation: none;
}

.gif-placeholder {
    padding: 15px;
    max-width: 90%;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
}

.gif-placeholder img {
    padding-top: 10px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
    transition: transform 0.3s ease;
}

.gif-placeholder img:hover {
    transform: scale(1.03);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 3vw, 1.2rem);
    justify-items: center;
    max-width: 80%;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    animation: fadeIn 1.5s ease-out 0.2s;
    animation-fill-mode: both;
}

.highlight-item {
    background: linear-gradient(45deg, var(--blue) 30%, var(--white) 50%, var(--red) 70%);
    color: var(--white);
    padding: clamp(0.8rem, 3vw, 1.2rem);
    border-radius: 8px;
    border: 1px solid var(--gold);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-item:hover,
.highlight-item:focus {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-color: transparent;
    animation: glow-border 1.5s infinite ease-in-out;
}

.highlight-item h3 {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 0.4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(255, 255, 255, 0.2);
}

.highlight-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.highlights-img-container {
    max-width: 80%;
    margin: clamp(1rem, 3vw, 1.5rem) auto;
    text-align: center;
}

.highlights-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
    transition: transform 0.3s ease;
}

.highlights-img:hover {
    transform: scale(1.03);
}

.care {
    margin: clamp(1rem, 3vw, 1.5rem) auto;
    max-width: 80%;
    text-align: center;
}

.care h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px var(--dark-gold), 0 0 8px var(--dark-gold);
    color: var(--gold);
}

.care-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 3vw, 1.2rem);
    justify-items: center;
    max-width: 100%;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    animation: fadeIn 1.5s ease-out 0.2s;
    animation-fill-mode: both;
}

.care-item {
    background: #000;
    color: var(--gold);
    padding: clamp(0.8rem, 3vw, 1.2rem);
    border-radius: 8px;
    border: 1px solid var(--gold);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.care-item:hover,
.care-item:focus {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-color: transparent;
    animation: glow-border 1.5s infinite ease-in-out;
}

.care-item p {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(0.8rem, 2.75vw, 0.9rem);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.4rem;
}

.care-item p:last-child {
    font-style: italic;
    font-size: clamp(0.8rem, 2.75vw, 0.9rem);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Admin Section */
.admin {
    margin: clamp(1rem, 3vw, 1.5rem) auto;
    max-width: 80%;
    text-align: center;
}

.admin h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px var(--dark-gold), 0 0 8px var(--dark-gold);
    color: var(--gold);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 3vw, 1.2rem);
    justify-items: center;
    max-width: 100%;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    animation: fadeIn 1.5s ease-out 0.2s;
    animation-fill-mode: both;
}

.admin-item {
    background: linear-gradient(45deg, var(--blue) 30%, var(--white) 50%, var(--red) 70%);
    color: var(--white);
    padding: clamp(0.6rem, 2vw, 0.8rem);
    border-radius: 8px;
    border: 1px solid var(--gold);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.admin-item:hover,
.admin-item:focus {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-color: transparent;
    animation: glow-border 1.5s infinite ease-in-out;
}

.admin-item h3 {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 0.4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(255, 255, 255, 0.2);
}

.admin-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.4rem;
}

.admin-img {
    display: block;
    width: 98%;
    height: auto;
    aspect-ratio: 1/1;
    max-width: 200px;
    border-radius: 50%;
    clip-path: circle(50%);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
    transition: transform 0.3s ease;
    margin: 0.4rem auto;
    object-fit: cover;
    object-position: center;
}

.admin-img:hover {
    transform: scale(1.03);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes glow-border {
    0% { border-color: var(--gold); }
    50% { border-color: #FFFFE0; }
    100% { border-color: var(--gold); }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Coming Soon Pop-up */
.coming-soon-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-out;
}

.gold-bar {
    background: linear-gradient(45deg, var(--gold) 30%, var(--dark-gold) 70%);
    color: var(--white);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 8px;
    border: 2px solid var(--dark-gold);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    max-width: 90%;
    width: 300px;
}

.gold-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%; /* Reduced to prevent overflow */
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 2s infinite linear;
}

.gold-bar p {
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
}

.coming-soon-popup.active {
    display: flex;
}

/* Top Post Section */
.top-post-section {
    padding: clamp(2rem, 6vw, 3rem) 1rem;
    text-align: center;
}

.top-post {
    max-width: 600px;
    margin: 0 auto;
    background: #000;
    padding: clamp(1rem, 3vw, 1.5rem); /* Reduced for mobile */
    border: 3px solid var(--gold); /* Gold border */
    border-radius: 12px;
    box-shadow: var(--shadow), 0 0 10px rgba(255, 215, 0, 0.3); /* Gold glow */
    transition: transform 0.3s ease;
}

.top-post:hover {
    transform: scale(1.02);
}

.top-post-img {
    width: 100%;
    max-width: 90vw; /* Prevent overflow on mobile */
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--dark-gold); /* Darker gold to contrast container */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    display: block; /* Ensure image is centered */
    margin-left: auto;
    margin-right: auto;
}

.top-post-img:hover {
    transform: scale(1.03);
}

.top-post-info {
    color: var(--gold);
    font-family: 'Roboto Slab', serif;
    font-size: clamp(1rem, 3.5vw, 1.2rem); /* Larger for mobile readability */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.top-post-info p {
    margin: 0.5rem 0;
}

.top-post-info strong {
    color: var(--white);
}

@media (min-width: 600px) {
    .top-post {
        max-width: 700px;
        padding: 1.5rem; /* Slightly larger for desktop */
    }
    .top-post-img {
        max-width: 600px; /* Larger for desktop */
    }
    .top-post-info {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }
}

@media (max-width: 600px) {
    .top-post {
        max-width: 95vw; /* Fit small screens */
        border: 2px solid var(--gold); /* Thinner border for mobile */
        padding: 0.8rem; /* Tighter padding */
    }
    .top-post-img {
        max-width: 85vw; /* More space on very small screens */
        border-radius: 6px; /* Slightly smaller for mobile */
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--blue) 30%, var(--white) 50%, var(--red) 70%);
    color: var(--white);
    text-align: center;
    padding: clamp(0.8rem, 3vw, 1rem);
    margin-top: 1.5rem;
    border-top: 3px solid var(--gold);
}

footer p:first-child {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    color: var(--gold);
}

footer p:not(:first-child) {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

footer a {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

footer a:hover,
footer a:focus {
    color: var(--white);
    text-decoration: underline;
}

/* Media Queries for Larger Screens */
@media (min-width: 600px) {
    body {
        font-size: calc(var(--font-size-base) + 0.1rem);
    }

    header {
        padding: clamp(1.5rem, 4vw, 2rem);
    }

    .header-content {
        max-width: 90%;
    }

    header h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    header p {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }

    .navbar {
        padding: clamp(0.75rem, 2vw, 1rem);
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        width: auto;
        padding: 0;
        box-shadow: none;
    }

    .merch-btn {
        display: inline-block;
        margin: 0 0.5rem;
    }

    .hero {
        padding: clamp(3rem, 6vw, 4rem) 1rem;
    }

    .hero-content {
        max-width: 50%;
    }

    .hero h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero p {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }

    .member-counter {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .join-btn {
        padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .gif-placeholder {
        max-width: 600px;
    }

    .highlight-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        max-width: 1200px;
        margin: 0 auto clamp(1.5rem, 3vw, 2rem);
    }

    .highlight-item {
        padding: clamp(1rem, 3vw, 1.5rem);
    }

    .highlight-item h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    .highlight-item p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .highlights-img-container {
        max-width: 600px;
        margin: clamp(1.5rem, 3vw, 2rem) auto;
    }

    .highlights-img {
        max-width: 500px;
    }

    .care-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        max-width: 1200px;
        margin: 0 auto clamp(1.5rem, 3vw, 2rem);
    }

    .care-item {
        padding: clamp(1rem, 3vw, 1.5rem);
    }

    .care-item p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .care-item p:last-child {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .admin-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        max-width: 1200px;
        margin: 0 auto clamp(1.5rem, 3vw, 2rem);
    }

    .admin-item {
        padding: clamp(1rem, 3vw, 1.5rem);
    }

    .admin-item h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    .admin-item p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .admin-img {
        width: 150px;
        height: 150px;
        max-width: 150px;
        max-height: 150px;
    }

    footer {
        padding: clamp(1rem, 3vw, 1.5rem);
    }

    footer p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
}

@media (min-width: 1024px) {
    body {
        font-size: calc(var(--font-size-base) + 0.2rem);
    }

    header h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    header p {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
    }

    .hero h2 {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
    }

    .hero p {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
    }

    .member-counter {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
    }

    .highlight-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto clamp(2rem, 3vw, 2.5rem);
    }

    .care-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto clamp(2rem, 3vw, 2.5rem);
    }

    .admin-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto clamp(2rem, 3vw, 2.5rem);
    }

    .admin-item h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    .admin-item p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .highlights-img-container {
        max-width: 700px;
        margin: clamp(2rem, 3vw, 2.5rem) auto;
    }

    .highlights-img {
        max-width: 600px;
    }
}