@font-face {
    font-family: 'Poppins';
    src: url('path-to-fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    
    overflow-x: hidden;

    font-family: 'Poppins', sans-serif;
}

.navbar {
    background-color: #333;
    overflow: hidden;
    height: 80px;

    text-align: right;
}

.navbar a {
    display: inline-block;
    color: white;
    padding: 30px 20px;
    margin: 0 20px;

    text-align: center;
    text-decoration: none;

    font-size: 18px;
    font-weight: bold;
    transition: 0.5s;
    position: relative;
}

.navbar a::before {
    content: '';
    position: absolute;
    
    width: 100%;
    height: 2px;
    background-color: white;
    
    bottom: 0;
    left: 0;
    
    transform: scaleX(0);
    transform-origin: left;
    
    transition: transform 0.5s;
}

.navbar a:hover::before {
    transform: scaleX(1);
}

.welcome-section {
    background-image: url('welcome.jpg'); 
    background-size: cover;
    height: 100vh; 
    
    text-align: center;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.places-section {
    background-image: url('places.jpg'); 
    background-size: cover;
    height: 100vh;

    text-align: center;
    color: white;
    font-weight: bolder;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.places-section h1 {
    font-size: 24px;
    margin: 20px 0;
}

.places-section p {
    font-size: 16px;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.place {
    width: 20%;
    padding: 20px;
    
    text-align: center;
}

.place h2 {
    font-size: 20px;
    margin: 10px 0;
}

.place p {
    font-size: 16px;
}

.place a img {
    width: 100%;
    max-height: 250px;
    border-radius: 5px;
    transition: transform 0.3s; /* Add a smooth transition effect */
}

.place a img:hover {
    transform: scale(1.1);
}

.facts-section {
    background-image: url('facts.jpg'); /* Add a background image URL */
    background-size: cover;
    background-position: center; /* Center the background image */
    height: 100vh;
    
    text-align: left;
    color: black;
    font-weight: bold;
    
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
}

.facts-container {
    text-align: left; 
    max-width: 800px; 
}

.facts-section ul {
    list-style: none;
    padding: 0;
}

.facts-section li {
    font-size: 20px;
    margin: 10px 0;
}


.history-section {
    background-color: rgb(153, 166, 161);
    text-align: center;
    padding: 20px;

}

.history-section h1 {
    font-size: 28px;
    margin: 20px 0;
}

.image-text img {
    max-width: 40%;
    border-radius: 15px;
}

.history-section .image-text p {
    font-size: 16px;
    font-weight: bolder;

    line-height: 1.2;
    flex-grow: 1;
}

@media screen and (max-width: 320px) {
    .navbar {
        height: 60px;
    }

    .navbar a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .welcome-section h1 {
        font-size: 20px;
    }

    .places-section h1 {
        font-size: 20px;
    }

    .places-section p {
        font-size: 14px;
    }

    .places-section .place {
        width: 100%;
    }

    .facts-section h1 {
        font-size: 20px;
    }

    .facts-section li {
        font-size: 16px;
    }

    .history-section h1 {
        font-size: 24px;
    }

    .image-text-container img {
        max-width: 100%;
    }

    .history-section .image-text p {
        font-size: 14px;
    }
}

@media screen and (min-width: 601px) and (max-width: 992px) {
    .navbar a {
        font-size: 16px;
    }
}

@media screen and (min-width: 993px) {
    .navbar {
        height: 100px;
    }

    .navbar a {
        padding: 30px 20px;
        font-size: 18px;
    }
}