* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}


/* Cards */
body.dark .gallery-container .card {
  background: #1a1a1a;
  box-shadow: 0 4px 8px rgba(255,255,255,0.05);
}

/* About & Contact */
body.dark .about {
  background: #181818;
}

body.dark .contact {
  background: #151515;
}

body.dark input,
body.dark textarea {
  background: #222;
  color: #fff;
  border: 1px solid #444;
}

body.dark footer {
  background: #000;
}

/* Toggle button */
.theme-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  margin-left: 20px;
  transition: 0.3s;
}

.theme-btn:hover {
  opacity: 0.7;
}

header {
  background: #222; 
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

.hero {
  background: url(../Images/IMG-20251123-WA0155.jpg) no-repeat center center/cover;
  color: #ffffff;
  text-align: center;
  padding: 10rem 2rem;
}

.hero h1 {
  font-size: 3rem;
}

.hero .btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: #ffd700;
  color: #222;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.hero .btn:hover {
  background: #ffcc00;
}

.gallery {
  padding: 5rem 2rem;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 2rem;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-container .card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery-container .card:hover {
  transform: translateY(-5px);
}

.gallery-container img {
  width: 100%;
  height: auto;
}

.gallery-container p {
  padding: 0.5rem;
  font-weight: bold;
}

.about {
  padding: 5rem 2rem;
  background: #fff;
  text-align: center;
}

.contact {
  padding: 5rem 2rem;
  background: #eee;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  background: #222;
  color: #fff;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  border-radius: 5px;
}

.contact button:hover {
  background: #444;
}

footer {
  background: #222;
  color: #fff;
  padding: 1.5rem;
  text-align: center;
}
