/* ---------- HOME PAGE LAYOUT ---------- */

.home-wrapper {
    width: 100%;
}

/* Containers matching your old inline styles */
.container-75 {
    max-width: 75%;
    margin: 0 auto;
    padding: 10px 0;
}

.container-55 {
    max-width: 55%;
    margin: 0 auto;
    padding: 10px 2rem;
}

/* ---------- COVER ---------- */
.home-cover img {
    width: 100%;
    height: auto;
}

/* ---------- SPONSORS ---------- */
.sponsors-section{
    background-color: #03254b;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.sponsor-item {
    flex: 0 0 auto;
    max-width: 200px;
    min-width: 100px;
}

.sponsor-link {
    display: block;
    aspect-ratio: 1 / 1;
    background: #307ad5;
    border-radius: 12px;
    padding: 5px;
}

.sponsor-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* ---------- STORE CARD ---------- */
.store-card {
    background: linear-gradient(90deg, #03254b, #307ad5, #03254b);
    border-radius: 16px;
    padding: 2rem;
}

.store-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
}

.btn-shop {
    background: #03254b;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* ---------- PRODUCT SCROLL ---------- */
.scroll-container {
    position: relative;
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 250px;
    gap: 16px;
    justify-content: center;
}

/* Fade edges */
.scroll-container::before,
.scroll-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
}

.scroll-item {
    flex: 0 0 auto;
    text-align: center;
}

.scroll-item img {
    height: 200px;
    width: auto;
    margin: 0 auto;
}

/* ---------- FLICKR ---------- */
.flickr-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    width: 100%;
    height: auto;
}

.flickr-img {
    max-width: 1024px;
    width: 100%;
    height: auto;
}

/* ---------- CALENDAR ---------- */
.calendar-section {
    display: flex;
    justify-content: center;
    padding: 2.5rem 0;
}
.calendar-wrapper {
    width: 100% !important;
    min-width: 0 !important;   
    max-height: 1000px;
    height: auto;
    min-height: 500px;     
}
.calendar-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
}

/* ---------- SOCIAL SECTION ---------- */
.social-section {
    padding: 2.5rem 0;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.instagram-wrapper {
    max-width: 100% !important;
    min-width: 0 !important;   
    width: 100%;
}

.instagram-wrapper iframe {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
}

.groupme-wrapper {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    text-align: center;
    background-color: #307ad5;
}
.groupme-wrapper a{
    display: flex;
}
.groupme-wrapper a img{
    margin: 1rem;
    background-color: #03254b;
}
.groupme-wrapper a h3{
    font-size: 25px;
    padding: 1rem;
    justify-content: center;
    align-content: center;
}


@media (max-width: 1200px){
    .container-75,
    .container-55 {
        max-width: 80%;
        padding: 10px 1rem;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

    .container-75,
    .container-55 {
        max-width: 100%;
        padding: 10px 1rem;
    }
    .calendar-wrapper {
        width: 100% !important;
        min-width: 0 !important;   
        height: 500px;     
    }

    .calendar-wrapper iframe {
        width: 100% !important;
        height: 100% !important;
    }

    .instagram-wrapper {
        max-width: 100% !important;
        min-width: 0 !important;   
        width: 100%;
    }

    .instagram-wrapper iframe {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .groupme-wrapper {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        text-align: center;
        background-color: #307ad5;
    }
    .groupme-wrapper a{
        display: flex;
    }
    .groupme-wrapper a img{
        margin: 1rem;
        background-color: #03254b;
        width: 50%;
    }
    .groupme-wrapper a h3{
        font-size: 25px;
        padding: 1rem;
        justify-content: center;
        align-content: center;
    }
}