*{
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    padding:0;
    text-decoration:none;
    list-style:none;
    box-sizing:border-box;
}
a{
    font-weight: 700;
}

:root{
    --footer-text-color:rgb(121, 116, 116);
    --main-color: rgb(54, 51, 51);
    --nav-Color: rgb(34, 33, 33);
    --second-Color: #027f70;
    --text-color: blanchedalmond;
    --hover-shadow-color: #0a7b9a;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100%;
    background-image: url(IMG-20241024-WA0003.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.tripadvisorIcon{
position: fixed;
right: 15px;
bottom: 90px;
z-index: 10000;
width: 30px;
height: 30px;
border-radius: 50%;
box-shadow: var(--second-Color) 2Px 2px 6px 1px;
animation: iconsAnimation 3s infinite ease-in-out;
}

@keyframes iconsAnimation{
    0%{
        width: 30px;
        height: 30px;
    }
    50%{
        width: 40px;
        height:40px;
    }
    100%{
        width: 30px;
        height: 30px;
    }
}

nav
{
    z-index: 990;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-Color);
    box-shadow: var(--second-Color) 1px 2px 5px 1px;
}

nav ul{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li{
    height:60px;
}

nav a{
    margin-top: 10px;
    height: 50%;
    padding: 0 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    color: white;
    border-radius: 5px;
}

nav a:hover{
    box-shadow: 0 0 10px var(--hover-shadow-color), 0 0 20px var(--second-Color);
    transition: transform 0.01s ease, box-shadow 0.01s ease;

}

nav li:first-child{
    margin-right:auto;
    width: auto;
}
nav .sidebar li{
    margin-left: 20px;
}
.logo{
    top: 3px;
    pointer-events: none;
    width: 100px;
    height: 50px;
    position: relative;
    left: 10px;
}

.sidebar
{
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
    z-index: 999;
    background-color: rgba(34, 33, 33, 0.1);
    backdrop-filter:blur(10px);
    box-shadow: -3px 0 5px var(--second-Color);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.iconsOfSidebar a img{
    text-align: center;
    width:25px;
    height: 25px;
}


.iconsOfSidebar{
    display: flex;
    justify-content: center;
    

}

.sidebar li{
    width:auto;
}

a{
    text-transform: uppercase;
    font-weight: 700;
}

.sidebar li #a::before{
    content: '';
    width:5px;
    height: 200%;
    background-color: var(--second-Color);
    position:relative;
    left:-3px;
    top:0;
    border-radius:3px;
}

.reserve{
    animation: textAnimation 3s ease-in-out infinite;
}

.reserve::before{
    background: linear-gradient(90deg, #2c73ba, #2de07b, #cb592c);
    animation: glowAnimation 3s infinite ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-size: 200%;
}

@keyframes textAnimation{
0%{
    color: var(--second-Color);
}
50%{
    color: brown;
}
100%{
    color: var(--second-Color);
}
}

@keyframes glowAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container{
    margin-top: 100px;
    width: auto;
    margin-left:50px ;
    margin-right: 50px;
    font-size: 18px;
    color: rgb(158, 151, 151);

}

.container h2{
    text-transform: capitalize;
    text-align: center;
    color:#05786a;
}

.listimages1 img{
    margin: 20px;
    width: 200px;
    height: 240px;
    box-shadow: var(--second-Color) 3px 5px 6px;
    border-radius: 10px;
}

.vision{
    text-align: center;
    text-transform: capitalize;
    color: #067568;
    margin-bottom: 10px;
}

.listimages1,
.listImages2{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.logo2{
    display: flex;
    justify-content: center;
}

.logo2 img{
    z-index: 1;
    width:250px;
    height: 230px;
}

.logo3{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.logo3 img{
    width:250px;
    height: 200px;
    border-radius: 10px;
    box-shadow: var(--second-Color) 1px 2px 5px 1px;
}

.listImages2 img{
    border-radius: 10px;
    margin: 20px;
    width: 200px;
    height: 150px;
    box-shadow: var(--second-Color) 3px 5px 6px;
}
.container h5{
    display: inline;
    font-size: 18px;
}
.container h5 a{
    text-transform: capitalize;
    color: #dbd9d9;
    background: #05786a;
    border-radius: 5px;
}

.formContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formContainer iframe{
    border-radius: 10px;
    height: 700px;
    display: none;
}

.formContainer button{
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background-color: var(--second-Color);
    width: 200px;
    height: 50px;
    font-size: 20px;
    color: rgb(255, 255, 255);
    margin-bottom: 40px;
    font-weight: 700;
    box-shadow: var(--second-Color) 1px 1px 6px 1px;
    text-transform: capitalize;
}

hr{
    margin-top: 20px;
    border:solid 1px var(--second-Color);
    color: var(--second-Color);
    box-shadow: var(--second-Color) 1px 1px 6px 1px;
}

.footer{
    background-color: var(--nav-Color);
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}
.footer .texts p a{
    color: var(--second-Color);
}
.copy-icon{
    font-size: 20px;
    pointer-events: none;
}
.footer .texts p{
    text-transform: capitalize;
    color:var(--footer-text-color);
}

.footer .icons
{
    margin-top: 20px;
    display: flex;
    align-items: space-between;
    flex-direction: column;
}

.footer .icons .insta::after{
    position: absolute;
    bottom: 6px;
    content: 'instagram';
    color: var(--footer-text-color);
    text-transform: capitalize;
}

.footer .icons .trip::after{
    position:absolute;
    bottom:6px;
    content: 'tripadvisor';
    color: var(--footer-text-color);
    text-transform: capitalize;
}

.footer .icons .loc::after
{
    position: absolute;
    bottom: 6px;
    content: 'location';
    color: var(--footer-text-color);
    text-transform: capitalize;
}

.footer .icons .insta,
.footer .icons .trip,
.footer .icons .loc
{
    position: relative;
}

.footer .icons a img
{
    width:25px;
    height: 25px;
    border-radius: 50px;
    margin-top: 5px;
    margin-right: 5px;
}

.footerNav{
    background-color: var(--nav-Color);
}
.footerNav ul
{
    display: flex;
    justify-content: space-evenly;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer .texts .maker a
{
    text-transform: uppercase;
    color: var(--second-Color);
}

.footerNav ul li a{
    color: rgb(121, 116, 116);
    font-family: Arial, Helvetica, sans-serif;
    text-transform:capitalize;
}

.footerNav ul li a:focus
{
    color: var(--second-Color);
}

.footer .texts{
    margin-top: 40px;
}
.menu{
    display: none;
    margin-right: 20px;
}
@media (max-width:850px){
    .footer,
     .footerNav{
        background: none;
    }
    html{
        margin: 0;
        padding: 0;
    }
    body{
        background-image: url(insidefez.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;
    }
.hideOnMobile{
    display: none;
}
.menu{
    display: block;
}
.footer .icons .insta::after,
.footer .icons .trip::after,
.footer .icons .loc::after{
    display: none;
}
}
@media (max-width:450px){
    .footerNav ul{
        flex-direction: column;
        align-items: center;
        padding-top: 10px;
    }
    .footerNav ul li{
        margin-top: 10px;
    }
    }
    @media (max-width:580px) {
        .listimages1,
        .listImages2{
            display: flex;
            justify-content: center;
        }
    }
    
.announcement {
    background: linear-gradient(135deg, #f8f4ef, #efe5d8);
    text-align: center;
    padding: 60px 20px;
    border-radius: 16px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.announcement-content h2 {
    font-size: 1.8rem;
    color: #5a3e1b;
    margin-bottom: 20px;
}

.announcement-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.announcement-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.announcement-gallery img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.announcement-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 16px rgba(0,0,0,0.25);
}

.learn-more {
    display: inline-block;
    background-color: #b4863d;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.learn-more:hover {
    background-color: #8c6a2f;
}
