/* =================== GLOBAL =================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
    margin: 0;
    font-family: Helvetica, sans-serif;
    background-color: #f4f4f4;
    padding: 0;
    overflow-x: hidden;
}

a {
    color: #000;
    text-decoration: none;
}

/* =================== HEADER =================== */
.header {
    background-color: #ffffff;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
    position: fixed;
    width: 100%;
    z-index: 3;
    padding: 10px;
}

header img {
    margin-top: 13px;
    width: 100px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeInLogo 0.8s ease forwards;
}

.header img:hover {
    transform: scale(1.05);
}

@keyframes fadeInLogo {
    to {
        opacity: 1;
    }
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
}

.header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
    background-color: #f4f4f4;
}

.menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

.menu li a {
    color: #333;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 16px 0;
    transition: color 0.3s ease;
}

.menu li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e4a42e;
    transition: width 0.3s ease;
}

.menu li a:hover {
    color: #e4a42e;
}

.menu li a:hover::after {
    width: 100%;
}

.menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    width: 18px;
    transition: background .2s ease-out;
}

.navicon:before,
.navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    transition: all .2s ease-out;
}

.navicon:before {
    top: 5px;
}

.navicon:after {
    top: -5px;
}

.menu-btn {
    display: none;
}

.menu-btn:checked~.menu {
    max-height: 240px;
}

.menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
    top: 0;
}

.menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
    top: 0;
}

/* =================== HEADER MESSAGE =================== */
.header-message {
    padding-top: 150px;
    padding-left: 20px;
    padding-right: 20px;
    animation: fadeInHeader 1s ease-in-out;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.header-message h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    font-weight: 100;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.header-message p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

@keyframes fadeInHeader {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================== IMAGE GRID =================== */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    padding: 100px 20px 60px;
    max-width: 1400px;
    margin: auto;
    animation: fadeInGrid 1s ease-in-out;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInGrid {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================== MESSAGE =================== */
.message,
.message2 {
    background-color: #000;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    text-align: center;
    letter-spacing: 4px;
    font-weight: 100;
    padding: 50px 20px;
    animation: fadeInText 1.5s ease;
    margin-top: 30px;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================== SLIDESHOW =================== */
.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: 60px auto 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.slideshow-container img {
    width: 100%;
    border-radius: 8px;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 12px 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* =================== VIDEOS =================== */
/* .videos {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 100;
    font-size: 22px;
    margin-top: 60px;
    animation: fadeInVideo 1.5s ease;
}

.videos h2 {
    margin-top: 40px;
    letter-spacing: 2px;
}

.videos video {
    margin-top: 20px;
    margin-bottom: 40px;
    width: 95%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

@keyframes fadeInVideo {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
} */

/* Months */

.accordion {
    background: #ffffff;
    border-radius: 12px;
    margin: 16px auto;
    padding: 18px 20px;
    width: 95%;
    text-align: left;
    cursor: pointer;
    font-size: 20px;
    font-family: 'Bebas Neue', sans-serif;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion:hover {
    background: linear-gradient(90deg, #fdfdfd 0%, #f7f7f7 100%);
}

.accordion::after {
    content: "›";
    font-size: 24px;
    color: #e4a42e;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.accordion.active::after {
    transform: rotate(90deg);
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: #fafafa;
    padding: 0 20px;
    border-radius: 0 0 12px 12px;
    box-shadow: inset 0 1px 0 #eee;
}

/*  */

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    margin: 0 auto 30px;
    width: 95%;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    padding: 0 0;
    transform: scale(0.98);
    transition: all 0.4s ease;
}

.accordion.active+.panel {
    padding: 20px;
    max-height: 5000px;
    /* high enough to accommodate images */
    opacity: 1;
    transform: scale(1);
}

/* Add some spacing for the gallery inside */
.month-gallery {
    padding: 10px 10px 0;
}


/*  */



/*  */

.accordion.active+.panel {
    padding: 20px;
}

.month-gallery img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



@media (min-width: 768px) {
    .month-gallery img {
        height: 120px;
    }
}

@media (min-width: 1024px) {
    .month-gallery img {
        height: 100px;
    }
}

.month-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    padding: 10px 0;
}

.show-more-btn:hover {
    background-color: #c4881e;
}


.show-more-btn {
    display: inline-block;
    margin: 10px auto 20px;
    padding: 8px 16px;
    font-size: 16px;
    font-family: 'Bebas Neue', sans-serif;
    background-color: #e4a42e;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.show-more-btn:hover {
    background-color: #c4881e;
}


/* =================== FOOTER =================== */
.conclusion {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.group2 p {
    font-size: 14px;
    color: #aaa;
    letter-spacing: 1px;
}

/* =================== RESPONSIVE =================== */
@media (min-width: 48em) {
    .header li {
        float: left;
    }

    .header li a {
        padding: 20px 30px;
    }

    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }

    .header .menu-icon {
        display: none;
    }

    header img {
        width: 200px;
        margin-top: 0px;
    }
}

/* NEW CODE */

.month-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    padding: 15px 0;
}

.month-gallery img {
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.month-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.month-gallery img.hidden {
    display: none;
}

.show-more-btn {
    display: inline-block;
    margin: 15px auto 10px;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Bebas Neue', sans-serif;
    background-color: #e4a42e;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.show-more-btn:hover {
    background-color: #c4881e;
}

/* Grid layout with max-height scroll inside panel */
.month-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .show-more-btn {
        display: none !important;
    }

    .month-gallery img {
        display: block !important;
    }
}

.month-gallery.limited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.month-gallery.limited-grid img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}