body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #fffaf6;
  color: #444;
  text-align: center;
}

/* Header */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 15px;
  position: relative;
}

header h1 {
  font-size: 2.2rem;
  color: #c84b31;
  font-weight: 600;
}

.ig-link {
  position: absolute;
  right: 25px;
  top: 25px;
}

.ig-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.2s;
}

.ig-icon:hover {
  transform: scale(1.1);
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  gap: 30px;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-text {
  max-width: 450px;
  text-align: left;
}

.about-text h2 {
  margin-bottom: 10px;
  color: #c84b31;
}

/* Gallery Section */
.gallery {
  background-color: #fff4ed;
  padding: 50px 20px;
}

.gallery h2 {
  margin-bottom: 25px;
  color: #c84b31;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  justify-items: center;
}

.gallery-grid img {
  width: 180px;
  height: 180px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* Recommend Section */
.recommend {
  padding: 60px 20px;
}

.recommend h2 {
  color: #c84b31;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  height: 100px;
  resize: none;
}

button {
  background-color: #c84b31;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #a83f2b;
}

.email-note {
  margin-top: 15px;
  font-size: 0.9rem;
}

footer {
  background-color: #fff4ed;
  padding: 20px;
  font-size: 0.85rem;
  color: #666;
  margin-top: 40px;
}


/* Navigation Buttons */
.nav-buttons {
  position: absolute;
  right: 20px;
  top: 25px;
  display: flex;
  gap: 10px;
}

.nav-btn {
  background-color: #c84b31;
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.nav-btn:hover {
  background-color: #a83f2b;
}

/* Gallery Captions */
.gallery-grid a {
  text-decoration: none;
  color: inherit;
}

.caption {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #c84b31;
  text-align: center;
}

/* Adjust gallery layout slightly for this page */
.gallery h2 {
  color: #c84b31;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  justify-items: center;
  padding: 0 20px;
}

.gallery-grid img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
