
@font-face {
    font-family: 'Iran Sans';
    src: url('fonts/irsans.ttf') format('.ttf'), url('fonts/iran-sans-300.woff') format('woff'), url('fonts/iran-sans-300.woff2') format('woff2') url('fonts/IRANSansWeb.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #FFC400;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}
.page-content {
    margin-top: 30px !important;
}
.header-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 1.5rem 3rem !important;
    position: relative !important;
    background-color: #ffd300 !important;
}

.logo {
    /* display: flex; */
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-white);
    width: 30%;
    text-align: center;
}

.logo-text {
    font-size: 1.25rem;
    letter-spacing: 0;
    font-weight: 300;
}
/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.heritage-section {
    padding: 6rem 3rem;
    background-color: var(--color-white);
}

.heritage-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.heritage-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-accent);
    letter-spacing: 0;
    font-family: 'Iran Sans';
}

.heritage-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.heritage-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

    .heritage-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .heritage-image:hover img {
        transform: scale(1.05);
    }

.milestones {
    background-color: var(--color-gray-light);
    padding: 6rem 3rem;
}

.milestones-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.milestone-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .milestone-card:hover {
        transform: translateY(-10px);
    }

.milestone-year {
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.milestone-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.milestone-description {
    color: var(--color-gray);
    line-height: 1.6;
}

.innovation-section {
    padding: 6rem 3rem;
    background-color: var(--color-white);
}

.innovation-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.innovation-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--color-accent);
    letter-spacing: 0;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.innovation-card {
    padding: 2rem;
    background: var(--color-gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .innovation-card:hover {
        background: var(--color-white);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

.innovation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2rem;
}

.innovation-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.innovation-card p {
    color: var(--color-gray);
    line-height: 1.6;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}

.contact-hero-content {
    max-width: 600px;
    padding: 0 2rem;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0;
    opacity: 0.9;
}

.contact-section {
    padding: 6rem 3rem;
    background-color: var(--color-white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
}

    .contact-info h2 {
        font-size: 2.5rem;
        font-weight: 300;
        margin-bottom: 2rem;
        color: var(--color-accent);
        letter-spacing: 0;
    }

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .contact-method:hover {
        background: var(--color-white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateX(-10px);
    }

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.contact-details p {
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--color-gray-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

    .contact-form-container h2 {
        font-size: 2.5rem;
        font-weight: 300;
        margin-bottom: 2rem;
        color: var(--color-accent);
        letter-spacing: 0;
        text-align: center;
    }

.form-group {
    margin-bottom: 2rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        letter-spacing: 0;
    }

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-white);
}

    .form-control:focus {
        outline: none;
        border-color: var(--color-accent);
        box-shadow: 0 0 0 2px rgba(139, 0, 0, 0.1);
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    border-radius: 4px;
}

    .submit-btn:hover {
        background-color: var(--color-accent);
        transform: translateY(-2px);
    }

.boutiques-section {
    padding: 6rem 3rem;
    background-color: var(--color-gray-light);
}

.boutiques-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.boutiques-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--color-accent);
    letter-spacing: 0;
}

.boutiques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.boutique-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .boutique-card:hover {
        transform: translateY(-10px);
    }

.boutique-image {
    height: 200px;
    overflow: hidden;
}

    .boutique-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.boutique-card:hover .boutique-image img {
    transform: scale(1.1);
}

.boutique-info {
    padding: 2rem;
}

.boutique-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.boutique-address {
    color: var(--color-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.boutique-hours {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.boutique-btn {
    background-color: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

    .boutique-btn:hover {
        background-color: var(--color-black);
        color: var(--color-white);
    }

/* ===== GALLERY PAGE STYLES ===== */
.gallery-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1547996160-81dfd9c4b1cd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}

.gallery-hero-content {
    max-width: 600px;
    padding: 0 2rem;
}

.gallery-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.gallery-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0;
    opacity: 0.9;
}

.gallery-filters {
    padding: 3rem 2rem;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.filters-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-black);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 25px;
}

    .filter-btn.active,
    .filter-btn:hover {
        background-color: var(--color-black);
        color: var(--color-white);
    }

.gallery-section {
    padding: 3rem 2rem;
    background-color: var(--color-white);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.gallery-category {
    font-size: 0.875rem;
    opacity: 0.8;
    letter-spacing: 0;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.video-section {
    padding: 6rem 3rem;
    background-color: var(--color-gray-light);
}

.video-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.video-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--color-accent);
    letter-spacing: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .video-card:hover {
        transform: translateY(-10px);
    }

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .video-play-btn:hover {
        background: var(--color-white);
        transform: translate(-50%, -50%) scale(1.1);
    }

.video-info {
    padding: 1.5rem;
}

    .video-info h3 {
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 1rem;
        letter-spacing: 0;
    }

    .video-info p {
        color: var(--color-gray);
        line-height: 1.6;
    }

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

    .lightbox.active {
        display: flex;
    }

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

    .lightbox-content img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
}

.lightbox-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

    .lightbox-btn:hover {
        background: rgba(255,255,255,0.3);
    }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .heritage-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .milestones-grid,
    .boutiques-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .innovation-grid,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero-title,
    .contact-hero-title,
    .gallery-hero-title {
        font-size: 2.5rem;
    }

    .milestones-grid,
    .boutiques-grid,
    .innovation-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .filters-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-container {
        padding: 2rem;
    }
    /* ===== WEBLOG PAGE STYLES ===== */
    .weblog-hero {
        height: 60vh;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-white);
        text-align: center;
    }

    .weblog-hero-content {
        max-width: 600px;
        padding: 0 2rem;
    }

    .weblog-hero-title {
        font-size: 3.5rem;
        font-weight: 300;
        letter-spacing: 0;
        margin-bottom: 1rem;
    }

    .weblog-hero-subtitle {
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: 0;
        opacity: 0.9;
    }

    .weblog-section {
        padding: 6rem 3rem;
        background-color: var(--color-white);
    }

    .weblog-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .weblog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .blog-post {
        background: var(--color-white);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

        .blog-post:hover {
            transform: translateY(-10px);
        }

        .blog-post.featured {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

    .blog-post-image {
        position: relative;
        overflow: hidden;
        height: 300px;
    }

    .blog-post.featured .blog-post-image {
        height: 100%;
    }

    .blog-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .blog-post:hover .blog-post-image img {
        transform: scale(1.05);
    }

    .blog-post-category {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--color-accent);
        color: var(--color-white);
        padding: 0.5rem 1rem;
        border-radius: 4px;
        font-size: 0.875rem;
        letter-spacing: 0;
    }

    .blog-post-content {
        padding: 2rem;
    }

    .blog-post.featured .blog-post-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .blog-post-meta {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        font-size: 0.875rem;
        color: var(--color-gray);
    }

    .blog-post-title {
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 1rem;
        letter-spacing: 0;
        line-height: 1.4;
    }

    .blog-post.featured .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-excerpt {
        color: var(--color-gray);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .blog-post-link {
        color: var(--color-black);
        font-weight: 500;
        letter-spacing: 0;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s ease;
    }

        .blog-post-link:hover {
            color: var(--color-accent);
        }

    .pagination {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }

    .pagination-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(0,0,0,0.1);
        background: var(--color-white);
        color: var(--color-black);
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

        .pagination-btn.active,
        .pagination-btn:hover {
            background: var(--color-black);
            color: var(--color-white);
            border-color: var(--color-black);
        }

        .pagination-btn.next {
            width: auto;
            padding: 0 1rem;
        }

    .newsletter-section {
        padding: 6rem 3rem;
        background-color: var(--color-gray-light);
    }

    .newsletter-container {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 300;
        margin-bottom: 1rem;
        color: var(--color-accent);
        letter-spacing: 0;
    }

    .newsletter-subtitle {
        color: var(--color-gray);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .newsletter-form {
        display: flex;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .newsletter-input {
        flex: 1;
        padding: 1rem;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 4px;
        font-size: 1rem;
    }

    .newsletter-btn {
        background-color: var(--color-black);
        color: var(--color-white);
        border: none;
        padding: 1rem 2rem;
        font-size: 1rem;
        letter-spacing: 0;
        cursor: pointer;
        transition: all 0.3s;
        border-radius: 4px;
    }

        .newsletter-btn:hover {
            background-color: var(--color-accent);
        }

    /* ===== WEBLOG DETAIL PAGE STYLES ===== */
    .weblog-detail-hero {
        height: 50vh;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-white);
        text-align: center;
    }

    .weblog-detail-hero-content {
        max-width: 800px;
        padding: 0 2rem;
    }

    .breadcrumb {
        margin-bottom: 1rem;
        font-size: 0.875rem;
        letter-spacing: 0;
    }

        .breadcrumb a {
            color: var(--color-white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

            .breadcrumb a:hover {
                opacity: 1;
            }

        .breadcrumb span {
            opacity: 0.6;
        }

    .weblog-detail-hero-title {
        font-size: 3rem;
        font-weight: 300;
        letter-spacing: 0;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .weblog-detail-meta {
        display: flex;
        justify-content: center;
        gap: 2rem;
        font-size: 0.875rem;
        letter-spacing: 0;
        opacity: 0.8;
    }

    .weblog-detail-section {
        padding: 6rem 3rem;
        background-color: var(--color-white);
    }

    .weblog-detail-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }

    .weblog-detail-image {
        margin-bottom: 3rem;
        border-radius: 8px;
        overflow: hidden;
    }

        .weblog-detail-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

    .weblog-detail-text {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--color-gray);
    }

        .weblog-detail-text h2 {
            font-size: 2rem;
            font-weight: 300;
            margin: 3rem 0 1.5rem;
            color: var(--color-black);
            letter-spacing: 0;
        }

        .weblog-detail-text p {
            margin-bottom: 1.5rem;
        }

        .weblog-detail-text blockquote {
            border-right: 4px solid var(--color-accent);
            padding-right: 2rem;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.2rem;
            color: var(--color-black);
        }

    .weblog-detail-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: 2rem 0;
    }

    .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .gallery-caption {
        font-size: 0.875rem;
        text-align: center;
        color: var(--color-gray);
        font-style: italic;
    }

    .weblog-detail-text ul {
        margin: 1.5rem 0;
        padding-right: 1.5rem;
    }

    .weblog-detail-text li {
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }

    .weblog-detail-quote {
        background: var(--color-gray-light);
        padding: 3rem;
        border-radius: 8px;
        margin: 3rem 0;
        text-align: center;
    }

    .quote-content p {
        font-size: 1.3rem;
        font-style: italic;
        margin-bottom: 1rem;
        color: var(--color-black);
    }

    .quote-author {
        font-weight: 500;
        letter-spacing: 0;
    }

    .weblog-detail-tags {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin: 3rem 0;
        padding: 2rem 0;
        border-top: 1px solid rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .tags-label {
        font-weight: 500;
        letter-spacing: 0;
    }

    .tag {
        background: var(--color-gray-light);
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.875rem;
        text-decoration: none;
        color: var(--color-gray);
        transition: all 0.3s ease;
    }

        .tag:hover {
            background: var(--color-accent);
            color: var(--color-white);
        }

    .weblog-detail-share {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .share-label {
        font-weight: 500;
        letter-spacing: 0;
    }

    .share-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--color-gray-light);
        border-radius: 50%;
        color: var(--color-gray);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .share-link:hover {
            background: var(--color-accent);
            color: var(--color-white);
        }

    .weblog-sidebar {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .sidebar-widget {
        background: var(--color-gray-light);
        padding: 2rem;
        border-radius: 8px;
    }

    .widget-title {
        font-size: 1.3rem;
        font-weight: 400;
        margin-bottom: 1.5rem;
        letter-spacing: 0;
        color: var(--color-accent);
    }

    .author-bio {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .author-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .author-name {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        letter-spacing: 0;
    }

    .author-description {
        color: var(--color-gray);
        line-height: 1.6;
        font-size: 0.875rem;
    }

    .recent-posts {
        list-style: none;
    }

    .recent-post-link {
        display: block;
        padding: 1rem 0;
        text-decoration: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

        .recent-post-link:hover {
            background: rgba(255,255,255,0.5);
            padding-right: 0.5rem;
        }

        .recent-post-link:last-child {
            border-bottom: none;
        }

    .recent-post-title {
        display: block;
        font-weight: 500;
        margin-bottom: 0.25rem;
        color: var(--color-black);
        letter-spacing: 0;
        font-size: 0.875rem;
    }

    .recent-post-date {
        font-size: 0.75rem;
        color: var(--color-gray);
    }

    .categories-list {
        list-style: none;
    }

        .categories-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

            .categories-list li:last-child {
                border-bottom: none;
            }

        .categories-list a {
            display: flex;
            justify-content: space-between;
            text-decoration: none;
            color: var(--color-gray);
            transition: color 0.3s ease;
        }

            .categories-list a:hover {
                color: var(--color-accent);
            }

    .category-count {
        background: var(--color-accent);
        color: var(--color-white);
        padding: 0.25rem 0.5rem;
        border-radius: 12px;
        font-size: 0.75rem;
    }

    .related-posts-section {
        padding: 6rem 3rem;
        background-color: var(--color-gray-light);
    }

    .related-posts-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .related-posts-title {
        font-size: 2.5rem;
        font-weight: 300;
        margin-bottom: 3rem;
        text-align: center;
        color: var(--color-accent);
        letter-spacing: 0;
    }

    .related-posts-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .related-post {
        background: var(--color-white);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

        .related-post:hover {
            transform: translateY(-10px);
        }

    .related-post-image {
        height: 200px;
        overflow: hidden;
    }

        .related-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

    .related-post:hover .related-post-image img {
        transform: scale(1.05);
    }

    .related-post-content {
        padding: 1.5rem;
    }

    .related-post-title {
        font-size: 1.2rem;
        font-weight: 400;
        margin-bottom: 1rem;
        letter-spacing: 0;
        line-height: 1.4;
    }

    .related-post-link {
        color: var(--color-black);
        font-weight: 500;
        letter-spacing: 0;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s ease;
    }

        .related-post-link:hover {
            color: var(--color-accent);
        }

    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 1024px) {
        .weblog-grid {
            grid-template-columns: 1fr;
        }

        .blog-post.featured {
            grid-template-columns: 1fr;
        }

        .weblog-detail-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .related-posts-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .weblog-hero-title,
        .weblog-detail-hero-title {
            font-size: 2.5rem;
        }

        .weblog-section,
        .weblog-detail-section,
        .related-posts-section {
            padding: 4rem 2rem;
        }

        .weblog-detail-meta {
            flex-direction: column;
            gap: 0.5rem;
        }

        .weblog-detail-gallery {
            grid-template-columns: 1fr;
        }

        .weblog-detail-tags,
        .weblog-detail-share {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .related-posts-grid {
            grid-template-columns: 1fr;
        }

        .author-bio {
            flex-direction: column;
            text-align: center;
        }
    }
}
/*   =======Articles========  */

.article-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Vazir', sans-serif;
}

.article-header {
    margin-bottom: 2rem;
    text-align: right;
}

.article-title {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: bold;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.95rem;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .meta-item i {
        color: var(--primary-yellow);
    }

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-content {
    line-height: 1.9;
    font-size: 1.1rem;
    color: #333;
    text-align: justify;
}

    .article-content h2 {
        color: var(--black);
        margin: 2.5rem 0 1.5rem 0;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--primary-yellow);
        font-size: 1.6rem;
    }

    .article-content h3 {
        color: var(--black);
        margin: 2rem 0 1rem 0;
        font-size: 1.3rem;
    }

    .article-content p {
        margin-bottom: 1.5rem;
        text-align: justify;
    }

    .article-content ul, .article-content ol {
        margin: 1.5rem 0;
        padding-right: 2rem;
    }

    .article-content li {
        margin-bottom: 0.5rem;
    }

    .article-content blockquote {
        border-right: 4px solid var(--primary-yellow);
        padding: 1rem 2rem;
        margin: 2rem 0;
        background: var(--light-gray);
        font-style: italic;
    }

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E5E5;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    align-items: center;
}

.tags-label {
    color: #666;
    font-weight: bold;
}

.tag {
    background: var(--primary-yellow);
    color: var(--black);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

    .tag:hover {
        background: var(--dark-yellow);
        transform: translateY(-1px);
    }

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    transition: all 0.2s ease;
}

    .back-to-blog:hover {
        border-color: var(--primary-yellow);
        color: var(--dark-yellow);
    }

.social-share {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E5E5;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

    .share-button:hover {
        background: var(--primary-yellow);
        color: var(--black);
    }

@@media (max-width: 768px) {
    .article-title {
        font-size: 1.8rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .article-image {
        height: 250px;
    }

    .article-content {
        font-size: 1rem;
    }

    .social-share {
        flex-wrap: wrap;
    }
}

/* Login Page Styles - Yellow & Black Theme */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
    background-color: #000000;
}

.login-card {
    background: #ffffff;
    border: 2px solid #000000;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 8px 8px 0 #000000;
}

.login-title {
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #000000;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #000000;
    background: #ffffff;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: #ffd700;
        background-color: #fffdf0;
    }

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-check-input {
    margin-left: 8px;
    transform: scale(1.2);
    border: 2px solid #000000;
}

    .form-check-input:checked {
        background-color: #ffd700;
        border-color: #000000;
    }

.form-check-label {
    color: #000000;
    font-size: 14px;
}

.btn {
    padding: 12px 24px;
    border: 2px solid #000000;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 1px 1px 0 #000000;
    width: 100%;
    border-radius:inherit;
    border-radius:0px;
}
.btn-share {
    padding: 6px 6px;
    border: 2px solid #000000;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    
    width: 100%;
}

.btn-primary {
    background-color: #ffd700;
    color: #000000;
}

    .btn-primary:hover {
        background-color: #e6c200;
        transform: translate(-2px, -2px);
        box-shadow: 6px 6px 0 #000000;
    }

.btn-outline-primary {
    background-color: #ffffff;
    color: #000000;
}

    .btn-outline-primary:hover {
        background-color: #ffd700;
        transform: translate(-2px, -2px);
        box-shadow: 6px 6px 0 #000000;
    }

.btn-block {
    display: block;
    width: 100%;
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
    color: #000000;
    font-weight: bold;
}

    .divider::before,
    .divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 45%;
        height: 1px;
        background-color: #000000;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

.login-links {
    text-align: center;
    margin-top: 20px;
}

    .login-links a {
        display: block;
        color: #000000;
        text-decoration: none;
        margin-bottom: 10px;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .login-links a:hover {
            color: #ffd700;
            text-decoration: underline;
        }

.text-danger {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-text {
    color: #666666;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
        margin: 10px;
    }

    .login-title {
        font-size: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.form-check-input:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Loading state for buttons */
.btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success state */
.form-control.is-valid {
    border-color: #198754;
}

/* Error state */
.form-control.is-invalid {
    border-color: #dc3545;
}
