html, body {
    margin: 0;
    padding: 0;
    font-family: Alexandria-Light;
    color: #fff;
}

@font-face {
    font-family: 'Alexandria-Light';
    src: url('../fonts/Alexandria-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Alexandria-SemiBold';
    src: url('../fonts/Alexandria-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'HacenTunisia';
    src: url(../fonts/HacenTunisia.ttf);
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

.container {
    background: url('../images/kv.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.grid {
    max-width: 1140px;
    width: 100%;
    margin: auto;
    padding: 0px 20px;
    box-sizing: border-box;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 60px;

    img {
        width: 100%;
        height: auto;
    }
}

.content {
    max-width: 480px;
    margin-bottom: 20px;

    h1 {
        font-family: 'Alexandria-SemiBold';
        font-style: normal;
        font-weight: 600;
        font-size: 62px;
        line-height: 60px;
        /* or 97% */
        letter-spacing: -0.02em;
    
        background: linear-gradient(180deg, #CB5828 0%, #E89623 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        margin-bottom: 15px;
    }

    h4 {
        font-size: 22px;
    }
}

.selection {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 60px;
    .title {
        font-size: 46px;
        font-family: 'Alexandria-SemiBold';
        max-width: 520px;
    }

    .options {
        display: flex;
        flex-direction: row;
        gap: 80px;
    }
}

.cta-container {
    opacity: 1;
    transition: all 0.3s ease-in-out;
    a {text-decoration: none; color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-logo {
        img {width: 100%;}
    }

    .cta-landing {
        width: 100%;
        padding: 10px 20px;
        border-radius: 100px;
        border-radius: 50px;
        font-family: 'Alexandria-SemiBold';
        text-align: center;
        box-sizing: border-box;
    }

    &:hover {
        opacity: 0.8;
    }

}

.do-dubai {
    .cta-logo {
      max-width: 120px;
    }
  
    .cta-landing {
      background: linear-gradient(87.02deg, #1B9FB7 4.15%, #4DD1E9 100%);
      cursor: pointer;
      position: relative;
      overflow: hidden;

      span {position: relative; z-index: 2;}
  
      &::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(-80.02deg, #0192ac -10.15%, #4DD1E9 100%);
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
        z-index: 0;
      }
  
      &:hover::before {
        opacity: 1;
      }
  
      /* Ensure content stays above gradient layers */
      * {
        position: relative;
        z-index: 1;
      }
    }
  }

.do-cairo {
    .cta-logo {max-width: 145px;}
    .cta-landing {
        background: linear-gradient(87.02deg, #CC5B27 4.15%, #E79424 100%);
        cursor: pointer;
        position: relative;
        overflow: hidden;

        span {position: relative; z-index: 2;}
    
        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(-87.02deg, #c14207 -10.15%, #fa9005 100%);
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
            z-index: 0;
        }
    
        &:hover::before {
            opacity: 1;
        }
    
        /* Ensure content stays above gradient layers */
        * {
            position: relative;
            z-index: 1;
        }
    }
}

.lang .langSwitch {
    background: #fff;
    border-radius: 12px;
    padding: 4px 10px;
    font-family: HacenTunisia;
    text-decoration: none;
    color: #004255;
    display: block;
}

.lang {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

@media screen and (max-width: 1080px) {
    .selection {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .logo {
        margin-bottom: 30px;
    }

    .content h1 {
        font-size: 48px;
        line-height: 50px;
    }
    .content h4 {
        font-size: 18px;
    }
    .selection .title {
        font-size: 36px;
    }
}

@media screen and (max-width: 740px) {
    .container {
        justify-content: flex-start;
    }

    .grid {
        margin: 80px 0 0;
    }

    .logo {
        width: 120px;
        margin-bottom: 20px;
    }
    .content h1 {
        font-size: 38px;
        line-height: 40px;
    }
    .content h4 {
        font-size: 16px;
    }
    .selection .title {
        font-size: 30px;
    }

    .do-dubai {
        .cta-logo {
          max-width: 80px;
        }
    }

    .do-cairo {
        .cta-logo {
          max-width: 96px;
        }
    }

    .cta-container {
        .cta-landing {
            padding: 8px 16px;
            font-size: 14px;
        }
    }

    .selection .options {
        justify-content: center;
        width: 100%;
    }
}