/* /css/style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #1e3d59;
  color: #fff;
  padding: 30px 0;
}

header h1 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-align: center;
}

header nav {
  margin-top: 15px;
  text-align: center;
}

header nav ul {
  list-style: none;
}

header nav ul li {
  display: inline-block;
  margin: 0 15px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #ffc107;
}

.hero {
  background: url('../images/img1.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 61, 89, 0.6);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
}

main {
  padding: 60px 0;
}

.photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  color: #1e3d59;
  margin-bottom: 10px;
}

.contact-donate {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info, .donate {
  flex: 1 1 300px;
}

.contact-info h2,
.donate h2 {
  font-size: 1.8rem;
  color: #1e3d59;
  margin-bottom: 15px;
}

.contact-info p,
.donate p {
  margin-bottom: 10px;
}

.donate img {
  margin-top: 15px;
  border: 4px solid #1e3d59;
  border-radius: 8px;
  width: 200px;
}

.admin-login {
  text-align: center;
  margin: 50px 0 20px;
}

.admin-btn {
  background: #1e3d59;
  color: #fff;
  padding: 14px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.admin-btn:hover {
  background: #163047;
  transform: translateY(-3px);
}

footer {
  background: #1e3d59;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}