body {
    background: #46494f !important; /* bullet gray everywhere */
    color: #f2f4fa;
    font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Make ONLY content inside <main> and most sections constrained/narrow */
main {
    max-width: 800px;
    margin: 3rem auto;
    background: transparent;
    border-radius: 2rem;
    box-shadow: none;
    padding: 2.5rem 1.2rem;
    text-align: center;
}

section {
    max-width: 800px;
    margin: 3rem auto;
    background: transparent;
    border-radius: 2rem;
    box-shadow: none;
    padding: 2.5rem 1.2rem;
    text-align: center;
}

/* HERO and ART SECTIONS - full width, show full image, edge-to-edge */
.hero-section {
    background-image: url('images/background.png');
    background-position: center bottom; /* Focuses lower part of image */
    background-size: cover;             /* Ensures it stretches edge-to-edge */
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    border-radius: 0 !important;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-repeat: no-repeat;
    background-color: #46494f;
}

.art-section {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    border-radius: 0 !important;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: #46494f;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.hangar-section {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  border-radius: 0 !important;
  overflow: visible;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  aspect-ratio: 16/9; /* Forces a cinematic proportion */
  background-image: url('images/teaser.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.art-section {
    margin: 10px 0 0 0; /* Reduce gap significantly */
    min-height: 70vh;
    background-image: url('images/logo_banner.png');
}


/* Overlays stay the same */
.hero-overlay {
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Shift content upward */
    margin-top: -120px; /* Try -20px, -40px, -60px depending on how high you want it */
    gap: 0.5rem;
    text-align: center;
    border-radius: 0 !important;
}

 .art-overlay {
    width: 100%;
    height: 100%;
    background: transparent; /* Removes the gray overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 0 !important;
}

.hangar-overlay {
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  color: #f2f4fa;
  z-index: 3;
}


.studio-logo-img {
    display: block;
    max-width: 900px; /* Increase logo size */
    width: 95vw;
    height: auto;
    margin: 0 auto 1.5rem auto;
    filter: drop-shadow(0 4px 32px #0008);
    z-index: 3;
    pointer-events: none;
    user-select: none;
}

.art-overlay {
    background: linear-gradient(180deg, #181c2280 10%, #25211c90 100%);
    color: #fffbe9;
}

.art-section::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, #25211c80 10%, transparent 100%);
    z-index: 2;
}

.worlds-section {
  padding: 4rem 2rem;
  background-color: #0f0f0f; /* Adjust if needed */
  color: #fff;
  text-align: center;
}

.worlds-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.worlds-content p {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.world-image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.world-image-block {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.world-image-block img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.world-image-block h2 {
  font-size: 1.8rem;
  margin-top: 1rem;
  color: #ffcc66;
}

.world-image-block p {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #ddd;
}

.world-image-block .button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #ffcc66;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.world-image-block .button:hover {
  background-color: #e6b800;
}


/* Social icon sizing fix */
.social-icons img {
    width: 38px;
    height: 38px;
    background: #232a34;
    border-radius: 1rem;
    padding: 4px;
    box-shadow: 0 1px 4px #12141740;
    transition: transform 0.18s, box-shadow 0.18s;
    object-fit: contain;
}

.social-icons img:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 12px #39a7c980;
}

/* Button styling for Learn More and YouTube */
.button-link {
    display: inline-block;
    margin: 1rem 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #f2f4fa;
    background-color: #2b313a;
    border: 2px solid #6cd1fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.button-link:hover {
    background-color: #6cd1fa;
    color: #181c22;
    box-shadow: 0 0 12px #6cd1fa99;
}

/* Mobile: shrink hero/art, social icons */
@media (max-width: 700px) {
    .hero-section, .art-section, .hangar-section {
        min-height: 38vh;
    }
    .studio-logo-img {
        max-width: 98vw;
    }
    .social-icons img {
        width: 30px;
        height: 30px;
    }
    main, section {
        padding: 1.2rem 0.4rem;
    }
}

.hangar-overlay p,
.hangar-overlay h2,
.art-overlay p,
.art-overlay h2 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    text-align: center;
    line-height: 1.6;
}
