* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Dancing Script", cursive;
    scroll-behavior: smooth;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3); 
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(255, 255, 255);
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 20px;
    font-style: normal;
}

.logo img {
    height: 40px;
    color: rgb(58, 57, 57);
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.background-image img {
    width: 100%;
    height: 100%;
    filter: brightness(0.5);
    object-fit: cover;
}

.navbar {
    padding: 1rem;
   
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: space-around;
    gap: 20px; 
    
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: gold;
}

.hamburger {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active {
    background: rgba(245, 197, 24, 0.8);
}

.hamburger.active .line {
    background-color: #000000;
}

.sidebar {
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 0;
    right: -250px;
    background: rgba(0, 0, 0, 0.95);
    transition: all 0.3s ease;
    padding-top: 80px;
    z-index: 999;
    backdrop-filter: blur(0);
}

.sidebar.active {
    right: 0;
}

.sidebar-links {
    list-style: none;
    padding: 0 20px;
}

.sidebar-links li {
    margin: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.sidebar-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}

.sidebar-links a:hover {
    color: gold;
}

@media screen and (max-width: 800px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
}


html {
    scroll-behavior: smooth;
}


.nav-links a.active,
.sidebar-links a.active {
    color: gold;
    font-weight: bold;
}

.hero {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
    color: rgb(255, 255, 255);
    width: 100%;
    max-width: 800px;
    padding: 25px;
    animation: fadeIn 1s ease-in-out;
}

.hero h2 {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 76px;
    font-style: normal;
    color: gold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    margin-bottom: 20px;
}

.hero p {
    font-family: "Poppins", sans-serif;
    font-style: italic;
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: gold;
    color: rgb(15, 15, 15);
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    margin-top: 20px;
    transition: all 0.3s ease;
    align-items: center;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn:hover {
    background-color: rgb(117, 117, 2);
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 800px) {
    .header {
        width: auto;
        height: auto;
    }
    
    .header-content {
        flex-direction: column;
        align-items: center;
        padding: 5px;
    }
    
    .hero {
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 15px;
    }

    .hero h2 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 18px;
    }

    .products {
        padding: 10px;
    }

    .product-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 500px) {
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

.products {
    padding: 50px 20px;
    background-color: rgb(255, 255, 255);
}

.products-text {
    margin-bottom: 40px;
}

.products-text h2 {
    font-size: 36px;
    text-align: center;
    color: #333;
}

.products-text p {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-row {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
    flex-wrap: wrap;
    gap: 30px;
}

.product {
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product img {
    width: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    height: 200px;
    object-fit: cover;
    border: 5px solid gold;
}

.product h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.product p {
    font-size: 1rem;
    color: #666;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: rgb(7, 7, 7);
    position: relative;
    overflow: hidden;
    border: 50px 20px 50px 20px;
    bottom: 0;
    height: 1100px;
}

.container img {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
    position: absolute;
    top: 40px;
    left: 50px;
}

.oriental-taste {
    padding: 20px 0;
    margin-left: 400px;
    text-align: left;
    margin-right: 80px;
    top: 0;    
}

.oriental-taste h2 {
    font-size: 2.5rem;
    color: gold;
    margin-bottom: 20px;
}

.oriental-taste p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-wrap: wrap;
    word-break: break-all;
    width: 500px;
    margin-left: 10px;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
}

.button, .button2 {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f5c518;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover, .button2:hover {
    background-color: rgb(117, 117, 2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.statistics-section {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    margin: 50px 0;
    text-align: center;
}

.statistics-section h2 {
    font-size: 2.5rem;
    color: gold;
    margin-bottom: 20px;
}

.statistics-section p {
    color: #ddd;
    font-family: "Poppins", sans-serif;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.statistics-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.statistic {
    text-align: center;
    padding: 20px;
    border: 2px solid gold;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.statistic:hover {
    background-color: rgba(245, 197, 24, 0.1);
    transform: scale(1.05);
}

.statistic h3 {
    font-size: 2rem;
    color: #f5c518;
    margin-bottom: 10px;
}

.statistic p {
    font-size: 1rem;
    color: #ccc;
    font-family: "Poppins", sans-serif;
}

.chicken-grill {
    padding: 20px 0;
    text-align: left;
    margin-left: 100px;
    bottom: 0;
}

.chicken-grill h2 {
    font-size: 2.5rem;
    color: gold;
    margin-bottom: 2px;
}

.chicken-grill p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 30px;
    width: 600px;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
}

.container .img2 {
    width: 250px;
    height: 250px;
    display: flex;
    border-radius: 12px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
    position: relative;
    top: -250px;
    left: 850px;
    bottom: 0;
}

@media (max-width: 800px) {
    .container {
        padding: 30px 20px;
        text-align: center;
    }
    
    .container img, .container .img2 {
        position: static;
        margin: 20px auto;
        display: block;
    }
    
    .oriental-taste, .chicken-grill {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }
    
    .statistics-section {
        width: 100%;
    }
    
    .statistics-container {
        flex-direction: column;
        align-items: center;
    }
    
    .statistic {
        width: 120px;
        height: 120px;
    }
}

/* About Section Styling */
.about {
    padding: 30px 10px;
    background-color: #f9f9f9;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: gold;
}

.about-item {
    margin: 5px 0;
    display: flex;
    gap: 0px;
    flex-direction: column;
}

.about-image {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 20px auto 0;
    max-width: 800px;
    font-family: 'Poppins', sans-serif;
    padding: 0 20px;
}

/* Alternating layout for desktop */
@media (min-width: 768px) {
    .about-item {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .about-item:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .about-image {
        width: 50%;
        margin: 0;
    }

    .about p {
        width: 50%;
        margin: 0;
        text-align: left;
    }
}

/* Mobile layout */
@media (max-width: 767px) {
    .about-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .about p {
        text-align: center;
    }
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-background {
    position: relative;
    width: 100%;
    height: 500px;
}

.video-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yellow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(107, 79, 9);
    opacity: 0.5;
    mix-blend-mode: multiply;
}

.video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    z-index: 2;
    padding: 20px;
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
    .video-wrapper {
        width: 90%;
    }
    
    .video-wrapper iframe {
        height: 300px;
    }
    
    .video-background {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .about {
        padding: 30px 15px;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .video-background {
        height: 300px;
    }
    
    .video-wrapper iframe {
        height: 200px;
    }
}

.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease-in-out;
}

.contact-text {
    text-align: center;
    margin-bottom: 30px;
}

.contact-text h2 {
    color: #030303;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-text p {
    color: #464646;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

input:focus, textarea:focus {
    outline: none;
    border-color: gold;
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button[type="submit"] {
    background-color: gold;
    color: rgb(12, 12, 12);
    padding: 15px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background-color: rgb(122, 104, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    .contact-form {
        padding: 30px 20px;
        margin: 30px 15px;
    }
    
    .contact-text h2 {
        font-size: 2rem;
    }
    
    input, textarea {
        padding: 12px;
    }
}

footer {
    background-color: #1e1e1f;
    color: #ecf0f1;
    padding: 60px 20px 20px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-about, .footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-about h3 {
    color: gold;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-about p {
    line-height: 1.6;
    color: #ccc;
    font-family: "Poppins", cursive;
}

.footer-links h3 {
    color: gold;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 15px 0;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
}

.footer-links a:hover {
    color: gold;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

.footer-download {
    margin-top: 20px;
    line-height: 2rem;
}

.footer-download h3 {
    color: gold;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-download p {
    font-family: 'Poppins', sans-serif;
}

.footer-download .download-link {
    color: #000000;
    font-family: "poppins", sans-serif, cursive;
    background-color: gold;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.footer-download .download-link:hover {
    background-color: rgb(122, 104, 1);
}