
/* Reset & Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff0f5;
  color: #333;
  line-height: 1.6;
  padding-bottom: 60px;
}

/* Header */
header {
  background-color: #f5a4b1;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

/* Navigation */
nav {
  background-color: #f378a7;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav li {
  margin: 0 15px;
}

nav a {
  color: #e5dae1;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

nav a:hover {
  text-decoration: underline;
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  color: #d63384;
  margin-bottom: 15px;
}

/* Lists */
ul, ol {
  margin-left: 20px;
  padding-left: 10px;
}

li {
  margin-bottom: 10px;
}

/* Gallery */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-grid img {
  width: 250px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Contact & Form */
section#contact p {
  margin: 10px 0;
  font-size: 1rem;
}

form {
  margin-top: 20px;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

form input[type=\"file\"] {
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ff69b4;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background-color: #ff5fca;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f598c0;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}
