
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f8f3ed 0%, #e7e2da 100%);
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  background-attachment: fixed;
  background-size: cover;
}

header {
  background: linear-gradient(135deg, #e2725b 0%, #b85642 100%);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
}

header p {
  font-size: 1rem;
  margin-top: 6px;
}

nav {
  background-color: #ffffffd9;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero-img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  margin: 5px 0 15px;
  border-radius: 6px;
}

section {
  background-color: #ffffffda;
  backdrop-filter: blur(4px);
  padding: 25px 20px;
  max-width: 900px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: #E2725B;
}

h3 {
  color: #333;
  margin-top: 15px;
  font-size: 1.1rem;
}

ul {
  padding-left: 18px;
  margin-bottom: 8px;
}

ul li {
  margin-bottom: 4px;
}

p {
  margin-bottom: 10px;
}

form input,
form textarea,
form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
}

form button {
  background-color: #E2725B;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

#thank-you-message {
  display: none;
  margin-top: 15px;
  color: green;
}

.contact-info {
  margin-top: 18px;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #eae6df;
  margin-top: 25px;
  font-size: 0.9rem;
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.gallery-row img {
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .gallery-row {
    flex-direction: column;
    align-items: center;
  }
}


/* Animated logo hover effect */
.floating-logo img {
  transition: transform 0.3s ease;
}
.floating-logo img:hover {
  transform: scale(1.08);
}

/* Nav link hover animation */
nav a {
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}
nav a:hover {
  color: #E2725B;
  border-bottom: 2px solid #E2725B;
}
