/* style.css - Unified Styling for Santosh International School Website */

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #ebedef; 
  color: #333;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

/* Navbar */
.navbar {
  background: #004d40;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height: 50px;
  margin-right: 10px;
}

.navbar .logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-links li a:hover,
.navbar .nav-links li a.active {
  color: #ffd600;
}

/* Header */
.page-header {
  background: #00796b;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.page-header h1 {
  font-size: 2.5rem;
}

/* Sections */
section {
  padding: 2rem 0;
}

h2 {
  margin-bottom: 1rem;
  color: #004d40;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

p, li {
  font-size: 1rem;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #004d40;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #00695c;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin-top: 1rem;
}

input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button[type="submit"] {
  background: #004d40;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #00695c;
}

/* Footer */
footer {
  background: #263238;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* Feature List with Icons */
.features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;

}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.features-list li img {
  width: 900px;
  height: 400px;
  margin-right: 200px;
  margin-left: 400px;
  align-items: center;
  object-fit: cover;
  
}

.school-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-top: 1rem;
}



