@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html,
body {
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

@media (max-width: 900px) {
    body {
        font-size: 16px;
    }
    .navigation {
        flex-direction: column;
        gap: 10px;
    }
    .header {
        padding: 35px 0;
        display: flex;
        justify-content: center;
    }
}
body::-webkit-scrollbar {
    width: 10px;
    background-color: #f2f2f2;
}
body::-webkit-scrollbar-thumb {
    background-color: gold;
}
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #f2f2f2;
    background-color: transparent;
}
.header {
    padding: 6px 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    transition: top 0.3s;
    z-index: 1000;
    max-width: 1920px;
    margin: 0 auto;
    border-bottom: 1px solid gold;
}
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-link, .footer-link {
    text-decoration: none;
    color: gold;
    font-weight: 900;
    font-size: 20px;
    transition: color 0.3s ease;
    font-weight: 100;
}
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.nav-item {
    margin-left: 20px;
}
.nav-link {
    font-weight: 100;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
    transition: border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
    font-size: 14px;
}
.main-content {
    margin-top: 40px;
}
@media (max-width: 550px) {
    .nav-item {
        margin-left: 5px;
        font-size: 14px;
    }
    .main-content {
        margin-top: 50px;
    }
    .nav-link{
        padding: 2px 5px;
    }
}

.welcome-section {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 20px;
    align-items: center;
}

.welcome-image {
    width: 100%;
    height: auto;
}

.text-block {
    text-align: center;
}

.welcome-text {
    font-size: 20px;
    margin-bottom: 10px;
}

.restaurant-title {
    font-size: 83px;
    margin: 10px 0;
}

.restaurant-subtitle {
    font-size: 24px;
    margin: 10px 0;
}

.booking-link {
    font-size: 18px;
    color: gold;
    text-decoration: none;
    transition: border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
}

@media (max-width: 768px) {
    .welcome-section {
        flex-direction: column;
    }

    .text-block {
        text-align: center;
    }
    .restaurant-title {
        font-size: 52px;
    }
}

.news-section {
    padding: 20px;
    text-align: center;
}

.news-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    margin: 10px;
    width: 400px;
    text-align: center;
}

.card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-title {
    font-size: 24px;
    margin: 10px 0;
}

.card-description {
    font-size: 16px;
    margin: 10px 0;
}

.card-link {
    font-size: 14px;
    color: gold;
    text-decoration: none;
    transition: border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
}

@media (max-width: 768px) {
    .card {
        width: 100%;
    }
}

.biryani-bliss-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.biryani-bliss-content {
    max-width: 1000px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
}

.biryani-bliss-text-1,
.biryani-bliss-text-2 {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #ffffff;
}

@media (max-width: 600px) {
    .biryani-bliss-text-1,
    .biryani-bliss-text-2 {
        font-size: 1em;
    }
}

.parallax-section-bliss {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.parallax-bg-bliss-1 {
    background-image: url('../img/paralax-index.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.parallax-bg-bliss-2 {
    background-image: url('../img/paralax-index-2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.parallax-bg-bliss-3 {
    background-image: url('../img/paralax-index-3.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.parallax-bg-bliss-4 {
    background-image: url('../img/delivery/delivery-bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.advantages-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 120px;
}

.advantages-title {
    text-align: center;
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 30px;
}

.advantage-block {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.advantage-image {
    width: 50%;
    height: auto;
}

.advantage-text {
    width: 50%;
    padding: 0 20px;
}

.advantage-subtitle {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
}

.advantage-description {
    font-size: 16px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 40px 20px;
    }
    .advantage-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .advantage-image {
        width: 100%;
        margin-bottom: 10px;
    }

    .advantage-text {
        width: 100%;
        padding: 0;
    }

    .revers-text {
        flex-direction: column-reverse;
    }
}

.location-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    margin: 20px;
}

.location-info {
    flex: 1;
    margin-right: 20px;
}

.location-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: #ffffff;
}

.location-description {
    font-size: 1.2em;
    color: #ffffff;
    line-height: 1.5;
}

.location-map {
    flex: 1;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .location-section {
        flex-direction: column;
    }

    .location-info {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .location-title {
        font-size: 1.8em;
    }

    .location-description {
        font-size: 1em;
    }

    .location-map {
        height: 300px;
    }

    .location-map iframe {
        height: 100%;
    }
}

.form {
    max-width: 1100px;
    margin: 0 auto;
    background: rgb(0, 0, 0);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.heading-form {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #ffffff;
    font-weight: 100;
    border-bottom: 1px solid white;
}

.box {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    transition: border-color 0.3s;
    font-size: 1em;
}

.box:focus {
    border-color: #ffffff;
    box-shadow: 0 0 5px #ffffff;
}

.form textarea {
    resize: none;
    height: 120px;
    font-size: 1em;
}

.contact-form__checkbox {
    margin-right: 10px;
}

.privacy-link {
    color: #ffffff;
    text-decoration: none;
}

.btn {
    margin-top: 10px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    padding: 12px;
    border-radius: 20px;
    width: 100%;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .form {
        padding: 20px;
        margin: 30px;
    }

    .box {
        padding: 10px;
    }

    .heading-form {
        font-size: 1.5em;
    }

    .btn {
        font-size: 0.9em;
    }
}

@media (max-width: 576px) {
    .form {
        margin: 20px;
    }

    .box {
        margin-bottom: 10px;
    }

    .btn {
        font-size: 0.8em;
    }
}

.footer {
    background-color: #000000;
    color: white;
    padding: 20px 0;
    border-top: 1px solid gold;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-link {
    font-size: 1.5em;
    color: gold;
    text-decoration: none;
    margin-bottom: 10px;
}

.contact-footer {
    color: #ffffff;
    text-decoration: none;
    margin: 5px 0;
}

.contact-footer:hover {
    color: #dcdcdc;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    color: #dbdbdb;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9em;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between; 
    }
}

.compliance-section {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    margin: 40px auto;
}

.compliance-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #ffffff;
}

.compliance-subheading {
    margin-top: 20px;
    font-size: 1.5em;
    color: #ffffff;
}

.compliance-text {
    margin-bottom: 15px;
    font-size: 1em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .compliance-section {
        padding: 15px;
    }

    .compliance-heading {
        font-size: 1.5em;
    }

    .compliance-subheading {
        font-size: 1.2em;
    }

    .compliance-text {
        font-size: 0.9em;
    }
}
.contact-priv-term {
    text-decoration: none;
    color: gold;
    transition: color 0.3s ease;
}

.terms-section {
    width: 100%;
    max-width: 800px;
    background-color: #000000;
    padding: 20px;
    margin: 40px auto;
}

.terms-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #ffffff;
}

.terms-subheading {
    margin-top: 20px;
    font-size: 1.5em;
    color: #ffffff;
}

.terms-text {
    margin-bottom: 15px;
    font-size: 1em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .terms-section {
        padding: 15px;
    }

    .terms-heading {
        font-size: 1.5em;
    }

    .terms-subheading {
        font-size: 1.2em;
    }

    .terms-text {
        font-size: 0.9em;
    }
}

.events-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.events-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
    color: #ffffff;
}

.events-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.event-card {
    width: 48%;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: auto;
}

.event-title {
    margin: 15px;
    font-size: 1.5em;
    color: #ffffff;
}

.event-description {
    margin: 0 15px 15px;
    font-size: 1em;
    color: #ffffff;
}

.event-price {
    margin: 0 15px 15px;
    font-size: 1.2em;
    color: gold;
}

.event-btn {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .event-card {
        width: 100%;
    }
    
    .events-heading {
        font-size: 2em;
    }
    
    .event-title {
        font-size: 1.2em;
    }
    .event-btn {
        font-size: 1em;
        padding: 8px 16px;
    }
}
.parallax-section-bliss-margin {
    margin-bottom: 20px;
}

.chef-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px;
    align-items: center;
}

.chef-block, .contact-block {
    flex: 1;
    margin: 10px;
    padding: 20px;
}

.chef-name {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.chef-description {
    font-size: 1em;
    line-height: 1.5;
}

.contact-block {
    text-align: center;
}

.chef-image {
    border-radius: 50%;
    width: 50%;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .chef-block, .contact-block {
        flex: 0 0 100%;
    }
    
}

.reviews-section {
    text-align: center;
    margin: 20px;
}

.reviews-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.slider {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.slide {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.review-image {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.review-text {
    font-size: 1.2em;
    line-height: 1.5;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 1.5em;
    }

    .review-text {
        font-size: 1em;
    }

    .review-image {
        width: 60px;
        height: 60px;
    }
}

.menu-content {
    margin-top: 40px;
}
.catalog-section {
    padding: 20px;
    text-align: center;
}

.catalog-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 30px;
}

.catalog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.catalog-card {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 150px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    overflow: hidden;
    border-radius: 8px;
}

.catalog-card.salads {
    background-image: url('../img/menu/menu-1.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.soups {
    background-image: url('../img/menu/menu-2.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.second-courses {
    background-image: url('../img/menu/menu-3.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.steaks {
    background-image: url('../img/menu/menu-4.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.fish {
    background-image: url('../img/menu/menu-5.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.dumplings {
    background-image: url('../img/menu/menu-6.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.potato-dishes {
    background-image: url('../img/menu/menu-7.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.snacks {
    background-image: url('../img/menu/menu-8.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.desserts-and-ice-cream{
    background-image: url('../img/menu/menu-9.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card.smoothies-juices-drinks {
    background-image: url('../img/menu/menu-10.jpg');
    background-size: cover;
    background-position: center;
}
.catalog-card.coffee-tea {
    background-image: url('../img/menu/menu-11.jpg');
    background-size: cover;
    background-position: center;
}
.catalog-card.sets {
    background-image: url('../img/menu/menu-12.jpg');
    background-size: cover;
    background-position: center;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.catalog-card h3 {
    position: relative;
    z-index: 2;
    font-size: 20px;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .catalog-title {
        font-size: 28px;
    }

    .catalog-card {
        height: 120px;
    }

    .catalog-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .catalog-title {
        font-size: 24px;
    }

    .catalog-card {
        height: 100px;
    }

    .catalog-card h3 {
        font-size: 16px;
    }
}

.menu-item-container {
    padding: 0px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.category-title {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.menu-card {
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-image {
    width: 100%;
    height: auto;
}

.menu-name {
    font-size: 1.5em;
    color: #ffffff;
    margin: 10px 15px;
}

.menu-ingredients, .menu-price {
    font-size: 1em;
    color: #ffffff;
    margin: 5px 15px;
}

.menu-price {
    color: gold;
}

.order-button {
    display: inline-block;
    margin: 15px;
    padding: 10px 20px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .menu-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .menu-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1025px) {
    .nav-link:hover {
        border-bottom: 1px solid rgb(255, 255, 255);
    }
    .header-link:hover, .footer-link:hover {
        text-decoration: none;
        color: #444444;
    }
    .booking-link:hover, .card-link:hover {
        border-bottom: 1px solid gold;
    }
    .btn:hover {
        background-color: gold;
    }
    .contact-priv-term:hover {
        color: rgb(138, 138, 138);
    }
    .event-btn:hover {
        background-color: gold;
    }
    .catalog-card:hover::before {
        background-color: rgba(0, 0, 0, 0);
    }
    .order-button:hover {
        background-color: gold;
    }
}