*{
    padding: 0;
    margin: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body{
    line-height: 2;
}
@media only screen and (max-width:700px){
    body, html{
        width: fit-content;
    }
}
/*navbar*/
.navbar {
    background: linear-gradient(to right,#D4AF37, rgb(51, 42, 42));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
@media only screen and (max-width:768px) {
    .navbar ul{
        visibility: hidden;
    }
}
.logo img{
    height: 70px;
    width: 70px;
}
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.navbar ul a{
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease-in-out;
}
ul li a {
    display: inline-block;
}
.navbar ul a:hover {
    transform: scale(1.2);
    text-decoration: underline;
    cursor: pointer;
}
/*hero*/
.hero{
    background: url("assets/safari-hero.jpg");
    background-size: cover;
    height: 100vh;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.about-hero {
    max-width: 600px;
    margin-bottom: 30px;
    color: black;
}

.cta-button {
    font-size: 1.5rem;
    padding: 12px 30px;
    background-color: #D4AF37;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.cta-button a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover {
    transform: scale(1.1);
    color: white;
}


/*footer*/
.footer {
    background: linear-gradient(to right, #D4AF37, black);
    color: white;
    padding: 20px;
}
.navigation ul, a{
    list-style: none;
    text-decoration: none;
    color: #D4AF37;
}
.navigation-social{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 10px;
    padding: 5px;
}
.links{
    margin-top: 10px;
    display: flex;
    margin-top: 10px;
    gap: 20px;
    padding: 10px;
    justify-content: space-around;
}
.copyright{
    display: flex;
    justify-content: center;
}
.navigation p, .social p{
    color: white;
    text-transform: uppercase;
}
.footer .navigation nav ul li a {
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.footer .navigation nav ul li a:hover {
    transform: scale(1.1);
    text-decoration: underline;
}
.social .links a i {
    font-size: 1.7em;
    transition: transform 0.3s ease-out;
}
.social .links a:hover i {
    transform: scale(1.3);
    cursor: pointer;
}