/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: linear-gradient(to bottom, #1A81E9, #69E3FF);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
}

/* Centered content */
.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.center-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.graphic-placeholder {
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.studio-name {
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-transform: lowercase;
  white-space: nowrap;
}

/* Footer */
/* Footer styling */
.footer {
  position: relative;
  width: 100%;
  padding: 2rem 0 4rem 0; /* more bottom padding */
  background: transparent;
  text-align: center;
}


.icon:hover {
  opacity: 0.8;
}

/* Social icons container */
.socials {
  margin-bottom: 0.5rem;
}


.socials a {
  margin: 0 0.5rem;
  display: inline-block;
  color: white;
  text-decoration: none;
}

/* Email */
.footer .email {
  color: white;
  font-family: 'Jua', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Logo bottom right */
.footer-logo {
  position: absolute;
  right: 5rem;   /* distance from right edge */
  bottom: 1rem;  /* distance from bottom edge */
  max-width: 80px;   /* desktop size */
  height: auto;
  object-fit: contain;
  z-index: 10;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .footer-logo {
    max-width: 60px;
    right: 1rem;
    bottom: 0.5rem;
  }
}


