/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom right, #ff7eb3, #ff758c, #ff6a00);
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

header {
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 0;
  text-align: center;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffeb3b;
}

/* Gallery */
#gallery {
  padding: 2rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-grid .photo img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid .photo img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* About & Contact */
#about, #contact {
  padding: 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  margin: 2rem 0;
  border-radius: 20px;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

input, textarea, button {
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  outline: none;
}

input, textarea {
  background: #fff;
  color: #000;
}

button {
  background: #ffeb3b;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #ffc107;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  margin-top: 2rem;
}
