/* &Global Styles */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {

    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    ;
}


.container {
    width: 90%;
    margin: 0 auto;
}

li {
    list-style: none;
}


a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background-color: #DD5959;
    color: white;
}

body:has(.checkbox:checked) ::selection {
    background-color: #D78C23;
    color: black;
}

.padding-50 {
    padding: 50px 0;
}


::-webkit-scrollbar {
    width: 12px;
    background-color: #fff;
    border-left: 2px solid #eee;
    box-shadow: 0px 0px 21px 0px #0003 inset;
}

::-webkit-scrollbar-thumb {
    background-color: #000;
    box-shadow: 0px 0px 10px 0px #eeeeee8c inset;
    border-radius: 20px;
}

.all-title {
    text-align: center;
}

.Sec-title {
    font-size: 14px;
    font-weight: 400;
    color: #7f7f90;
    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-transform: uppercase;
}

.Sec-title2 {
    font-family: "Amatic SC", "sans-serif";
    font-size: 50px;
}

.Sec-title2 span {
    color: #CE1212;
}

body:has(.checkbox:checked) .Sec-title2 span {
    color: #D78C23;
}




body:has(.checkbox:checked) {
    background-color: #202020;
    color: white;

}

body:has(.checkbox:checked) .navbar-Sec {
    background-color: #171717;
    color: white;


}

:has(.checkbox:checked) #home,
:has(.checkbox:checked) #gallery {
    background-color: #252525;
    color: white;


}



body:not(body:has(:target)) li a[href="#home"],
body:has(.home:target) li a[href="#home"],
body:has(.contact:target) li a[href="#contact"],
body:has(.gallery:target) li a[href="#gallery"],
body:has(.cheif:target) li a[href="#cheif"] {

    color: black;


}

body:not(body:has(:target)):has(.checkbox:checked) li a[href="#home"],
body:has(.home:target):has(.checkbox:checked) li a[href="#home"],
body:has(.contact:target):has(.checkbox:checked) li a[href="#contact"],
body:has(.gallery:target):has(.checkbox:checked) li a[href="#gallery"],
body:has(.cheif:target):has(.checkbox:checked) li a[href="#cheif"] {

    color: rgb(255, 255, 255);

}

body:not(body:has(:target)) li a[href="#home"]::before,
body:has(.home:target) li a[href="#home"]::before,
body:has(.contact:target) li a[href="#contact"]::before,
body:has(.gallery:target) li a[href="#gallery"]::before,
body:has(.cheif:target) li a[href="#cheif"]::before {
    content: "";
    height: 2px;
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    background-color: #CE1212;
    animation: line .5s forwards;
}


body:not(body:has(:target)):has(.checkbox:checked) li a[href="#home"]::before,
body:has(.home:target):has(.checkbox:checked) li a[href="#home"]::before,
body:has(.contact:target):has(.checkbox:checked) li a[href="#contact"]::before,
body:has(.gallery:target):has(.checkbox:checked) li a[href="#gallery"]::before,
body:has(.cheif:target):has(.checkbox:checked) li a[href="#cheif"]::before {
    background-color: #C17E1F;
}




:has(#Side-bar:checked) .overlay {
    display: block;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsla(0, 0%, 100%, 0.505);
    z-index: 100;
    display: none;
}

:has(.checkbox:checked) .overlay {

    background-color: hsl(0, 0%, 9%, 0.7);

}





/*! Start Header Navbar  */
.navbar-Sec {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 14px 0px #0000001b;
    background-color: white;
    z-index: 9999;

}

.navbar-Container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;

}

.navbar-logo {
    z-index: 100;
    position: static;
}

.navbar-logo a {
    font-size: 30px;
    font-weight: bold;


}

.navbar-logo a::after {
    content: ".";
    color: #CE1212;
    font-weight: bold;

}

:has(.checkbox:checked) .navbar-logo a::after {
    color: #D78C23;
}







.links-navbar {
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    right: -100%;
    width: 330px;
    height: 100vh;
    animation: sidebar .5s;
    z-index: 9999;
    transition: all .5s;

}


@keyframes sidebar {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}


#Side-bar {
    display: none;

}

.open-icon,
.close-icon {
    cursor: pointer;
}

:has(#Side-bar:checked) .links-navbar {
    right: 0;

}


.navbar-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-icon i {
    font-size: 25px;
    padding: 0 10px;

}

.switch:has(.checkbox:checked) i {
    color: #efefef;
}


.close-icon {
    align-self: flex-end;
    padding: 10px 20px;
    font-size: 22px;
    color: #7f7f90;
    transition: all 0.3s ease-in-out;
}

.links-navbar ul {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.xmark:hover,
.links-navbar ul li a:hover {

    color: #000000;
    cursor: pointer;
    position: relative;
}

.links-navbar ul li a {
    position: relative;
}

.links-navbar ul li a:hover::before {
    content: "";
    height: 2px;
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    background-color: #CE1212;
    animation: line .5s forwards;

}

:has(.checkbox:checked) .links-navbar ul li a:hover::before {

    background-color: #D78C23;

}

@keyframes line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.links-navbar ul li {
    color: #7f7f90;
    padding: 15px 10px;
    font-size: 17px;
    font-weight: 600;

}

.switch {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.switch input {
    opacity: 0;
}

.switch input:checked~.moon {
    display: none;
}

.switch input:checked~.sun {

    display: block;
}

.sun {
    display: none;
}

.switch .moon,
.switch .sun {
    position: absolute;

}







/*! End Header Navbar  */


/*^ Start Home Section  */
.home-Sec {
    background-color: #EEEEEE;
    margin-top: 40px;
}

.home-Container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    align-items: center;

}

.home-Content,
.home-Image {
    width: 100%;
    padding: 20px 0;
}

body:has(.checkbox:checked) .home-Content h1 {
    color: white;
}

.home-Image img {
    width: 100%;
    filter: drop-shadow(4px 4px 9px #000a);


}

.home-Image img:hover {
    animation: shake 1s infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.home-Content {
    text-align: center;
}


.home-Content h1 {
    font-size: 65px;
    color: #37373f;
    font-family: "Amatic SC", sans-serif;
}

.home-Content p {
    color: #4f4f5a;
    margin: 20px 0;
    line-height: 1.5;
    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

:has(.checkbox:checked) .home-Content p {
    color: #838282;
}

.home-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.book-btn {
    background-color: #CE1212;
    border-radius: 25px;
    padding: 10px 20px;
    color: white;
    transition: all .5s;
}

.book-btn:hover {
    background-color: #E61414;

}

:has(.checkbox:checked) .book-btn {
    background-color: #D78C23;
    color: black;
}




.play-btn {
    background-color: white;
    border-radius: 50%;
    padding: 10px 15px;
    position: relative;

}

:has(.checkbox:checked) .play-btn {
    background-color: black;

}

.play-icon {
    transition: all .5s;
}

.video-btn:hover .play-icon,
.video-btn:hover span {
    color: #CE1212;
}

:has(.checkbox:checked) .video-btn:hover span,
:has(.checkbox:checked) .video-btn:hover .play-icon {
    color: #D78C23;

}

.border-play-btn {
    background-color: #eccf1300;
    border-radius: 50%;
    position: relative;
    padding: 8px
}

.border-play-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid red;
    border-color: transparent transparent #CE1212 #CE1212;
    transform: rotate(45deg);
}

:has(.checkbox:checked) .border-play-btn::before {
    border: 8px solid #D78C23;
    border-color: transparent transparent #D78C23 #D78C23;

}

.video-btn {
    display: flex;
    align-items: center;
}

.video-btn span {
    font-weight: 600;
    transition: all .5s;
}





/*^ End Home Section  */




/*? Start Cheifs Section */
.cheif-Container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    padding: 20px 0;
}

.cheif-card {
    transition: all .5s;
    padding: 20px 0px;


}

.inner-card {
    box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 8px;
}


.cheif-card:hover {
    transform: scale(1.1);

}

.cheif-card img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.img-card {
    position: relative;
}

.cheif-content {
    background-color: white;
    text-align: center;
    padding: 20px 10px;
}

:has(.checkbox:checked) .cheif-content {
    background-color: #171717;
    color: #ffffff;
}

:has(.checkbox:checked) .cheif-content p,
:has(.checkbox:checked) .cheif-content span {

    color: #9f9f9f;
}

.cheif-content span {
    display: inline-block;
    margin: 10px 0;
    font-size: 14px;
}

.cheif-content span,
.cheif-content p {
    color: #7f7f90;

}

.cheif-content p {
    font-size: 15px;
    font-style: italic;
}

.cheif-card .img-card::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    background-image: url(../images/team-shape.svg);
    background-repeat: repeat-x;
    width: 100%;
    height: 60px;

}

:has(.checkbox:checked) .cheif-card .img-card::before {
    display: none;
}

.card-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: #ffffff4d;
    border-radius: 5px;
    opacity: 0;
    padding: 5px;
    transition-delay: .5s;


}

.cheif-card:hover .card-icon {
    opacity: 1;
    animation: card-icons .5s forwards;
    animation-delay: .5s;

}

@keyframes card-icons {
    0% {
        transform: translateX(20px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.card-icon i {
    color: #37373f66;
    font-size: 18px;
    padding: 10px 10px;
    transition: all 1s;
    text-align: center;
}

.card-icon i:hover {
    color: black;

}



/*? End Cheifs Section */



/*& Start galley Section  */

.gallery-Sec {
    background-color: #EEEEEE;
    ;
}

.gallery-Container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;


}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all .5s;

}

.gallery-item {
    position: relative;
    border: 5px solid white;
    overflow: hidden;
    width: 100%;


}

.gallery-layer {
    background-color: rgba(0, 0, 0, 0.588);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    bottom: 0;
    transition: all .5s;

}

.gallery-content {
    position: absolute;
    top: 100%;
    width: 100%;
    text-align: center;

}

.gallery-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;

}

.gallery-content p {
    color: #ddd;
    margin-top: 10px;
    padding: 0 10px;



}

.gallery-item:hover .gallery-layer {
    top: 0;
}

.gallery-item:hover .gallery-content {
    top: 50%;
    transform: translateY(-50%);

}

.gallery-item:hover img {
    transform: scale(1.1);


}


/*& End galley Section  */



/*~  Start  Contact Section  */
.contact-Container {
    padding: 40px 0;
}

.map iframe {
    width: 100%;
    height: 300px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    padding: 20px 0;
}

.info-item {
    width: 100%;
    padding-block: 10px;
}

.inner-info-item {

    background-color: #F5F5F5;
    padding: 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;

}

:has(.checkbox:checked) .inner-info-item,
:has(.checkbox:checked) .info-content p {
    background-color: #0D0D0D;
    color: white;
}



.info-item h3 {
    color: #7D7D7D;
    font-size: 20px;
    margin: 0 0 5px;
}

.info-item p {
    color: #212529;

}

.info-content span {
    font-weight: bolder;
}

.info-item i {
    background-color: #CE1212;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
}


.contact-inputs form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    box-shadow: 0 0 1.875rem #00000014;
}

:has(.checkbox:checked) .contact-inputs form {
    background-color: #171717;
}


.contact-inputs input {
    width: 100%;
    padding: 15px;
    border: 2px solid #E8E3E3;
    margin-bottom: 20px;

}

.contact-inputs textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    max-height: 18.75rem;
    resize: vertical;
}

.contact-inputs input:focus,
textarea:focus {
    outline: none;
    border: 2px solid #CE1212;
}

::placeholder {
    font-family: "Inter", sans-serif;
}

.contact-inputs button {
    background-color: #CE1212;
    color: white;
    padding: 12px 40px;
    border-radius: 20px;
    border: none;
    transition: all .5s;
    margin: 20px auto;
    font-size: 15px;
    font-family: inherit;
}

:has(.checkbox:checked) .contact-inputs button,
:has(.checkbox:checked) .info-item i {
    background-color: #C17E1F;
    color: black;
}

body:has(.checkbox:checked) .contact-inputs button:hover {
    background-color: #cd8521;
    color: black;
}

.contact-inputs button:hover {
    background-color: #E61414;
    cursor: pointer;
}


/*~  End  Contact Section  */




/*todo Start footer */

.footer-Sec {
    background-image: linear-gradient(#0009, #0009), url(../images/textured-metal-background.jpg);
    box-shadow: 0px -1px 5px #0007;
    background-size: contain;
    width: 100%;
    color: white;
}

.footer-Countainer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}


.footer-Countainer .footer-item {
    padding-block: 10px;
}


.middle-item {
    padding-inline: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 40px;
}

.footer-logo span {
    font-size: 30px;
}

.footer-logo span::after {
    content: ".";
    color: #CE1212;

}

body:has(.checkbox:checked) .footer-input button,
:has(.checkbox:checked) .footer-input button i {
    background-color: #C17E1F;
    color: black;
}

body:has(.checkbox:checked) .footer-input button:hover {
    background-color: #dd9530;
    color: #000000;

}

.footer-icon h3 {
    border-bottom: 3px solid #323232;
    padding: 20px 0 10px 0;
    text-align: center;
    font-weight: bold;
    font-size: 18.7px;
}

.footer-icon i {
    color: white;
    font-size: 24px;
}

.footer-icon ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
}

.subscribe-content p {
    padding: 15px 0;
}

.footer-input {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;


}

.footer-input input:focus {
    outline: none;
}

.footer-input input {
    padding: 10px;
    width: 100%;
}

.footer-input button {
    width: 100%;
    background-color: #CE1212;
    color: white;
    padding: 10px;
    border: none;

}

.footer-input button:hover {
    background-color: #E61414;
    cursor: pointer;


}

.footer-input button i {

    color: white;


}

.Quick-links h3 {
    padding: 20px 0;
}

.links {
    columns: 2;
}

.Quick-links .links ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
}

.Quick-links .links ul li {
    position: relative;
    transition: all .5s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px 5px;
}




.Quick-links .links ul li::before {
    content: "  ";
    background-image: url(../images/chevron-right-solid.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;




}

.Quick-links .links ul li:hover {
    background-color: #222;
    cursor: pointer;
    transform: translateX(10px);
    display: block;
}



.Get-in-Touch {
    padding: 10px 0;
}

.getintouch-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.getintouch-item i {
    color: #CE1212;
    font-size: 22px;
}

:has(.checkbox:checked) .getintouch-item i,
:has(.checkbox:checked) .footer-logo span::after {
    color: #D78C23;
}


/*todo End footer */