/* Font declarations */
@font-face {
    font-family: 'Berlin Sans';
    src: url('fonts/berlinsans.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  /* Basic resets */
  * { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
  }
  
  html, body { 
    height: 100%; 
    font-family: 'Gotham', 'Arial', sans-serif; 
    background: #fdf6d6; 
    color: #5d5020; 
    overflow-x: hidden;
  }
  
  /* Page wrapper */
  .page {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
  }
  
  /* Decorative huge 'M U' (left side background) */
  .decor-MU {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background-image: url('images/image bg.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
  }
  
  /* Content wrapper - contains all text content */
  .content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  /* Logo section */
  .top {
    display: flex;
    align-items: center;
  }
  
  .logo-wrap { 
    display: flex; 
    align-items: center; 
  }
  
  .logo { 
    width: 450px; 
    height: auto; 
    display: block; 
    object-fit: contain; 
  }
  
  /* Main center area */
  .center {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  /* Headline */
  .headline {
    font-family: 'Berlin Sans', 'Arial', sans-serif;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 1px;
    color: #5d5020;
    text-transform: uppercase;
    line-height: 1.3;
  }
  
  /* Coming soon row */
  .coming-row {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
  }
  
  .coming {
    font-family: 'Berlin Sans', sans-serif;
    font-size: 26px;
    color: #dd6db0;
    text-transform: uppercase;
    font-weight: 400;
    flex-shrink: 0;
  }
  
  /* Arrow line - extends to the right edge of screen */
  .arrow-line {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    margin-right: -80px; /* Negative margin to extend beyond content padding */
  }
  
  .arrow-line .arrow-image {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
  }
  
  /* Show desktop arrow by default, hide mobile */
  .arrow-line .arrow-desktop {
    display: block;
  }
  
  .arrow-line .arrow-mobile {
    display: none;
  }
  
  /* Group companies block */
  .group {
    margin-top: 8px;
  }
  
  .group-heading {
    font-family: 'Gotham', sans-serif;
    font-weight: 400;
    color: #dd6db0;
    font-size: 18px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Buttons row */
  .buttons {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .company-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    background: #ffab35;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Gotham', sans-serif;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 500;
    transition: transform 0.2s ease;
  }
  
  .company-btn:hover {
    transform: translateY(-2px);
  }
  
  /* Footer */
  .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .contact {
    font-size: 20px;
    color: #5d5020;
    font-weight: 500;
  }
  
  .contact a { 
    color: inherit; 
    text-decoration: none; 
    border-bottom: 1px solid rgba(93,80,32,0.3);
    transition: border-color 0.2s ease;
  }
  
  .contact a:hover {
    border-bottom-color: #5d5020;
  }
  
  /* Social icons */
  .socials { 
    display: flex; 
    gap: 16px; 
    align-items: center; 
  }
  
  .social {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: transform 0.2s ease;
  }
  
  .social:hover {
    transform: scale(1.1);
  }
  
  .social img { 
    width: 48px; 
    height: 48px; 
    display: block;
    border-radius: 50%;
    object-fit: cover;
  }
  
  /* Tablet and smaller desktop (1200px and below) */
  @media (max-width: 1200px) {
    .page { 
      padding: 60px 60px; 
    }
    
    .content-wrapper {
      max-width: 800px;
      margin-right: 40px;
    }
    
    .logo { 
      width: 380px; 
    }
    
    .headline { 
      font-size: 28px; 
    }
    
    .coming {
      font-size: 24px;
    }
    
    .arrow-line {
      margin-right: -60px; /* Extend to screen edge */
    }
  }
  
  /* Tablet portrait (968px and below) */
  @media (max-width: 968px) {
    .page { 
      padding: 50px 40px; 
      align-items: flex-start;
      justify-content: flex-start;
    }
    
    .decor-MU { 
      width: 60%;
      opacity: 0.4;
    }
    
    .content-wrapper {
      max-width: 100%;
      margin-right: 0;
      margin-left: 0;
      margin-top: 20px;
    }
    
    .logo { 
      width: 320px; 
    }
    
    .headline { 
      font-size: 24px; 
    }
    
    .coming {
      font-size: 22px;
    }
    
    .arrow-line {
      margin-right: -40px; /* Extend to screen edge on tablet */
    }
    
    .buttons {
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
    }
    
    .company-btn {
      width: 100%;
      max-width: 300px;
      text-align: center;
    }
    
    .bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
  }
  
  /* Mobile devices (768px and below) */
  @media (max-width: 768px) {
    .page { 
      padding: 40px 24px;
      min-height: 100vh;
      display: flex;
      align-items: stretch;
    }
    
    /* Full screen background on mobile */
    .decor-MU { 
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      opacity: 0.35;
      background-position: center center;
      background-size: cover;
    }
    
    .content-wrapper {
      width: 100%;
      max-width: 100%;
      margin: 0;
      gap: 0;
      align-items: center;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100%;
    }
    
    .top {
      width: 100%;
      justify-content: center;
      padding-top: 20px;
    }
    
    .logo { 
      width: 100%;
      max-width: 260px;
    }
    
    .center {
      width: 100%;
      gap: 0;
      align-items: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex: 1;
      padding: 20px 0;
    }
    
    .headline {
      font-size: 22px;
      text-align: center;
      line-height: 1.4;
      max-width: 300px;
      margin-bottom: 40px;
    }
    
    /* Coming soon row - centered on mobile, no arrow */
    .coming-row {
      width: 100%;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 16px;
      text-align: center;
      margin-right: 0;
      margin-bottom: 50px;
    }
    
    .coming {
      font-size: 20px;
      flex-shrink: 0;
    }
    
    .arrow-line {
      display: none; /* Hide arrow on mobile */
    }
    
    /* Group companies */
    .group {
      width: 100%;
      margin-top: 0;
    }
    
    .group-heading {
      font-size: 17px;
      margin-bottom: 18px;
      text-align: center;
    }
    
    .buttons {
      flex-direction: column;
      width: 100%;
      gap: 14px;
      align-items: center;
    }
    
    .company-btn {
      width: 100%;
      max-width: 280px;
      padding: 15px 28px;
      font-size: 13px;
      text-align: center;
    }
    
    /* Footer */
    .bottom {
      width: 100%;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      margin-top: 0;
      text-align: center;
      padding-bottom: 20px;
    }
    
    .contact {
      font-size: 17px;
      line-height: 1.6;
    }
    
    .socials {
      justify-content: center;
    }
    
    .social {
      width: 44px;
      height: 44px;
    }
    
    .social img {
      width: 44px;
      height: 44px;
    }
  }
  
  /* Small mobile devices (480px and below) */
  @media (max-width: 480px) {
    .page {
      padding: 32px 20px;
    }
    
    .logo {
      max-width: 220px;
    }
    
    .headline {
      font-size: 19px;
      max-width: 280px;
    }
    
    .coming {
      font-size: 18px;
    }
    
    .group-heading {
      font-size: 15px;
    }
    
    .company-btn {
      max-width: 260px;
      padding: 14px 24px;
      font-size: 12px;
    }
    
    .contact {
      font-size: 15px;
    }
    
    .social {
      width: 40px;
      height: 40px;
    }
    
    .social img {
      width: 40px;
      height: 40px;
    }
  }
  
  /* Very small devices (360px and below) */
  @media (max-width: 360px) {
    .page {
      padding: 24px 16px;
    }
    
    .logo {
      max-width: 200px;
    }
    
    .headline {
      font-size: 17px;
      max-width: 260px;
    }
    
    .coming {
      font-size: 16px;
    }
    
    .company-btn {
      max-width: 240px;
      padding: 12px 20px;
    }
  }