/* ===========================
   Google Font
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Vazirmatn',sans-serif;
    background:#f8f9fa;
    color:#333;
    overflow-x:hidden;
    line-height:1.8;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
Header
=========================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(20,20,20,.85);

    backdrop-filter:blur(12px);

    transition:.3s;

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo{

    color:#fff;

    font-size:28px;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:10px;

}

.logo i{

    color:#1B5E20;

}

.navbar ul{

    display:flex;

    gap:35px;

}

.navbar a{

    color:white;

    font-size:17px;

    transition:.3s;

}

.navbar a:hover{

    color:#ffffff;

}

.menu-btn{

    display:none;

    color:white;

    font-size:28px;

    cursor:pointer;

}

/* ===========================
Hero
=========================== */

.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

}

.slider{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

}

.slide{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity .5s ease;

}

.slide.active{

    opacity:1;

}

.overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.45);

    z-index:1;

}

.hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

}

#prev,
#next{

    position:absolute;

    top:65%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.7);

    font-size:28px;

    cursor:pointer;

    z-index:5;

    transition:.3s;

}

#prev{

    left:20px;

}

#next{

    right:20px;

}

#prev:hover,
#next:hover{

    background:#1B5E20;

    color:#fff;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    color:white;

    text-align:center;

    max-width:750px;

    padding:20px;

}

.hero-content h1{

    font-size:58px;

    margin-bottom:20px;

}

.hero-content p{

    font-size:20px;

    margin-bottom:35px;

}

.btn{

    display:inline-block;

    padding:14px 35px;

    background:#1B5E20;

    color:white;

    border-radius:40px;

    transition:.3s;

    font-size:18px;

}

.btn:hover{

    background:#1B5E20;

    transform:translateY(-3px);

}

/* ===========================
Section Title
=========================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:40px;

    color:#222;

}

.section-title p{

    color:#777;

    margin-top:10px;

}

/* ===========================
Features
=========================== */

.features{

    padding:100px 0;

    background:#fff;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.feature-card{

    background:#fff;

    border-radius:15px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.feature-card i{

    font-size:50px;

    color:#1B5E20;

    margin-bottom:20px;

}

.feature-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.feature-card p{

    color:#666;

}

/* ===========================
About
=========================== */

.about{

    padding:100px 0;

    background:#ffffff;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-image img{

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.section-tag{

    display:inline-block;

    background:#1B5E20;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;

}

.about-content h2{

    font-size:42px;

    margin-bottom:20px;

}

.about-content p{

    color:#666;

    margin-bottom:18px;

}

.about-boxes{

    display:grid;

    grid-template-columns:1fr;

    gap:18px;

    margin-top:35px;

}

.box{

    display:flex;

    align-items:center;

    gap:20px;

    background:#fff;

    padding:20px;

    border-radius:12px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.box i{

    font-size:28px;

    color:#1B5E20;

}

.box h4{

    margin-bottom:5px;

}

.box span{

    color:#666;

}

/* ===========================
Gallery
=========================== */

.gallery{

    padding:100px 0;

    background:#f7f8fa;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

}

.gallery-item img{

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

/* ===========================
Statistics
=========================== */

.statistics{

    padding:90px 0;

    background:linear-gradient(135deg,#1B5E20,#1B5E20);

}

.statistics .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border-radius:18px;

    padding:35px;

    text-align:center;

    color:#fff;

}

.stat-card h2{

    font-size:48px;

    margin-bottom:10px;

}

.stat-card span{

    font-size:18px;

}


/* ===========================
Attractions
=========================== */

.attractions{

    padding:100px 0;

    background:#fff;

}

.attraction-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.attraction-card{

    background:#f8f9fa;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.attraction-card:hover{

    transform:translateY(-10px);

    background:#1B5E20;

    color:#fff;

}

.attraction-card i{

    font-size:50px;

    margin-bottom:20px;

}

.attraction-card h3{

    margin-bottom:15px;

    font-size:25px;

}


/* ===========================
Contact
=========================== */

.contact{

    padding:100px 0;

    background:#e6e7e9;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.contact-card{

    text-align: center;

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card i{

    font-size:45px;

    color:#1B5E20;

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:10px;

}


/* ===========================
Footer
=========================== */

.footer{

    background:#111;

    color:#fff;

    padding:60px 0 20px;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.footer h3{

    margin-bottom:15px;

    font-size:28px;

}

.social{

    display:flex;

    gap:18px;

}

.social a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#1B5E20;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:20px;

    transition:.3s;

}

.social a:hover{

    transform:translateY(-5px);

}

.copyright{

    text-align:center;

    margin-top:40px;

    color:#bbb;

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:20px;

}


/* ===========================
Back To Top
=========================== */

#topBtn{

    position:fixed;

    bottom:25px;

    left:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#1B5E20;

    color:#fff;

    cursor:pointer;

    display:none;

    font-size:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

#topBtn:hover{

    background:#27ae60;

}

/* ===========================
Responsive
=========================== */

@media (max-width:1024px){

    .hero-content h1{
        font-size:46px;
    }

    .feature-grid,
    .gallery-grid,
    .statistics .container,
    .attraction-grid,
    .contact-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .about-container{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    .menu-btn{

        display:block;

    }

    .navbar{

        position:absolute;

        top:80px;

        right:-100%;

        width:260px;

        background:#1f1f1f;

        transition:.4s;

        border-radius:0 0 0 15px;

    }

    .navbar.active{

        right:0;

    }

    .navbar ul{

        flex-direction:column;

        padding:25px;

        gap:20px;

    }

    .hero{

        height:80vh;

    }

    .hero-content h1{

        font-size:36px;

    }

    .hero-content p{

        font-size:17px;

    }

    .feature-grid,
    .gallery-grid,
    .statistics .container,
    .attraction-grid,
    .contact-grid{

        grid-template-columns:1fr;

    }

    .footer-content{

        flex-direction:column;

        text-align:center;

    }

}

@media (max-width:480px){

    @media (max-width:480px){

    .hero{
        height:70vh;
    }

    .hero-content{
        padding:0 20px;
    }

    .hero-content h1{
        font-size:26px;
        line-height:1.5;
        margin-bottom:15px;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.8;
        margin-bottom:25px;
    }

    .btn{
        font-size:14px;
        padding:10px 24px;
    }

    #prev,
    #next{
        width:42px;
        height:42px;
        font-size:18px;
    }

}

    .hero-content h1{

        font-size:28px;

    }

    .hero-content p{

        font-size:15px;

    }

    .btn{

        padding:12px 28px;

        font-size:16px;

    }

    .section-title h2{

        font-size:30px;

    }

    .about-content h2{

        font-size:30px;

    }

    .stat-card h2{

        font-size:36px;

    }

}

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:1s;

}

.show{

    opacity:1;

    transform:translateY(0);

}

.logo{

    display:flex;
    align-items:center;
    gap:12px;

}

.logo img{

    width:55px;
    height:55px;
    object-fit:contain;

}

.eita-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.Isntagram-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.Map-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.eita-logo {
    width: 80px;      /* اندازه عکس */
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.instagram-logo {
    width: 80px;      /* اندازه دلخواه */
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.Map-logo {
    width: 80px;      /* اندازه عکس */
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.footer-content {
    text-align: center;
}

.footer-content {
    position: relative;
}

.footer-logo {
    width: 100px;
    height: auto;
    position: absolute;
    left: 0;
    top: 10%;
    transform: translateY(-50%);
}

.footer-content > div {
    text-align: right;
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.hero-content h1{

    display:inline-block;

    transition:.35s;

}

.hero-content h1:hover{

    transform:scale(1.08);

    letter-spacing:2px;

    text-shadow:0 0 20px #ffffff,0 0 40px rgba(255,255,255,.5);

}

.contact-card{

    text-decoration:none;

    color:inherit;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

}

.contact-card img{

    user-select:none;

    -webkit-user-drag:none;

    pointer-events:none;

}

.contact-grid{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card{
    width: 320px;
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

@media (max-width:768px){

    .hero{
        height:100vh;
    }

    .hero-content{
        width:90%;
        margin-top:-120px;
    }

    .hero-content h1{
        font-size:36px;
        line-height:1.4;
    }

    .hero-content p{
        font-size:18px;
        line-height:1.8;
        margin:20px 0;
    }

    .btn{
        padding:14px 35px;
        font-size:17px;
    }

    #prev,
    #next{
        width:50px;
        height:50px;
        font-size:22px;
        top:68%;
    }

}

.hero{
    position: relative;
}

.language-switcher{
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 100;
}

.language-switcher select{
    width: 120px;
    height: 42px;
    background: #1B5E20;
    color: #fff;
    border: 1px solid rgba(43, 126, 26, 0.2);
    border-radius: 10px;
    padding: 0 12px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    backdrop-filter: blur(8px);
}

.language-switcher select:hover{
    background: #1B5E20;
}

/* ================= SUPPORT ================= */

.support{
    padding:80px 0;
    background:#ecebeb;
}

.support-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.support-card{
    background:#fff;
    border-radius:15px;
    padding:25px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.support-card:hover{
    transform:translateY(-8px);
}

.support-card img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:15px;
}

.support-card h3{
    color:#1B5E20;
    margin-bottom:10px;
}

.support-card p{
    color:#666;
    line-height:1.8;
}

.support-btn-box{
    text-align:center;
    margin-top:-40px;
}

.support-btn{
    display:inline-block;
    padding:15px 35px;
    background:#1B5E20;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.support-btn:hover{
    background:#2E7D32;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(27,94,32,.35);
}

.support-title{
    text-align:center;
    color:#000000;
    font-size:28px;
    font-weight:700;
    margin:20px 0 35px;
}

