/* ===========================
   GENERAL PAGE STYLING
=========================== */
body {
    margin: 0;
    background: #f8f9fc;
    font-family: Arial, sans-serif;
}

main {
    margin-left: 20px;
    margin-right: 20px;
}

h1 {
    font-size: 60px;
    text-align: center;
}

p {
    font-size: 20px;
    text-align: left;
}

/* ===========================
   NAVBAR
=========================== */
.navbar ul {
    list-style-type: none;
    background-color: black;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}

.navbar a:hover {
    background-color: grey;
}

.navbar li {
    float: left;
}

/* ===========================
   HEADER LOGO + TITLE
=========================== */
.div1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.div1 img {
    width: 160px;
    height: auto;
}

/* Footer */
.footer {
    background: #111;
    color: white;
    padding: 10px;
    margin-top: 50px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
}

.footer-section {
    width: 250px;
    margin-bottom: 20px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 10px;
    color: #3b82f6;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #bbb;
}

/* ===========================
   FEEDBACK BOX
=========================== */
.feedback-section {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.feedback-box {
    background: #e0e0e0;
    padding: 20px;
    width: 80%;
    max-width: 750px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
    text-align: center;
}

.feedback-box h3 {
    margin-bottom: 10px;
    color: #745454;
}

.feedback-box p {
    font-size: 16px;
    color: #444;
}

/* ===========================
   MAP + DIRECTIONS BUTTON
=========================== */
.map-section h2 {
    text-align: center;
}

.map-container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.directions-btn-box {
    text-align: center;
    margin-top: 15px;
}

.directions-btn {
    background: #007bff;
    padding: 12px 22px;
    color: white;
    font-size: 17px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.directions-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}


/* ===========================
   MOBILE RESPONSIVE FIXES
=========================== */
@media (max-width: 768px) {

    h1 {
        font-size: 38px;
    }

    p {
        font-size: 16px;
    }

    .navbar li {
        float: none;
        width: 100%;
    }

    .div1 {
        flex-direction: column;
        gap: 10px;
    }

    .div1 img {
        width: 130px;
    }

    .text-box {
        max-width: 90%;
        margin: 10px auto;
        font-size: 16px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-section {
        width: 100%;
    }

    .video-container {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 20px auto;
    }

    .video-container iframe {
        width: 100%;
        height: 450px;
        border-radius: 10px;
    }

    .info-row {
    flex-direction: column;
    text-align: left;
}

.info-img {
    width: 100%;
    max-width: 300px;
}

}