/* --- Import English Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&family=Roboto:wght@400;500&display=swap');

/* --- General Settings & Browser Reset for LTR --- */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Roboto', sans-serif; /* Default font for the site */
    background-color: #ffffff;
    color: #333; /* Main text color */
    line-height: 1.8;
    scroll-behavior: smooth; /* For smooth scrolling */
    direction: ltr; /* Set direction to Left-to-Right for English */
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif; /* Font for headings */
    font-weight: 700;
    color: #1a1a1a; /* Darker color for headings */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.navbar {
    padding: 20px 40px;
    text-align: left; /* Align logo to the left */
}

.logo {
    width: 150px;
    height: auto;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* --- Align content to the left for LTR --- */
    align-items: flex-start; /* Aligns content to the start (left) of the flex container */
    text-align: left; /* Align text to the left */
    padding-left: 5%; /* Add some padding from the left edge */
    padding-right: 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin: 0;
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 400;
    max-width: 600px;
    margin: 20px 0 40px 0;
}

.cta-button {
    background-color: #007BFF;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* --- About Us Section --- */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- Contact Us Section --- */
.contact-section {
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 10px 0;
}
.contact-info a {
    color: #007BFF;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}
/* --- استایل برای دکمه‌های بخش Hero --- */
.hero-buttons {
    display: flex;
    gap: 20px; /* فاصله بین دو دکمه */
    flex-wrap: wrap; /* اگر صفحه کوچک شد، دکمه‌ها زیر هم بروند */
}

/* --- استایل برای دکمه ثانویه (مثلاً دانلود کاتالوگ) --- */
.cta-button.secondary {
    background-color: transparent; /* پس‌زمینه شفاف */
    border: 2px solid #ffffff; /* حاشیه سفید */
    color: #ffffff;
}

/* --- تغییر استایل دکمه ثانویه در زمان هاور --- */
.cta-button.secondary:hover {
    background-color: #ffffff; /* پس‌زمینه سفید می‌شود */
    color: #0056b3; /* متن آبی می‌شود */
}

/* --- استایل برای دکمه در بخش About Us (اگر از گزینه ۲ استفاده کردید) --- */
.about-button {
    margin-top: 20px; /* ایجاد کمی فاصله از پاراگراف بالایی */
    display: inline-block; /* برای اعمال margin-top */
    border-color: #007BFF; /* تغییر رنگ حاشیه برای هماهنگی با بخش */
    color: #007BFF; /* تغییر رنگ متن */
}

.about-button:hover {
    background-color: #007BFF;
    color: #ffffff;
}
