@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&family=Lexend:wght@300;400&family=Cairo:wght@600&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
    font-family:  Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.container {
    background: #c79b53;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    transition: background 0.8s ease;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    width: 85%;
    margin: auto;
}

.logo {
    width: 50px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

ul li {
    display: inline-block;
}

ul li a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: 0.3s;
    opacity: 0.8;
}

ul li a:hover {
    opacity: 1;
    color: #ffd700; 
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin: 60px auto;
}

.content .text {
    color: white;
    width: 50%;
}

.content .text h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 10px;
}

.content .text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.content .text a {
    text-decoration: none;
    text-transform: uppercase;
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.4s;
    display: inline-block;
}

.content .text a:hover {
    letter-spacing: 2px;
    background: #ffd700;
}

.content .img {
    width: 40%;
    display: flex;
    justify-content: center;
}

.content .img img {
    width: 280px; 
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.icons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1); 
    padding: 10px 20px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

.icons img {
    width: 50px;
    margin: 0 10px;
    cursor: pointer;
    transition: 0.5s ease;
}

.icons img:hover {
    transform: scale(1.3) translateY(-10px);
}