:root {
    --main-color: #608be7;
    --bg-light: #fdfcfb;
    --glass: rgba(255, 255, 255, 0.9);
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: var(--bg-light);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--glass);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 50px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--main-color);
    font-weight: 600;
}

/* Hero */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('png/poster ftz.png') top/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 5px;
    border-radius: 20px;
}

/* Grid for Members */
.section { padding: 60px 0; text-align: center; }
.title { color: var(--main-color); margin-bottom: 30px; }

/* 1. DEFAULT GRID (Desktop/Laptop) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Laptop: as many as fit! */
    gap: 30px;
}

/* 2. MOBILE SPECIFIC (Phones) */
@media (max-width: 600px) {
    .grid {
        /* Force exactly 2 columns on phones */
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; /* Tighter gap so they fit */
    }

    .card-text {
        padding: 10px; /* Less padding so text has more room */
    }

    .card-text h3 {
        font-size: 0.9rem; /* Smaller names so they don't wrap weirdly */
    }

    .hero {
    height: 30vh;
    }
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover { transform: translateY(-5px); }

.card img { width: 100%; height: auto; display: block; }

.card-text { padding: 15px; }

.footer { padding: 40px; text-align: center; background: #eee; }

/* Shop Button Styling */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background-color: var(--main-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background-color: #4882ff;
    transform: scale(1.05);
}

.shop-item img {
    aspect-ratio: 1 / 1; /* Makes all shop images the same square size */
    object-fit: cover;
}
