* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     
}

body {
    background: #04849C;
    text-align: center;
    line-height: 1.6;
    font-family: Scheherazade New;
     
    

}


            

/* بخش هدر */

header {
    text-decoration: none;
    background-color: #036A7F ;
    padding: 2rem 0;
    box-shadow: 0px 4px 12px rgba( 0,0,0,0.1);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
     font-family: Arial, Helvetica, sans-serif;   
}


.htitle {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* پایان هدر */

/* صفحه اصلی */
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 2.5rem;
        }
        
        .image-link {
            position: relative;
            display: block;
            height: 300px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 6px solid #fff;
        }
        
        .image-link:hover {
            transform: translateY(-5px);
        }
        
        .image-container {
            width: 100%;
            height: 100%;
            background-color: #006666; /* رنگ پس‌زمینه سبز برای زمانی که تصویر لود نمی‌شود */
            position: relative;
        }
        
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
            
        }
        
        .image-link:hover .image-container img {
            transform: scale(1.05);
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,102,102,0.6);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
        }
        
        .overlay h2 {
            font-size: 5rem;
            margin-bottom: 15px;
            color: #fff;
        }
        
        
        
        
        @media (max-width: 768px) {
            .gallery {
                grid-template-columns: 1fr;
            }
        }

/* پایان صفحه اصلی */


/* بخش فوتر */

footer {
    background-color: #036A7F ;
    padding: 1rem 5rem;
    margin-top: 3rem;
    color: #fff;
    line-height: 1.6;
        }


.foter{
    max-width: 1200px;
    line-height: 2rem;
    margin: 0 auto;
    padding: 1rem 3rem ;
    padding-bottom: 1rem;
    display: inline-block;
    
}

.loc{ 
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid #fff;        
}
 .flink{
    text-decoration: none;
        color: #fff;
        
}
.flink:hover{
    color: aquamarine;
}


 iframe{
    width: 50%;
    height: 50%;
    padding-top: 1rem;

 }

 .call{
    border-bottom: 1px solid #fff;  
    padding: 1rem;  

 }
 .copyright{
    font-size: 13px;
 }
 /* پایان فوتر */
        