body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    background-color: #181717;
    color: rgba(253, 252, 251, 0.918);
    padding: 1em 0;
    text-align: center;
}

nav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 1em;
}

.menu-icon {
    color: white;
    font-size: 2em;
    cursor: pointer;
}

.menu-content {
    display: none;
}

/* Ensure the menu content is hidden initially */
.menu-content {
  display: none;
  background-color: white;
  position: absolute;
  top: 50px;
  right: 10px;
  border: 1px solid #dddddd;
  z-index: 100;
  box-shadow: 0px 4px 6px rgba(241, 235, 235, 0.1);
  border-radius: 8px;
  width: 200px;
}

/* Style for the menu links */
.menu-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.menu-content a:hover {
  background-color: #f0f0f0;
  color: #007bff;
}

/* Menu Icon Styling */
.menu-icon {
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}


.states-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
}




footer {
    text-align: center;
    padding: 1em;
    background-color: #ddd;
    
    width: 100%;
    bottom: 0;
}

.header-image {
    display: block;
    margin-top: 1px;
    width: 80%;
    height: 200px;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
    
  }
  .next-article {
    background-color: #f0f0f0; /* light gray background */
    padding: 10px; /* add some padding */
    border: 1px solid #ccc; /* light gray border */
    border-radius: 5px; /* rounded corners */
    text-decoration: none; /* remove underline */
    color: #008000; /* green text color */
  }
  
  .next-article:hover {
    background-color: #e0e0e0; /* darker gray on hover */
    border-color: #aaa; /* darker gray border on hover */
  }

  /* Ensure that the state-box elements stack vertically */
.state-grid {
  display: block;  /* Ensure that items are stacked vertically */
}

/* Style for each state-box */
.state-box {
  background-color: #f0f0f0;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Space between state-box elements */
  width: 100%;         /* Take full width of the parent container */
  box-sizing: border-box; /* Include padding and border in width */
  text-align: center;  /* Center the content inside the box */
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .state-box {
    width: 60%;       /* 60% width for laptop users */
  }
}
/* Style for the images inside state-box */
.state-box img {
  width: 100%;         /* Ensure images are responsive */
  height: 150px;
  object-fit: cover;   /* Ensure the image covers the box */
  border-radius: 5px 5px 0 0;
}

/* Style for the headings inside state-box */
.state-box h3 {
  margin-top: 10px;
  font-weight: bold;
}

/* Style for the paragraphs inside state-box */
.state-box p {
  margin-top: 10px;
  color: #666;
}

/* Style for the links inside state-box */
.state-box a {
  text-decoration: none;
  color: inherit;
}

/* Hover effect for links */
.state-box a:hover {
  background-color: #e0e0e0;
}


/* Container for main content */
.content-container {
  max-width: 800px; /* Adjust the max-width as needed */
  margin: 0 auto;   /* Center the container */
  padding: 20px;    /* Add padding around the container */
}

/* General text styling */
body {
  font-size: 16px;  /* Base font size */
  line-height: 1.6; /* Line height for readability */
}

/* Responsive font size */
@media (max-width: 768px) {
  body {
      font-size: 14px; /* Smaller font size for smaller screens */
  }
}

/* Ensure images are responsive */
img {
  max-width: 100%;  /* Make sure images do not overflow */
  height: auto;     /* Maintain aspect ratio */
}
/* Connect with Us section */
.connect-section {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 20px;
}

.connect-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  margin: 10px 0;
  transition: color 0.3s ease;
}

.social-icons img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.social-icons a:hover {
  color: #007BFF; /* Change color on hover */
}

@media (min-width: 768px) {
  .social-icons {
      flex-direction: row;
      justify-content: center;
  }

  .social-icons a {
      margin: 0 15px;
  }
}



.comment-section {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: left;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}

.comment-section h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color: #555;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
}

button[type="submit"] {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

.museum-image {
  display: inline-block;
  margin-top: 10px;
  width: 48%;
  height: 200px;
  object-fit: cover;
}

.dubar-image {
  display: inline-block;
  margin-top: 10px;
  width: 30%;
  height: 200px;
  object-fit: cover;
}

/* Related Posts Section */
.related-posts {
  margin: 40px 0;
  padding: 20px;
  background-color: #f0f0f0;
  text-align: center;
}

.related-posts h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

/* Grid Layout for Related Posts */
.related-post-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.related-post {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 30%; /* 3 items per row */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.related-post a {
  text-decoration: none;
  color: inherit;
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #007BFF;
}

/* Make Related Posts Responsive */
@media (max-width: 768px) {
  .related-post {
      width: 48%; /* 2 items per row on smaller screens */
  }
}

@media (max-width: 480px) {
  .related-post {
      width: 100%; /* 1 item per row on extra small screens */
  }
}
