﻿#header_div {
    width: 100%;
    padding: 40px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: auto;
}

.hero-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
}

.domains-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.domain-link {
    padding: 8px 14px;
    background: #f2f2f2;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
}

#SearchBox {
    display: flex;
    justify-content: center;
}

#SearchText {
    height: 40px;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 0 12px;
}

/* لوگو و فلگ */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

.flag {
    height: 50px;
}

.leader {
    height: 60px;
}

/* ========================= */
/* حالت بزرگتر از 700px */
/* ========================= */

@media (min-width:700px) {

    #SearchText {
        width: 500px;
    }

    .logo,
    .flag {
        display: block;
    }
}

/* ========================= */
/* حالت موبایل */
/* ========================= */

@media (max-width:699px) {

    .logo,
    .flag,
    .leader {
        display: none;
    }

    #SearchText {
        width: 80%;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 15px;
    }
}
