/* Reset و فونت */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazir', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f5e9;
    color: #333;
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* هدر */
header {
    background-color: #1a2e3b;
    color: #f9f5e9;
    padding: 30px 0;
    text-align: center;
}

.logo-area {
    margin-bottom: 15px;
}

.logo {
    height: 80px;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: #e8c07d;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #f9f5e9;
}

/* بنر */
.banner {
    height: 400px;
    margin: 30px 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* بخش‌های محتوا */
section {
    margin: 40px 0;
}

h2 {
    color: #1a2e3b;
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e8c07d;
}

h3 {
    color: #1a2e3b;
    margin: 20px 0 15px;
    font-size: 1.4rem;
}

.content-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

/* جداکننده */
.divider {
    height: 1px;
    background-color: #e8c07d;
    margin: 40px auto;
    width: 80%;
    opacity: 0.5;
}

.divider-light {
    height: 1px;
    background-color: #eee;
    margin: 30px 0;
}

/* تیم */
.team-box {
    background-color: #f5f0e1;
}

.team-list {
    margin: 20px 0;
    list-style-type: none;
}

.team-list li {
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

.team-list li:before {
    content: "•";
    color: #e8c07d;
    font-size: 1.5rem;
    position: absolute;
    right: 0;
    top: -5px;
}

.team-quote {
    font-style: italic;
    padding: 20px;
    background-color: #fff;
    border-right: 4px solid #e8c07d;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.slogan {
    text-align: center;
    font-weight: bold;
    color: #1a2e3b;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* لیست ویژگی‌ها */
.features-list {
    margin: 20px 0;
    list-style-type: none;
}

.features-list li {
    margin-bottom: 10px;
    padding-right: 25px;
    position: relative;
}

.features-list li:before {
    content: "›";
    color: #e8c07d;
    position: absolute;
    right: 0;
}

/* اطلاعات بازی */
.game-info {
    background-color: #f5f0e1;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.game-info p {
    margin-bottom: 8px;
}

/* دعوت به اقدام */
.call-to-action {
    background-color: #1a2e3b;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.call-to-action h3 {
    color: #e8c07d;
    margin-bottom: 15px;
}

.highlight {
    color: #e8c07d;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* تماس با ما */
.contact-box {
    padding: 0;
    overflow: hidden;
}

.contact-info {
    padding: 30px;
    background-color: #f5f0e1;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.2rem;
    margin-left: 10px;
    color: #1a2e3b;
}

.contact-text {
    font-size: 1.05rem;
}

.map-container {
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* فوتر */
footer {
    background-color: #1a2e3b;
    color: #f9f5e9;
    padding: 25px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.copyright {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.address {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-divider {
    height: 1px;
    background-color: rgba(232, 192, 125, 0.3);
    margin: 10px auto;
    width: 50%;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .banner {
        height: 250px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .contact-info {
        padding: 20px;
    }
}