* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif; 
    background-color: #000; 
    color: white;
    min-height: 100vh;
    overflow-x: hidden; 
    display: flex;
    flex-direction: column; 
}

/* Language Selector */
.language-selector {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10;
}


.language-selector select {
    padding: 8px 12px;
    font-size: 1rem;
    border-radius: 6px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    border: 1px solid white;
}


/* Hero section styling */
.hero {
    flex-grow: 1; 
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    min-height: 100vh; 
    width: 100%;
    background-image: url('https://cdn.motor1.com/images/mgl/L302gN/s1/2023-zeekr-001.jpg'); 
    background-size: cover; /* Cover the entire area */
    background-position: 100% center; 
    position: relative;
    padding: 60px 80px; 
    overflow: hidden; 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from left (darker) to right (lighter) */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%); 
    z-index: 1;
}

/* Content container within the hero */
.content {
    position: relative;
    z-index: 2; 
    max-width: 650px; 
    text-align: left; 
}

/* Zeekr Logo  */
.logo {
    max-width: 220px; 
    height: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1); 
    
}

/* Main heading */
h1 {
    font-family: 'Archivo', sans-serif; 
    font-size: 3.8rem; 
    font-weight: 700; 
    line-height: 1.1;  
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); 
}

/* Descriptive paragraph */
.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0; /* Slightly off-white for body text */
}

/* Price display */
.price {
    font-size: 2.2rem; 
    font-weight: 700; 
    color: #00ff8c; 
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0,255,140,0.4); 
}

/* Telegram button  */
.telegram-button {
    display: inline-flex; 
    align-items: center;
    padding: 18px 40px; 
    background-color: #0088cc; 
    color: white;
    font-size: 1.3rem; 
    font-weight: 600;
    text-decoration: none; 
    border-radius: 15px; 
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 136, 204, 0.4); 
}

.telegram-button:hover {
    background-color: #007bb5; /* Darker blue on hover */
    transform: translateY(-3px); /* effect on hover */
    box-shadow: 0 12px 20px rgba(0, 136, 204, 0.6); /* More pronounced shadow */
}

.telegram-button svg {
    margin-right: 12px; /* Space between icon and text */
    width: 28px; 
    height: 28px;
}

/* Responsive adjustments */
/* For screens up to 1024px "laptops, big tablets" */
@media (max-width: 1024px) {
    .hero {
        padding: 50px 60px;
        background-position: 90% center;
    }
    h1 {
        font-size: 3.2rem;
    }
    .price {
        font-size: 2rem;
    }
    .telegram-button {
        font-size: 1.2rem;
        padding: 16px 35px;
    }
}

/* For screens up to 768px "tablets, big mobile phones" */
@media (max-width: 768px) {
    .hero {
        flex-direction: column; 
        justify-content: center; 
        padding: 40px 30px;
        background-position: center 20%; 
        text-align: center; 
    }
    .overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .content {
        max-width: 100%; 
        text-align: center; 
    }

    .logo {
        margin-left: auto; 
        margin-right: auto; 
        margin-bottom: 25px;
    }

    h1 {
        font-size: 2.5rem; 
        margin-bottom: 20px;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .price {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .telegram-button {
        font-size: 1.1rem;
        padding: 14px 30px;
    }
}

/* For screens up to 480px "small mobile phones" */
@media (max-width: 480px) {
    .hero {
        padding: 30px 20px;
        background-position: center 10%;
    }
    h1 {
        font-size: 2rem;
    }
    .price {
        font-size: 1.6rem;
    }
    .telegram-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
}



















