html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;  /* kills any accidental sideways scrollbar */
    background-color: rgb(130, 240, 130);
}


/* ============================
   SLIDESHOW (400px fixed height)
============================ */
.slideshow-container {
    width: 100%;
    height: 400px;        /* FIXED HEIGHT */
    max-height: 400px;
    overflow: hidden;
    position: relative;
    background-color: rgb(206, 201, 198);
}

/* Track slides horizontally */
.slides-track {
    display: flex;
    height: 100%;
    transition: transform 1.2s ease-in-out;
    cursor: grab;
}
.slides-track:active {
    cursor: grabbing;
}


/* Each slide occupies full width */
.slide {
    flex: 0 0 100%;
    height: 100%;
}

/* Full image visible — no cropping */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* Always crop horizontally if needed */
    object-position: center; /* Keep the center of the image visible */
}

/* Avoid selecting images while dragging */
.slides-track img {
    user-select: none;
    pointer-events: none;
}

/* Prevent text cursor / caret from appearing on slides */
.slide, 
.slide img,
.slides-track {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    caret-color: transparent;   /* <-- hides the blinking text caret */
}

.slide:focus,
.slide img:focus,
.slides-track:focus {
    outline: none !important;
}


/* ============================
   SLIDESHOW DOTS (RECTANGLES)
============================ */

/* Position the dots */
.slideshow-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

/* Make the dots into small rectangles */
.slideshow-dots .dot {
    width: 28px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    outline: none;
    user-select: none;
}

.slideshow-dots .dot.active {
    background-color: rgba(255, 255, 255, 1);
}

.slideshow-dots .dot:focus {
    outline: none;
    border: none;
}




/* ============================
   SUB-BANNER BAR (UNDER SLIDESHOW)
============================ */
.sub-banner-bar {
    width: 100%;
    background: #0d7400;   /* pick any color */
    color: white;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    padding: 8px 0;
    letter-spacing: 8px;
    font-family: Calibri, sans-serif;
    /*font-family: "caveat", cursive; /* optional — remove if not desired */
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    user-select: none;       /* prevent text selection */
    pointer-events: none;    /* block clicking */
}


/* ============================
   TOP TWO COLUMNS (INFO + FB)
============================ */
.top-columns {
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.info, 
.facebook-feed-container {
    display: flex;
    flex-direction: column;
    align-items: center;  /* centers content inside each column */
    width: 100%;
}


/* ============================
   INFO COLUMN
============================ */
.info {
    max-width: 350px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* center horizontally */
    text-align: center;  /* center text */
}

#hours-panel {
    margin-top: 20px;
    padding: 10px 0;
}

#hours-panel h2 {
    margin-bottom: 10px;
}

/* Timetable container */
#hours-list {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 30px;
    row-gap: 6px;
    max-width: 350px;
}

.hours-day {
    text-align: left;
    font-weight: 600;
}

.hours-time {
    text-align: left;
}

.adress {
    margin-top: -30px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: left;
}

/* ============================
   FACEBOOK COLUMN
============================ */
.facebook-feed-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center; /* center horizontally */
    text-align: center;
}

.fb-wrapper {
    display: flex;
    justify-content: center; /* center the widget */
    width: 100%;
}

/* ============================
   MAP (FULL WIDTH UNDER)
============================ */

/* WIDE MAP PANEL */
.map-panel {
    width: 65vw;              /* % of viewport width */
    margin-left: 50%;          /* escape centered container */
    transform: translateX(-48.5%);
    margin-top: 50px;
}

/* Make iframe follow width */
.map-panel iframe {
    width: 100%;               /* fill the full-width map panel */
    height: 450px;             /* or any height you prefer */
    border: 0;
}


/* ============================
   MOBILE ADJUSTMENTS
============================ */
@media (max-width: 700px) {

    .top-columns {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .info,
    .facebook-feed-container {
        max-width: 100%;
    }

    #hours-list {
        max-width: 100%;
    }

    .map-panel {
        margin-top: 30px;
    }
}

/* RESPONSIVE: STACK INFO + FACEBOOK BEFORE THEY BREAK */
@media (max-width: 1100px) {
    .top-columns {
        grid-template-columns: 1fr;
    }

    .info,
    .facebook-feed-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* UNIVERSAL CARD STYLE FOR INFO, FB, AND MAP */
.info,
.facebook-feed-container,
.map-panel {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.28);
}

    /* ============================
        FOOTER
    ============================ */
.site-footer {
    width: 100%;
    background: rgb(206, 201, 198);
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 1px solid #ddd;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.95rem;
    color: #111111;
    line-height: 0.4rem;
}

.footer-content strong {
    font-size: 1rem;
}

.footer-legal {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
}