/* -------------------------------- */
/* FONT                             */
/* -------------------------------- */
@font-face {
    font-family: "Holitter Gothic";
    src: url("Holitter Gothic.ttf");
}

/* -------------------------------- */
/* GLOBAL RESET                     */
/* -------------------------------- */
body {
    margin: 0;
    text-align: center;
}

h1, h2, h3, p {
    margin: 0;
}

/* -------------------------------- */
/* HERO SECTION                     */
/* -------------------------------- */
#hero {
    background-image: url("image1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;
}

/* HERO TEXT */
.hero-text {
    background-color: red;
    margin: 1px 3px;
    padding: 0 10px;
    border-radius: 5px;
    font-family: "Holitter Gothic";
    font-weight: 700;
    font-size: 32px;
}

.hero-warning {
    background-color: slategrey;
    margin: 15px 3px 1px 3px;
    padding: 10px 10px;
    border-radius: 5px;
    font-family: "Holitter Gothic";
    font-weight: 700;
    font-size: 20px;
    width: 50%;
}

/* -------------------------------- */
/* ACTIVITIES SECTION               */
/* -------------------------------- */

/* FULL-WIDTH BLUE BACKGROUND */
.activities-section {
    background-color: #cce6ff;
    width: 100%;
    padding: 3rem 0;
    margin-top: 0;
}

/* CENTERED INNER CONTENT */
.activities {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

/* TITLE */
.activities-title {
    font-size: 1.9rem;
    color: red;
    font-family: "Holitter Gothic";
    margin: 0;
}

/* GRID */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* EACH CARD */
.activity {
    flex: 1 1 0;
    max-width: 260px;
    text-align: center;
}

/* CIRCULAR IMAGES */
.activity-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 1rem;
}

/* TEXT */
.activity-heading {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.activity-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* -------------------------------- */
/* GUIDE SECTION                    */
/* -------------------------------- */
.guide {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}

/* RECTANGULAR CARD */
.guide-card {
    background-color: #1a0000;
    width: 400px;
    height: 250px;
    border-radius: 10px;
    padding: 20px;
    border-bottom: 5px solid red;
    color: white;

    display: flex;
    align-items: center;
    gap: 20px;
}

/* IMAGE */
.guide-img {
    width: 180px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

/* TEXT */
.guide-info {
    text-align: left;
    max-width: 300px;
}

.guide-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.guide-quote {
    font-style: italic;
    margin-bottom: 10px;
}

.guide-name {
    font-weight: bold;
}

/*=========FOOTER SECTION========================*/

.site-footer {
    background: #cce6ff;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top:25px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #333;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.language-select {
    margin-top: 20px;
}

.language-select label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.language-select select {
    padding: 8px;
    width: 150px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 25px;
  
    text-align: center;
}

.footer-bottom p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.5;
}

.payment-icons img {
    height: 28px;
    margin: 0 10px;
    opacity: 0.9;
}

.payment-icons img:hover {
    opacity: 1;
}


/* -------------------------------- */
/* MOBILE                           */
/* -------------------------------- */
@media (max-width: 700px) {
    .activities-grid {
        flex-direction: column;
        align-items: center;
    }

    .guide-card {
        flex-direction: column;
        height: auto;
        width: 90%;
    }

    .guide-img {
        width: 150px;
        height: 150px;
    }

       .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom p {
        padding: 0 10px;
    }
}