/* RESET */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
     font-family: 'Arboria';
     
}

@font-face {
    font-family: 'Arboria';
    src: url('./fonts/Arboria-Book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Arboria';
    src: url('./fonts/Arboria-Bold.woff2') format('woff2'),
         url('./fonts/Arboria-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* FOREGROUND CONTENT */
.main-container {
    position: relative;
    z-index: 2;
    flex: 1;
    /* this makes footer visible */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    color: white;
    padding: 80px 20px 40px;
    /* top spacing + space above footer */
}


.text-desc svg {
    margin: 0 4px;
    vertical-align: middle;
}



 /* BACKGROUND IMAGE */
 .bg-image {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('Arkannect_bg.jpg') no-repeat center center / cover !important;
     z-index: 0;
 }

 .bg-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.65); /* adjust 0.5 → darker/lighter */
    z-index: 1;
}


.moving-image {
    position: absolute;
    bottom: 50px; /* adjust position */
    width: 100%;
    overflow: hidden;
}

.moving-image img {
    position: relative;
    width: 100%; /* adjust size */
    animation: floatSide 4s ease-in-out infinite;
}

/* Left ↔ Right movement */




@keyframes floatSide {
    0% {
        transform: translate(-20px, 0);
    }
    50% {
        transform: translate(20px, -10px);
    }
    100% {
        transform: translate(-20px, 0);
    }
}
 


.logo img {
    width: 100%;
    max-width: 250px; /* controls max size */
    height: auto;
    border-radius: 20px;
}

 .new-h1 {
     font-family: 'Arboria', sans-serif;
     font-size: 45px;
     line-height: 55px;
     font-weight: bold;
     margin: 20px 0px;
 }

  .new-h1 span,.footer span{
   color:#F48C4C;
 }

 .text-desc {
    font-family: 'Arboria', sans-serif;
     font-size: 20px;
     line-height: 25px;
     font-weight: 400;
     
 }

 .coming-text {
    font-family: 'Arboria', sans-serif;
     font-size: 22px;
     line-height: 28px;
     font-weight: 400;
     
 }

 /* COUNTDOWN CIRCLES */
 .timer {
     margin-top: 40px;
     display: flex;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
 }

 .circle {
     width: 130px;
     height: 130px;
     background: #4c88b559;
     /* background: rgba(0, 0, 0, 0.55); */
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
     display: flex;
     flex-direction: column;
     justify-content: center;
     color: white;
     font-weight: 600;
 }

 .circle span:first-child {
     font-size: 32px;
     font-weight: bold;
     color: #26bdb3;
 }

 .circle span:last-child {
     font-size: 16px;
     text-transform: uppercase;
 }

 /* MOBILE RESPONSIVE */
 @media (max-width: 768px) {


    .text-desc {
           
            font-size: 16px;
            line-height: 20px;
        }

    .main-container {
            align-items: flex-start;
           
            padding-top: 60px;
           
            padding-bottom: 20px;
           
        }

    .new-h1 {
        margin-top: 50px;
        font-size: 35px;
        line-height: 40px;
    }


     .circle {
         width: 90px;
         height: 90px;
     }

     .circle span:first-child {
         font-size: 20px;
     }

          .timer {
              gap: 15px;
              /* smaller gap for mobile */
          }
    
          .circle {
              width: 40%;
              /* two per row */
              height: 90px;
              margin-bottom: 15px;
              /* spacing between rows */
          }
    
          .circle span:first-child {
              font-size: 20px;
          }
    
          .circle span:last-child {
              font-size: 12px;
          }

         .footer {
                      color: #aaa0a0;
                      font-size: 16px;
                     
        }
 }

 .footer {
     color: #aaa0a0;
     font-size: 18px;
     text-align: center;
     background-color: rgba(0, 0, 0, 0.97);
     padding: 12px;
     position: relative;
     /* keep in flow */
     z-index: 2;
     /* above bg/canvas */
        flex-shrink: 0;
        /* DON'T collapse */
        z-index: 3;
 }




 .text-desc.d-flex {
     display: flex;
     justify-content: center;
    
     align-items: center;
  
     gap: 10px;
 
     text-align: center;

 }
