*{
    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;
    background-image: url(IMG-20241024-WA0015.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.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: 50;
    position: fixed;
    top: 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;
}
.footer .texts p a{
    color: var(--second-Color);
}
.copy-icon{
    font-size: 20px;
    pointer-events: none;
}

nav li{
    height:60px;
}

nav a{
    font-size: 16px;
    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: 1000;
    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;
}
.sidebar li #a::before{
    content: '';
    width:5px;
    height: 200%;
    background-color: #027f70;
    position:relative;
    left:-3px;
    top:0;
    border-radius:3px;
}

.sidebar li{
    width:auto;
}

a{
    text-transform: uppercase;
    font-weight: 700;
}

.reserve,
.cooking{
    animation: textAnimation 3s ease-in-out infinite;
}

.reserve::before,
.cooking::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{
    padding-top: 100px;
    display: flex;
    flex-direction: column;
}

.intro-section{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.custom-row img{
    width: 200px;
    height: 200px;
    margin-top: 30px;
}

    /* Container Styling */
    .custom-row {
        display: flex;
        flex-wrap: wrap;
        margin-top: 100px;
        padding-top: 100px;
      background-color: #222;
      color: #eaeaea;
      border-radius: 12px;
      padding: 25px;
      max-width: 850px;
      margin: auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }
    .custom-row {
      display: flex;
      flex-wrap: wrap;
      border: 1px solid #555;
      border-radius: 12px;
    }

    /* Left Panel Styling */
    .intro-section {
      background-color: #333;
      color: #fff;
      padding: 40px;
      border-radius: 12px 12px;
      flex: 1;
    }
    .intro-heading {
      font-size: 2rem;
      font-weight: bold;
    }
    .intro-text {
      font-size: 1.1rem;
      font-weight: 300;
      text-transform:initial;
    }

    /* Right Panel (Form) Styling */
    .form-section {
      background-color: #282828;
      padding: 35px;
      border-radius: 12px 12px;
      flex: 1;
    }
    .form-title {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: #f0f0f0;
    }

    /* Form Controls */
    .form-label {
      font-weight: 600;
      color: #d1d1d1;
    }
    .custom-input,
    .custom-textarea {
      background-color: #444;
      border: 1px solid #666;
      color: #ffffff;
      border-radius: 8px;
      padding: 10px;
      width: 100%;
      margin-bottom: 15px;
      font-size: 1rem;
    }
    .custom-input::placeholder,
    .custom-textarea::placeholder {
      color: #bbb;
    }

    /* Button Styling */
    .submit-btn {
      background-color: #027f70;
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .submit-btn:hover {
      background-color: #025b51;
    }
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{
    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;
}
.iconsOfSidebar a img{
    text-align: center;
    width:25px;
    height: 25px;
}

.iconsOfSidebar{
    display: flex;
    justify-content: space-between;

}

.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:950px){
.footer .icons .insta::after,
.footer .icons .trip::after,
.footer .icons .loc::after{
    display: none;
}
.custom-row{
    flex-direction: column;
    align-content: space-around;
    justify-content: space-between;
}
.hideOnMobile{
    display: none;
}
.menu{
    display: block;
}
.footer .icons .insta::after,
.footer .icons .trip::after,
.footer .icons .loc::after{
    display: none;
}




.custom-row{
    background-image: url(IMG-20241024-WA0015.jpg);
    border: none;
}
body{
    background-size: cover;
    background-position: center;
    background-repeat:no-repeat;
    background-image: url(IMG-20241024-WA0015.jpg);
    width: 100%;
    height: 100%;
}

}
@media (max-width:450px){
.footerNav ul{
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}


.custom-row{
    background-image: url(IMG-20241024-WA0015.jpg);
    border: none;
}
.footerNav ul li{
    margin-top: 10px;
}
}

.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;
}
