@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500;700&display=swap');
@keyframes slideInFromLeft {
    0% {
      left: -500px; /* Start position, off-screen to the left */
    }
    100% {
      left: 0; /* End position, fully visible on the screen */
    }
  }
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: poppins;
}
body {
    background-image: url("./images/desert.jpg"); /* Specify the path to your background image */
    background-size: cover; /* Adjust background size as needed */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: Fixed background */
    background-color: rgba(249, 236, 218, 0.3) ; /* Background color for fallback */
}

body {
    background-color: #F9ECDA;
}


nav {
    z-index: 2;
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 0;
}

nav ul {
    flex: 1;
    text-align: right;
    padding-right: 270px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 30px;
}

nav ul li a {
    color: #102C57;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #102C57;
    transition: width 0.4s;
}

nav ul li a:hover::after {
    width: 100%;
}

.logo {
    position: fixed;
    left: 120px;
    font-weight: bold;
    text-transform: uppercase;
    color: #0b0b0b;
}

.search {
    position: fixed;
    right: 160px;
}

.menu {
    position: fixed;
    right: 100px;
}

.img img {
    position: relative;
    width: 450px;
    left: 8.5%;
    top: -70px;
}

.title {
    position: fixed;
    position: absolute;
    top: 350px;
    left: 43%;
    line-height: .5;
    font-size: 110px;
    /* font-weight: 700; */
    letter-spacing: 8px;
    color:#010d38;
}

.title p {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    left: 200px;
    letter-spacing: 10px;
    
}
#legal {
    color: #FFC453;
}

.btn a {
    position: relative;
    text-decoration: none;
    bottom: 260px;
    right: -57%;
    text-transform: uppercase;
    background: #ffffff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    transition: .4s;
}

.btn a:hover {
    background: #ffffff;
    color: #fff;
}

.year {
    font-weight: 700;
    position: fixed;
    top: 556px;
    left: 110px;
    padding: 10px 30px;
}

.media ul {
    list-style: none;
    position: fixed;
    right: 20px;
    top: 63%;
    padding: 10px 10px;
}

.media ul li {
    cursor: pointer;
    font-size: 18px;
    margin: 24px 0;
    transition: .1s;
}

.media ul li:hover {
    transform: scale(1.8);
}

.left-image {
    width: 500px;/* Adjust the width as needed */
    height: 0px;
    position: absolute;
    top: 400px;
    left: 100px;
    bottom: 0;
    background-color: #F9ECDA;
    animation: slideInFromLeft 1s ease forwards;
}

/* Style for the image */
.left-image img{
    max-width: 100%; /* Ensure the image fits within its container */
    display: block; /* Remove any extra spacing below the image */
}