/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-item p {
  padding: 10px;
  text-align: center;
  margin: 0;
  font-weight: bold;
}

/* Form Styles */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-info {
  margin-top: 30px;
  padding: 20px;
  background: #f5f7fa;
  border-radius: 10px;
}
/* Base Styles */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
  transition: all 0.3s ease-in-out;
}

/* Header Styles */
header {
  background: linear-gradient(45deg, #FF9A9E 0%, #FAD0C4 99%, #FAD0C4 100%);
  color: white;
  padding: 30px;
  text-align: center;
}

/* Navigation */
nav {
  background: linear-gradient(to right, #FF416C, #FF4B2B);
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

nav a:hover {
  background: rgba(255,255,255,0.2);
}

/* Add all other CSS from previous examples */
/* All your CSS from previous example */
/* Move all style tags content here */
    body {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      background-color: #fff;
      color: #333;
      transition: all 0.3s ease-in-out;
    }
    header, footer {
      background: linear-gradient(45deg, #FF9A9E 0%, #FAD0C4 99%, #FAD0C4 100%);
      color: white;
      padding: 30px;
      text-align: center;
    }
    nav {
      background: linear-gradient(to right, #FF416C, #FF4B2B);
      color: white;
      padding: 15px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
      font-size: 18px;
      padding: 8px 15px;
      border-radius: 20px;
      transition: all 0.3s ease;
    }
    h1 {
      font-family: 'Great Vibes', cursive;
      font-size: 3.5rem;
      background: linear-gradient(to right, #FF416C, #FF4B2B);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }
    .admin-panel {
      background: #f8f9fa;
      padding: 20px;
      margin: 20px auto;
      max-width: 800px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .admin-form {
      margin-bottom: 20px;
    }
