


/* General Page Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}





h1 {
  color: green;
}





/* Apply background only to homepage */
.home {
  background-image: url("images/said1.jpg");
  background-size: 390px 650px; /* Width is 800px, height adjusts automatically */
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 100vh;
}





hr {
  border: none;
  height: 10px;
  background-color: orange; /* Change to your desired color */
  margin: 10;
}


nav a.active {
  background-color: red; /* The “moving” highlight color */
  color: white;
  border-radius: 4px;
}


.contact {
}


nav a.active {
  background-color: red; /* The “moving” highlight color */
  color: white;
  border-radius: 4px;
}



h1 {
  color: green;
}




nav {
  background-color: green; /* 👈 Change this to any color you like */
  padding: 30px;
  text-align: center;
}

nav a {
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
}

nav a.active {
  background-color: #007bff;
  border-radius: 5px;
}









.nav-link {
  display: inline-block;
  background-color: pink;  /* Change this color */
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
}





/* Overlay for homepage and content container */
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  min-height: 10vh;
  padding: 5px;
  color:yellow;
}

/* Body font setup (for all pages) */
body {
  font-family: Arial, sans-serif;
}

/* Header Styling */
header {
  text-align: center;
  padding: 5px;
}

header h1 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Navigation Bar */
nav {
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: white;
  background-color: #005b96;

  padding: 0px 0px;
  
  
  
  
  margin: 5px;
  border-radius: 5px;
  display: inline-block;
  
  transition: background-color 1s;
  
  
  
  
  
  
}






nav a.active {
  background-color: red;
  color: white;
  border-radius: 4px;
  font-weight: bold;

}


nav a:hover {
  background-color: white;
}

/* Section Content */
main {
  padding: 20px;
  text-align: center;
}

h2 {
  margin-bottom: 15px;
}







h1 {
  color: green;
}






p, li {
  font-size: 18px;
  line-height: 1.6;
}

/* Menu Page List Styling */
ol, ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 20px auto;
  background-color: blue;
  padding: 20px;
  color: white;
}

/* Gallery Styling */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  align-items: center; 
  margin: 30px auto;
  
  
}

nav a.active {
  background-color: red; /* The “moving” highlight color */
  color: white;
  border-radius: 4px;
}






.image-row {
  display: flex;        /* Make children line up horizontally */
  gap: 30px;            /* Space between images */
  justify-content: center; /* Center the row horizontally (optional) */
}

.image-row img {
  max-width: 97px;     /* Limit image width */
  height: 150px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}





.gallery img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 6px rgba(0, 0, 0, 0.3);
}

/* Contact Page Styling */
.contact-info {
  font-size: 18px;
  line-height: 1.7;
}

/* Footer Styling */
footer {
  text-align: center;
  padding: 15px;
  background-color: #ddd;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 30px;
}
