/* ==================== 🌐 All Pages ==================== */

body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    color: #424242;

    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.text-section {
    padding-left: 20vw;
    padding-right: 20vw;
}

/* Text Section Medium Screens */
@media (max-width: 768px) {
    .text-section {
        padding-left: 10vw;
        padding-right: 10vw;
    }
}

/* Text Section Small Screens */
@media (max-width: 480px) {
    .text-section {
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

.page-title {
    font-size: 1.8vw;
    padding-top: 50px;
    text-align: center;
}

/* ==================== 🏠 Home Page ==================== */

.text-section {
    display: flex;
}

.description-paragraph {
    justify-content: center;
    font-size: 1.5vw;
    line-height: 1.5;
}

.links-section {
    display: flex;
    padding: 20px;
    flex-flow: row wrap;    
    gap: 2em;
    justify-content: center;
    align-content: center;
}

/* ==================== 🖼️ Gallery Page ==================== */

.gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 100px 40px;
    padding-bottom: 50px;
}

.gallery-images img {
    width: 100%;
    height: auto;
    filter: drop-shadow(1px 5px 10px #7d7d7d);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-images img:hover {
    cursor: zoom-in;
    transform: scale(1.05);
    filter: drop-shadow(1px 5px 10px #222222);
}

/* Image Grid Medium Screens */
@media (max-width: 768px) {
    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Image Grid Small Screens */
@media (max-width: 480px) {
    .gallery-images {
        grid-template-columns: 1fr;
    }
}

/* ==================== 📍 Location ==================== */

#location-map {
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

#location-description {
    font-size: 1.5vw;
    text-align: center;
    padding-top: 50px;
}

/* ==================== 📞 Contact Page ==================== */

#phone-number-text {
    font-size: 2vw;
    text-align: center;
    margin-bottom: -20px;
}

/* ==================== 📄 Header ==================== */

.navbar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
}

.navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar-list li {
    margin: 0px 15px;
}

.navbar-list a {
    color: white;
    font-size: 23px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px 15px 30px;
    text-align: center;
}

.navbar a:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

/* Navbar Mobile Screens */
@media (max-width: 768px) {
    .navbar {
        text-align: center;
    }

    .navbar-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-list li {
        margin: 10px 0;
    }

    .navbar-list a {
        font-size: 18px;
    }

    .navbar-list a:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }
}

.hero-image-home {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("images/front/home-page.jpg");
}
.hero-image-gallery {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("images/front/gallery-page.jpg");
}
.hero-image-location {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("images/front/location-page.jpg");
}
.hero-image-contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("images/front/contact-page.jpg");
}

.hero-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    padding: 0px 20px;
    overflow: hidden;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 200px;
}

.hero-text h1 {
    font-size: 5vw;
    margin: 0px;
}

.hero-text h2 {
    font-size: 2.5vw;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .navbar-list {
        flex-direction: column;
        text-align: center;
    }

    .navbar-list li {
        margin: 10px 0px;
    }

    .hero-text h1 {
        font-size: 7vw;
    }

    .hero-text h2 {
        font-size: 3.5vw;
    }
}

/* ==================== 📄 Footer ==================== */

footer {
    display: flex;
    flex-direction: column;
    color: #424242;
    font-size: 1.2vw;
    align-items: center;
    text-align: center;
    padding: 50px;
}

footer hr {
    border-top: 1px solid #424242;
    width: 100%;
    margin: 20px;
}

footer a {
    color: #487f4f;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

footer img {
    width: 5vw;
    max-width: 120px;
    height: auto;
}

.footer-contents {
    margin-bottom: 15px;
}