* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.86);
  z-index: 1;
}

.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 600px;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo {
  max-width: 600px;
  height: auto;
  /* filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); */
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 1));
}

.studio-title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-info a:hover {
  opacity: 0.8;
}

.address {
  font-style: normal;
}

.phone a,
.email a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.phone svg,
.email svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .studio-title {
    font-size: 1.5rem;
  }

  .logo {
    max-width: 150px;
  }

  .contact-info p {
    font-size: 1rem;
  }
}
