/* -------------------------------------------------
   متغیرهای کلی
   ------------------------------------------------- */
:root {
    --primary-gradient-start: #879e9d;
    --primary-gradient-end:   #d5ad70;
    --text-color:             #fff;
    --bg-search-btn:          #333;
    --font-main:              'Iranian Sans', sans-serif;
    --logo-size:              85px;
    --gap:                    1rem;
}

/* -------------------------------------------------
   بارگذاری فونت
   ------------------------------------------------- */
@font-face {
    font-family: 'Iranian Sans';
    src: url('/new/assets/fonts/Iranian Sans.ttf') format('truetype');
}

/* -------------------------------------------------
   تنظیمات پایه
   ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; }
body {
    margin: 0;
    font-family: var(--font-main);
    direction: rtl;               /* راست‌چین برای فارسی */
    background-color: #fafafa;   /* رنگ پس‌زمینه اختیاری */
}

/* -------------------------------------------------
   هدر
   ------------------------------------------------- */
.site-header {

    color: var(--text-color);
}

/* ---------------------------------
   .header-inner
   --------------------------------- */
.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: var(--gap);
    justify-content: center;
    background: linear-gradient(to right,
            var(--primary-gradient-start),
            var(--primary-gradient-end));
}

#section1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

}
/* ---------------------------------
   لوگو و نام برند
   --------------------------------- */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.brand img {
    width: var(--logo-size);
    height: var(--logo-size);
    margin-left: var(--gap);
}
.brand-name {
    font-size: 1.125rem;   /* 18px */
    margin-right: 0.625rem;/* 10px */
}

/* ---------------------------------
   منوی اصلی (بدون همبرگری)
   --------------------------------- */
.main-nav {
    display: flex;               /* منو همیشه به صورت افقی نمایش داده می‌شود */
    align-items: center;
    background: transparent;
    width: auto;
    padding: var(--gap);
}

/* لیست منو */
.nav-list {
    display: flex;
    flex-direction: row;         /* افقی */
    gap: 1rem;                   /* فاصله بین آیتم‌ها */
}

/* ---------------------------------
   فرم جستجو
   --------------------------------- */
.search-form {
    display: flex;
    align-items: center;
    margin-right: var(--gap);
    gap:5px;
}
.search-form input[type="search"] {
    padding: 0.625rem;          /* 10px */
    border: none;
    border-radius: 5px;
    outline: none;
}
.search-form button[type="submit"] {
    padding: 0.625rem;
    border: none;
    border-radius: 5px;
    background-color: #d5ad70;
    color: var(--text-color);
    cursor: pointer;
}
.search-form button[type="submit"]:hover {
    background-color: #555;
}

/* ---------------------------------
   اطلاعات تماس
   --------------------------------- */
.contact {
    display: flex;
    align-items: center;
    margin-right: var(--gap);
}
.phone-icon {
    font-size: 1.5rem;  /* 24px */
    margin-left: 0.625rem;
}
.phone-number {
    font-size: 1.125rem;/* 18px */
}

/* ---------------------------------
   باشگاه مشتریان
   --------------------------------- */
.customer-btn {
    display: flex;
    align-items: center;
    margin-right: var(--gap);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}
.customer-btn .user-icon {
    font-size: 1.5rem;
    margin-left: 0.625rem;
}
.customer-btn:hover,
.customer-btn:focus {
    opacity: 0.9;
}

/* -------------------------------------------------
   رسانه‌ها (Responsive)
   ------------------------------------------------- */
@media (max-width: 767px) {
    /* در نسخه موبایل منو به صورت افقی باقی می‌ماند؛ اگر می‌خواهید مخفی شود می‌توانید display:none اضافه کنید */
}
