@import url('https://fonts.googleapis.com/css2?family=Istok+Web:wght@400;700&display=swap');


/* CSS Variables for Colors */
:root {
    --primary-color: #252525;
    --secondary-color: #987864;
    --light-color: #DBDBDB;
    --text-color: #252525;
    --home-bg-color: #FCFCFC;
 
    --accent-color: #e74c3c;
}

/* Reset and Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Istok Web', Arial, sans-serif;
    color: var(--text-color); 
    line-height: 1.6;
    background-color: var(--home-bg-color);
    position: relative;
}

a {
    text-decoration: none;
    color: var(--light-color);
}

ul {
    list-style: none;
}

/* Header Styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--light-color);
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header nav {
    display: flex;
    align-items: center;
    padding: 0.5rem 2rem;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: auto;
}

header .logo img{
    height: 70px;
}

header .contant-us-btn{
     padding: 10px 20px;
     background-color: var(--light-color);
     border-radius: 8px; 
     color: black;
     font-weight: 600;
     transition: all 0.2s ease;
}

header .contant-us-btn:hover{
    background-color: var(--secondary-color);
    color: var(--light-color)
}

header .language-switch{
    margin-left: 30px;
    cursor: pointer;
    height: 1.4em;

    img{
        height: 100%;
        
    }
}

header ul {
    display: flex;
    gap: 3rem;
}

header ul li a {
    font-size: 1rem;
    transition: color 0.3s ease;
    font-size: 16px;
    font-weight: bold;
}

header ul li a:hover {
    color: gray;
}

/* Section Styling */
section {
    min-height: 20vh;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


main{
    padding-top: 98px;
    width: 100%;
}



/* Footer Styling */
footer {
    background-color: var(--primary-color);
    color: var(--home-bg-color);
    padding: 7%;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

footer .top-row{
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 30px;
}

footer .social-links{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

footer .logo-container{
    width: 10%;

    img{
        width: 100%;
    }
}

footer .bottom-info{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

footer nav{
    ul{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        height: 100px;
        justify-content: space-between;
        

        li{
            margin-right: 80px;
        }
    }

    a:hover{
        color: gray;
    }
}