/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #f0f0f0;
  background-color: #111;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow-x: hidden;
}

/* Background Gradient + Pattern */
.hero-gradient {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  position: relative;
}

.bg-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Container */
.container {
  max-width: 1024px;
  margin: auto;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.5s ease-out;
}

/* Branding Fonts */
.font-brand {
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #a3bded 0%, #6991c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-display {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
  .font-display {
    font-size: 2.5rem;
  }
}

p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: #ccc;
}

/* Email Form */
.email-form {
  max-width: 500px;
  margin: 2rem auto;
  padding: 0.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  background-color: rgba(17, 25, 40, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.125);
  display: flex;
  gap: 0.5rem;
}

.email-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  color: white;
}

.email-input::placeholder {
  color: #aaa;
}

.notify-button {
  background-color: white;
  color: black;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.notify-button:hover {
  background-color: #ddd;
}

/* Gallery */
.gallery {
  margin-top: 3rem;
}

.gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.4s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Social Links */
.socials {
  margin-top: 3rem;
}

.socials p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.social-icons a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #a3bded;
}

/* Notification Popup */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 5px solid green;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s, transform 0.5s;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification.error {
  border-left-color: red;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
