@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');

@font-face {
    font-family: 'Objecitvity';
    src: url('../fonts/objectivity/Objectivity-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: "Objecitvity";
    font-style: normal;
}

:root {
    --secondary-color: white;
    --std-btn-border-radius: 30px;
    --std-btn-font-size: 18px;
    --std-font-family: "El Messiri", sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

.padding-x {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

/* Navbar Styles */
.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(#17140D, #242118, #221E16);
    padding: 10px 50px;
    border-bottom: 3px solid #E4BE69;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo img {
    max-width: 50px;
    height: auto;
}


.nav-container {
    background: linear-gradient(90deg, #A57A2C, #D4A94B, #FCEC94, #E4BE69, #FFD77D, #B6903F, #956E2B);
    padding: 10px 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links .mobile-contact {
    display: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: black;
    padding: 10px;
    transition: 0.3s ease-in-out;
}

.nav-links a.active {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}


.global-btn a {
    padding: 10px 40px !important;
    border: 2px solid #C89F5D;
    border-radius: var(--std-btn-border-radius);
    background: linear-gradient(90deg, #A57A2C, #D4A94B, #FCEC94, #E4BE69, #FFD77D, #B6903F, #956E2B);
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: var(--std-btn-font-size);
}


/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

@media (min-width:1700px) and (max-width:2600px) {
    .nav-links a {
        font-size: 20px;
    }
}

/*****navbar styles for mobile screen**********/
@media (max-width: 768px) {
    .logo {
        width: 50%;
        height: auto;
        padding: 10px;
    }

    .nav-container {
        position: absolute;
        top: 70px;
        right: 0;
        background: linear-gradient(90deg, #A57A2C, #D4A94B, #FCEC94, #E4BE69, #FFD77D, #B6903F, #956E2B);
        ;
        width: 100%;
        max-width: 250px;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        visibility: hidden;
        border-radius: 10px;
        overflow: hidden;
    }

    .nav-container.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        width: 38%;
        margin-right: 20px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        gap: 20px;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hide desktop contact button on mobile */
    .desktop-contact {
        display: none;
    }

    /* Style contact as nav-item in mobile menu */
    .nav-links .mobile-contact {
        display: block;
        font-weight: 400;
        font-size: 20px;
        list-style-type: none;
    }

    .mobile-contact .nav-link {
        color: black;
        text-decoration: none !important;
    }

    .global-btn a {
        padding: 10px 20px !important;
        font-size: 14px;
    }

    .padding-x {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/******footer styles**********/
.footer {
    background-color: black;
    color: #F9B400;
    text-align: center;
}

.footer-container {
    width: 100%;
    margin: auto;
}

.subscribe-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.subscribe-section .input-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 20px;
    width: 50%;
}

.email-input {
    width: 70%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background-color: #e0e0e0;
    outline: none;
}

.subscribe-btn a {
    padding: 10px 40px !important;
    border: 2px solid #C89F5D;
    border-radius: var(--std-btn-border-radius);
    background: linear-gradient(90deg, #A57A2C, #D4A94B, #FCEC94, #E4BE69, #FFD77D, #B6903F, #956E2B);
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: var(--std-btn-font-size);
}

.footer-container .subscribe-section .subscribe-text {
    color: white;
    font-size: 18px;
    width: 50%;
    text-align: end;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    border-top: 1px solid #D4A94B;
    border-bottom: 1px solid #D4A94B;
    padding: 10px 0;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
    position: relative;
    margin: 0;
}

.footer-right {
    text-align: right;
}

.footer-left i,
.footer-center i {
    font-size: 30px;
    color: #F9B400;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons i {
    font-size: 18px;
    cursor: pointer;
    color: #F9B400;
    border: 2px solid #F9B400;
    border-radius: 50%;
    margin: 8px;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.social-icons i:hover {
    color: white;
}


.copyright {
    margin: 0;
    font-size: 14px;
}

@media (min-width:1700px) and (max-width:2600px) {
    .footer-container .subscribe-section .subscribe-text {
        font-size: 20px;
    }

    .copyright {
        font-size: 20px;
    }

    .footer-content .footer-left .location {
        font-size: 20px;
    }

    .footer-content .footer-center .phone {
        font-size: 20px;
    }

    .social-icons i {
        font-size: 20px;
    }
}

/********large screens******/
@media screen and (max-width: 1400px) {
    .footer-container .subscribe-section .subscribe-text {
        font-size: 16px;
    }

    .copyright {
        font-size: 16px;
    }

    .footer-content .footer-left .location {
        font-size: 16px;
    }

    .footer-content .footer-center .phone {
        font-size: 16px;
    }

    .social-icons i {
        font-size: 16px;
    }
}

/******tablets*********/
@media screen and (max-width: 800px) {
    .footer-container .subscribe-section .subscribe-text {
        font-size: 14px;
    }

    .copyright {
        font-size: 14px;
    }

    .footer-content .footer-left .location {
        font-size: 14px;
    }

    .footer-content .footer-center .phone {
        font-size: 14px;
    }

    .social-icons i {
        font-size: 14px;
    }
}

@media screen and (max-width: 500px) {
    .footer-content {
        flex-direction: column;
        align-items: start;
    }

    .footer-content .footer-right {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-container .subscribe-section {
        flex-direction: column;
    }

    .subscribe-section .input-field {
        width: 100%;
    }

    .footer-container .subscribe-section .subscribe-text {
        font-size: 14px;
        width: 100%;
        text-align: left;
    }

    .copyright {
        font-size: 14px;
    }

    .footer-content .footer-left .location {
        font-size: 14px;
    }

    .footer-content .footer-center .phone {
        font-size: 14px;
    }

    .footer-right .social-icons {
        align-items: start;
    }

    .social-icons i {
        font-size: 14px;
    }

    .email-input {
        padding: 10px;
    }

    .subscribe-btn a {
        padding: 10px 10px !important;
    }
}

/*offer-banner*/
.offer {
    background-color: black;
    padding: 20px 0;
}

.offer-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: radial-gradient(circle, #D9D9D9, white);
    padding: 40px 0;
    width: 100%;
    box-shadow: 0px -3px 6px #fdd369,
        0px 3px 6px #fdd369;
    overflow: hidden;
}

.offer-banner img {
    width: 200px;
    height: auto;
}

.offer-banner .offer-content {
    text-align: center;
    flex: 1;
}

.offer-banner .offer-heading {
    font-size: 50px;
    font-style: italic;
    color: black;
    margin-bottom: 10px;
}

.offer-banner .offer-title {
    font-size: 70px;
    font-weight: bold;
    margin: 0;
    color: black;
}

.offer-banner .offer-description {
    font-size: 18px;
    color: black;
    margin-top: 10px;
}

/*****animations****/
.offer-banner .pizza-left {
    animation: lefteffect 10s ease-in-out infinite;
    opacity: 1;
}

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

    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(0px, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(360deg);
    }
}

.offer-banner .pizza-right {
    animation: righteffect 10s ease-in-out infinite;
    opacity: 1;
}

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

    25% {
        transform: translate(-50px, -50px) rotate(90deg);
    }

    50% {
        transform: translate(0px, -100px) rotate(180deg);
    }

    75% {
        transform: translate(50px, -50px) rotate(270deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(360deg);
    }
}



@media (min-width:1700px) and (max-width:2600px) {
    .offer-banner .offer-heading {
        font-size: 50px;
    }

    .offer-banner .offer-title {
        font-size: 70px;
    }

    .offer-banner .offer-description {
        font-size: 20px;
    }
}

/********large screens******/
@media screen and (max-width: 1400px) {
    .offer-banner .offer-heading {
        font-size: 30px;
    }

    .offer-banner .offer-title {
        font-size: 50px;
    }

    .offer-banner .offer-description {
        font-size: 16px;
    }
}

/******tablets*********/
@media screen and (max-width: 800px) {
    .offer-banner .offer-heading {
        font-size: 20px;
    }

    .offer-banner .offer-title {
        font-size: 30px;
    }

    .offer-banner .offer-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    /* .offer-banner .offer-heading {
        font-size: 25px;
    }

    .offer-banner .offer-title {
        font-size: 30px;
    }

    .offer-banner .offer-description {
        font-size: 14px;
    }

    .offer-banner {
        flex-direction:column;
    }

    .offer-banner .pizza-left {
        animation: none;
    }

    .offer-banner .pizza-right {
        animation: none;
    }
    .offer-banner img {
        width: 150px;
        height: auto;
    } */
    .offer-banner {
        padding: 5vw 3vw; /* Reduce padding for mobile */
    }

    .offer-banner img {
        width: 20%; /* Further reduce image size */
        max-width: 100px;
    }

    .offer-banner .offer-heading {
        font-size: 5vw;
    }

    .offer-banner .offer-title {
        font-size: 6vw;
    }

    .offer-banner .offer-description {
        font-size: 3vw;
    }
    @keyframes lefteffect {
        0% {
            transform: translate(0px, 0px) rotate(0deg);
        }
        50% {
            transform: translate(0px, 40px) rotate(180deg);
        }

        75% {
            transform: translate(-20px, 20px) rotate(270deg);
        }

        100% {
            transform: translate(0px, 0px) rotate(360deg);
        }
    }
    @keyframes righteffect {
        0% {
            transform: translate(0px, 0px) rotate(0deg);
        }
    
        50% {
            transform: translate(0px, -40px) rotate(180deg);
        }
    
        75% {
            transform: translate(20px, -20px) rotate(270deg);
        }
    
        100% {
            transform: translate(0px, 0px) rotate(360deg);
        }
    }

}

/******video-banner-section*****/
.video-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    padding: 20px 0;
    height: 700px;
}

.video-banner .text {
    text-align: center;
    margin-bottom: 10px;
}

.video-banner .text .banner-text {
    color: white;
    font-size: 18px;
    max-width: 100%;
    text-align: center;
}

.video-banner .img {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.video-banner .img .banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.video-banner .img .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.video-banner .img .play-icon i {
    font-size: 100px;
}

.video-banner .img .play-icon.show-icon {
    opacity: 1 !important;
    transform: translate(-50%, -50%);
}

/*********extra-large*****/
@media (min-width:1700px) and (max-width:2600px) {
    .video-banner .text .banner-text {
        font-size: 20px;
    }
}

/********large screens******/
@media screen and (max-width: 1400px) {
    .video-banner .text .banner-text {
        font-size: 16px;
    }
}

/******tablets*********/
@media screen and (max-width: 800px) {
    .video-banner .text .banner-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .video-banner .text .banner-text {
        font-size: 14px;
    }

    .video-banner {
        height: auto;
    }
}