/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Playfair+Display:wght@400;600&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page layout */
body {
  min-height: 100vh;
  background: url("landing-page-background2.jpg") no-repeat center center/cover;
  position: relative;
  font-family: "Playfair Display", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #333;
}

@media only screen and (min-width: 1600px) {
  body {
    background: url('landing-page-background.jpg') no-repeat center center/cover;
  }
}

/* Soft off-white overlay */
.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 245, 0.8);
  z-index: 0;
}

/* Main content area */
.content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

/* Header styles */
.logo {
  font-size: 3rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  color: rgba(68, 68, 68, 0.8);
}

.studio {
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: rgba(68, 68, 68, 0.8);
  font-weight: 400;
  margin-top: 0.3rem;
  margin-bottom: 3rem;
}

/* Coming Soon section */
.coming-soon h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(68, 68, 68, 0.8);
  margin-bottom: 3rem;
}

/* Social Links */
.social {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.social-block h4 {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: rgba(68, 68, 68, 0.8);
  margin-bottom: 0.5rem;
}

.social-block a {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: rgba(68, 68, 68, 0.8);
  border-bottom: 2px solid #333;
  padding-bottom: 0.2rem;
  transition: opacity 0.3s ease;
}

.social-block a:hover {
  opacity: 0.7;
}

/* Responsive design */
@media (max-width: 600px) {
  .logo {
    font-size: 2.2rem;
  }

  .coming-soon h3 {
    font-size: 1.3rem;
  }

  .social-block h4 {
    font-size: 0.9rem;
  }

  .social-block a {
    font-size: 0.85rem;
  }
}
