* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 20px;
  
}

img{
	height: 100px;
	padding-left: 10px;
}

.navbar-logo {
  height: auto;
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
}

.navbar-links {
  list-style-type: none;
  display: flex;
}

.navbar-links li {
  margin-left: 20px;
}

.navbar-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1em;
  padding: 8px 12px;
  transition: background 0.3s;
}

.navbar-links a:hover {
  background-color: #555;
  border-radius: 4px;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.navbar-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .navbar-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #333;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
  }

  .navbar-links li {
    margin: 20px 0;
  }

  .navbar-links.show {
    display: flex;
  }

  .navbar-toggle {
    display: flex;
  }
}




.container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.container-foot {
    text-align: center;
    padding: 2px;
    background: #202020;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #006064;
}

/* Population Card */
.population-card {
    border: 2px solid #006064;
    border-radius: 10px;
    padding: 15px 20px;
    background: #e0f7fa;
}

.label {
    font-size: 1.2rem;
    color: #00796b;
    margin: 0;
}

.population {
    font-size: 2.5rem;
    font-weight: bold;
    color: #004d40;
    margin: 10px 0 0;
}




        .image-container {
            position: relative;
        }

        .image-container img {
            position: absolute;
            z-index: 1;
            width: 300px;
			height: auto;
            top: 2px; 
			bottom: 20px;
            left: 1000px;
        }

        .section-content {
            background-color: #f4f4f4;
            padding: 20px;
            margin-top: 50px;
            position: relative;
            z-index: 0; /* Ensures the section stays behind */
        }



#section {
    width: 150%;
    max-width: 1000px;
    margin: 2px 2px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



#cultural-places {
    width: 100%;
	height: auto;
    max-width: 1450px;
    margin: 20px auto;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#cultural-places h1 {
    text-align: left;
    color: #007acc;
    font-size: 2em;
    margin-bottom: 20px;
}

/* Article Styling */
.place {
    margin-bottom: 20px;
    padding: 10px;
    border-left: 4px solid #007acc;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.place h2 {
    color: #007acc;
    font-size: 1.5em;
}

.place p {
    margin: 10px 0;
    color: #555;
}

.place p strong {
    color: #333;
    font-weight: bold;
}



.place1 {
    margin-bottom: 20px;
    padding: 10px;
    border-left: 4px solid #007acc;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.place1 h2 {
    color: #007acc;
    font-size: 1.5em;
}

.place1 p {
    margin: 10px 0;
    color: #555;
}

.place1 p strong {
    color: #333;
    font-weight: bold;
}




@media (max-width: 600px) {
    #cultural-places h1 {
        font-size: 1.5em;
    }

    .place h2 {
        font-size: 1.2em;
    }
}

p{
	padding: 10px;
	font-size: 20px;
	align-content: center;
}

 h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        p {
            text-align: justify;
            margin-bottom: 15px;
        }
        ul {
            list-style-type: square;
            margin: 20px 40px;
            padding: 1px;
            background-color:#353232;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        ul li {
            margin: 10px 0;
        }
        a {
            color: #2980b9;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }



/* Style for the button */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; 
    color: white; 
    text-decoration: none; 
    border-radius: 5px; 
    font-size: 16px; 
    font-weight: bold; 
    text-align: left; 
    transition: background-color 0.3s ease; 
}

/* Hover effect */
.button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

/* Center the button container */
.button-container {
    text-align: center; /* Center the button */
    margin: 20px; /* Add some margin around the button */
}


