/* Reset و فونت */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* نوار ناوبری */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c5c5c;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-logo img {
    height: 40px;
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2c5c5c;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* محتوای اصلی */
.post-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.post-title {
    font-size: 1.8rem;
    color: #2c5c5c;
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #777;
    font-size: 0.9rem;
}

.post-meta i {
    margin-left: 5px;
}

.post-image {
    height: 400px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

.post-content h2 {
    color: #2c5c5c;
    margin: 25px 0 15px;
    border-right: 4px solid #2c5c5c;
    padding-right: 10px;
}

.post-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.facilities-list {
    list-style: none;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.facilities-list li {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 5px;
}

.facilities-list i {
    margin-left: 10px;
    color: #2c5c5c;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.activity-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    font-size: 2rem;
    color: #2c5c5c;
    margin-bottom: 15px;
}

.activity-card h3 {
    color: #2c5c5c;
    margin-bottom: 10px;
}

blockquote {
    border-right: 4px solid #2c5c5c;
    background: #f9f9f9;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
}

.booking-cta {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #2c5c5c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1e4141;
}

.cta-button.secondary {
    background: #e9b949;
}

.cta-button.secondary:hover {
    background: #d4a742;
}

.post-tags {
    padding: 20px 30px;
    background: #f5f5f5;
    border-top: 1px solid #eee;
}

.post-tags a {
    color: #2c5c5c;
    text-decoration: none;
}

.post-tags a:hover {
    text-decoration: underline;
}

/* بخش نظرات */
.comments-section {
    margin-top: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comments-section h2 {
    color: #2c5c5c;
    margin-bottom: 25px;
    border-right: 4px solid #2c5c5c;
    padding-right: 10px;
}

.comment {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 15px;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-date {
    color: #777;
    font-size: 0.9rem;
    font-weight: normal;
}

.comment-form {
    margin-top: 30px;
}

.comment-form h3 {
    color: #2c5c5c;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Vazirmatn', sans-serif;
}

.submit-button {
    background: #2c5c5c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: bold;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #1e4141;
}

/* پاورقی */
.footer {
    background: #2c5c5c;
    color: white;
    padding: 50px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    border-right: 4px solid #e9b949;
    padding-right: 10px;
}

.footer-section p, .footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section i {
    margin-left: 8px;
    color: #e9b949;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* رسپانسیو */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .post-image {
        height: 250px;
    }
    
    .post-title {
        font-size: 1.5rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin-left: 0;
        margin-bottom: 15px;
    }
}

/* placeholders برای تصاویر */
#logo-placeholder, #main-image-placeholder, #avatar1-placeholder, #avatar2-placeholder {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 0.8rem;
}

#logo-placeholder::before {
    content: "لوگو";
}

#main-image-placeholder::before {
    content: "تصویر اصلی پست";
}

#avatar1-placeholder::before {
    content: "آواتار ۱";
}

#avatar2-placeholder::before {
    content: "آواتار ۲";
}

.my-image {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            display: block;
            margin: 20px auto;

        }