/* styles.css */

:root {
  --white-40: rgba(255, 255, 255, 0.4);
  --white: rgba(255, 255, 255, 1);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
  background-color: #000;
  background: var(--Gradients-Black-Gradient---Radial, radial-gradient(141.42% 141.42% at 0% 0%, #666 0%, #000 100%));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 40px 20px;
}

header {
  width: 100%;
  background: radial-gradient(231.64% 96.8% at 100% 0%, rgba(83, 83, 83, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%);
  box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(10px);
}
 header img {
  padding: 30px 50px; 
  image-rendering: smooth;  
  width: 150px;
  height: auto;
}

header img {
  width: 250px;
}

.coming-soon {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 50px; /* Updated from 20px to 50px */
}

.main-caption2 {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 flex: 1 0 0;
 align-self: stretch;
  
}
.main-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 10px; */
  
}


.main-caption img.logo {
  width: 180px;
}

.main-caption .imagination {
  font-size: 50.718px;
  font-weight: 400;
  color: var(--white-40);
  /* width: 354px;
  height: 65px; */
}

.main-caption img.spark {
  width: 60px;
}

.main-caption .reality {
  font-size: 101.437px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  margin-left: 300px; /* Add this */
  /* width: 326px;
  height: 128px; */
}

.contact-us {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #A1E92F;
  max-width: 1128px;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
  color: #CCCCCC;
  font-family: Arial, sans-serif;
  padding-top: 25px;
  padding-bottom: 25px;
}

.contact-left,
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 0px;
  flex: 1 1 300px;
}

.contact-title {
  font-size: 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: #CCCCCC;
  margin-bottom: 20px; /* add this */
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px; /* add this for spacing between contact rows */
}


.contact-details a {
  color: #CCCCCC;
  text-decoration: none;
}

.contact-details a:hover {
  color: #A1E92F;  /* match your highlight color */
  text-decoration: underline;
  cursor: pointer;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.contact-row img {
  width: 16px;
  height: 16px;
}

.address div{
  font-size: 14px;
  text-align: right;
  margin-bottom: 10px; /* add this */
}


.directors div {
  font-size: 14px;
  text-align: right;
  margin-bottom: 20px; /* add this */
}

.label {
  color: #A1E92F;
  font-weight: bold;
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


footer.footer-links a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  /* justify-content: space-between; */
  align-items: flex-start;
  border-top: 0.5px solid #A1E92F;
  /* padding: 50px 20px 40px; */
  max-width: 1128px;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
  color: #CCCCCC;
  padding-top: 20px;
  font-family: Arial, sans-serif;
}

.footer-links a {
  color: #A1E92F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.btn {
  display: inline-block;
  margin: 10px auto;
  padding: 12px 24px;
  background-color: #a1e92f;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #8cd820;
}

@media (max-width: 768px) {
  header img {
    width: 200px;
    padding: 20px 40px; 
  }

  .main-caption img.logo {
    width: 130px;
  }

  .main-caption .imagination {
    text-align: center;
    font-size: 18px;
    font-weight: 200;
  }

  .main-caption img.spark {
    width: 40px;
  }

  .main-caption .reality {
    text-align: center;
    font-size: 38px;
    font-weight: 250;
    margin-left: 125px; /* Add this */
  }

  .contact-us {
    display: block; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 14px;
  }

  .contact-left,
  .contact-right {
    display: block; 
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    margin: 0;
    padding: 10px;
     line-height: 1.2;
  }

  .contact-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding: 8px 0;
  }

  .contact-details,
  .address,
  .directors {
    display: block; 
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
  }

  .contact-row {
    display: block; 
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    margin: 0;
    padding: 2px 0;
    line-height: 1.2;
  }

  .contact-row img {
    width: 14px;
    height: auto;
  }

  .address div,
  .directors div {
    font-size: 12px;
    margin: 2px 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    line-height: 1.2;
    gap: 4px;
  }

  .label {
    font-weight: 600;
  }

  .footer-links {
    display: block; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px 0 0;
    gap: 4px;
    padding: 6px 0;
  }

  /* Reset global margins and paddings inside .contact-us */
  .contact-us * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Optional: smaller links */
  .footer-links a {
    font-size: 14px;
    
  }
}




