body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: white;
}
.container {
    position: relative;
    text-align: center;
    color: white;
}
.background-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 18px;
}
.header i {
    margin-right: 5px;
}
.buttons {
    position: absolute;
    top: 20px;
    right: 20px;
}
.buttons button {
    background-color: white;
    color: #ff4d4d;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.buttons button:hover {
    background-color: #ff4d4d;
    color: white;
}
.title {
    font-size: 200px;
    font-weight: bold;
    margin: 0;
}
.subtitle {
    font-size: 24px;
    margin: 10px 0;
}
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    width: 80%;
    max-width: 800px;
    margin: 20px auto 0;
}
.search-bar i {
    color: #ff4d4d;
    margin-right: 10px;
}
.search-bar input {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px;
    font-size: 20px;
}
@media (max-width: 768px) {
    .title {
        font-size: 60px;
    }
    .subtitle {
        font-size: 18px;
    }
    .search-bar {
        width: 90%;
    }
}
.main-container {
    width: 90%;
    margin: 0 auto;
    color: black;
}
.header-section {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.header-section div {
    text-align: center;
}
.header-section img {
    width: 100%;
    border-radius: 10px;
}
.header-section p {
    margin-top: 10px;
    font-weight: bold;
}
.collections {
    margin-top: 40px;
}
.collections h2 {
    font-size: 2em;
    margin-bottom: 10px;
}
.collections p {
    color: gray;
    margin-bottom: 20px;
}
.collections-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.collections-header a {
    color: #ff4d4d;
    text-decoration: none;
}
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.collection-item {
    position: relative;
}
.collection-item img {
    width: 100%;
    border-radius: 10px;
}
.collection-item p {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}
.collection-item p span {
    display: block;
    font-size: 0.8em;
}
.localities {
    margin-top: 40px;
}
.localities h1 {
    font-size: 24px;
    margin-bottom: 20px;
}
.localities .localities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.localities .item {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    min-width: 200px;
}
.footer {
    background-color: rgba(249, 244, 244, 0.73);
    padding: 40px 20px;
    text-align: left;
    width: 100%;
}
.footer .logo {
    font-size: 60px;
    color: #0d0c0c;
    font-weight: bold;
    margin-bottom: 20px;
}
.footer .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}
.footer .footer-column {
    flex: 1;
    min-width: 150px;
}
.footer .footer-column h3 {
    background-color: rgb(232, 47, 47);

    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-column ul li {
    margin-bottom: 8px;
}
.footer .footer-column ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.footer .footer-column ul li a:hover {
    text-decoration: underline;
}
.footer .footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 12px;
    color: #666;
}
.footer .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer .social-links a {
    color: #333;
    font-size: 20px;
}
.footer .app-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.footer .app-links img {
    width: 120px;
}
.footer .country-language {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.footer .country-language button {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}
.footer .country-language button:hover {
    background-color: #f0f0f0;
}