* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0b0b0b;
    font-family: 'Inter', sans-serif;
    color: #fff;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: #ff6b2b;
    border-radius: 10px;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animated {
    animation: fadeInUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 7%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 43, 0.3);
    transition: background 0.3s;
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b2b, #ffb347);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}
.logo i {
    background: none;
    -webkit-background-clip: unset;
    color: #ff6b2b;
    margin-right: 5px;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 600;
    transition: 0.3s;
}
.nav-links a:hover {
    color: #ff6b2b;
}
.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ff6b2b;
}

/* hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(110deg, #0a0a0a 35%, rgba(0, 0, 0, 0.5) 100%), url('https://images.unsplash.com/photo-1550547660-d9450f859349?q=80&w=2070&auto=format') center/cover fixed;
    display: flex;
    align-items: center;
    padding: 0 7%;
    position: relative;
}
.hero-content {
    max-width: 650px;
}

.image img{
    width: 520px;
    height: auto;
    margin-left: 190px;
}
.hero-badge {
    display: inline-block;
    background: #ff6b2b;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.hero h1 {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}
.hero h1 span {
    color: #ff6b2b;
}
.hero p {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    opacity: 0.85;
    line-height: 1.5;
}
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary, .btn-outline {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
}
.btn-primary {
    background: #ff6b2b;
    color: #000;
    box-shadow: 0 8px 20px rgba(255, 107, 43, 0.3);
}
.btn-primary:hover {
    background: #ff8547;
    transform: scale(1.05);
}
.btn-outline {
    border: 2px solid #ff6b2b;
    color: #fff;
}
.btn-outline:hover {
    background: #ff6b2b;
    color: #000;
}

.section {
    padding: 90px 7%;
}
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}
.section-title span {
    color: #ff6b2b;
    border-bottom: 4px solid #ff6b2b;
    padding-bottom: 8px;
}

/* menu cards */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.menu-card {
    background: #121212;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #262626;
}
.menu-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b2b;
    box-shadow: 0 20px 30px -12px rgba(255, 107, 43, 0.2);
}
.menu-img {
    height: 230px;
    overflow: hidden;
}
.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.menu-card:hover .menu-img img {
    transform: scale(1.08);
}
.menu-info {
    padding: 1.5rem;
}
.menu-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
}
.menu-info p {
    color: #aaa;
    margin: 8px 0;
    font-size: 0.9rem;
}
.price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ff6b2b;
    margin: 10px 0;
}
.order-card-btn {
    width: 100%;
    background: #ff6b2b;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1rem;
}
.order-card-btn:hover {
    background: #ff8547;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.feature {
    text-align: center;
    background: #111;
    padding: 2rem;
    border-radius: 50px;
    width: 220px;
    transition: 0.3s;
}
.feature i {
    font-size: 2.5rem;
    color: #ff6b2b;
    margin-bottom: 1rem;
}
.feature:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
}

/* Tab styling */
.tab-btn {
    background: #1e1e1e;
    border: 1px solid #333;
    padding: 10px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.tab-btn:hover {
    background: #2a2a2a;
    border-color: #ff6b2b;
}
.active-tab {
    background: #ff6b2b;
    color: #fff;
    border-color: #ff6b2b;
    box-shadow: 0 4px 12px rgba(255,107,43,0.3);
}
.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}
.active-content {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testi-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.testi-card {
    background: #121212;
    padding: 2rem;
    border-radius: 30px;
    width: 300px;
    text-align: center;
    border: 1px solid #242424;
}
.testi-card i {
    font-size: 2rem;
    color: #ff6b2b;
}
.stars {
    color: #ffb347;
    margin: 10px 0;
}

/* order form */
.order-box {
    background: linear-gradient(135deg, #111, #0a0a0a);
    border-radius: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2.5rem;
    border: 1px solid #2a2a2a;
}
.number-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.order-info {
    flex: 1;
}
.order-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-method {
    display: flex;
    gap: 1rem;
    margin: 0;
}
.order-method label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    padding: 14px 0;
    background: #1e1e1e;
    border-radius: 60px;
    transition: all 0.2s ease;
    border: 1.5px solid #333;
    font-size: 1rem;
    text-align: center;
    line-height: 1;
    margin: 0;
}
.order-method label:hover {
    background: #2a2a2a;
    border-color: #ff6b2b;
}
.order-method input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff6b2b;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}
.order-method label:has(input:checked) {
    background: rgba(255, 107, 43, 0.15);
    border-color: #ff6b2b;
    color: #ff6b2b;
}

.order-form input, .order-form select, .order-form textarea {
    background: #1e1e1e;
    border: 1px solid #333;
    padding: 14px 18px;
    border-radius: 60px;
    color: white;
    font-size: 0.95rem;
    width: 100%;
}
.order-form textarea {
    border-radius: 25px;
}
.order-form button {
    background: #ff6b2b;
    border: none;
    padding: 14px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s;
}
.order-form button:hover {
    background: #ff8547;
    transform: scale(1.02);
}
#address:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #2a2a2a;
}

/* demo toast message */
.demo-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b2b, #ffb347);
    color: #000;
    padding: 16px 28px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideDown 0.4s ease forwards;
    cursor: pointer;
    text-align: center;
    max-width: 90%;
    line-height: 1.4;
}
.demo-toast small {
    font-size: 0.7rem;
    opacity: 0.8;
}
@media (max-width: 600px) {
    .demo-toast { font-size: 0.8rem; padding: 12px 20px; }
    .order-method label { padding: 10px 12px; font-size: 0.85rem; }
}

.demo-banner {
    background: #ff6b2b20;
    border-bottom: 1px solid #ff6b2b;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    color: #ffb347;
    position: relative;
    top: 70px;
    z-index: 999;
}
.demo-banner i {
    margin-right: 8px;
}

footer {
    background: #030303;
    text-align: center;
    padding: 50px 5% 30px;
    border-top: 1px solid #ff6b2b30;
}
footer p {
    margin-bottom: 20px;
}
.footer-id{
    color: #ff6b2b;
    text-decoration: none;
}
.social-icons i {
    font-size: 1.6rem;
    margin: 0 12px;
    color: #ff6b2b;
    transition: 0.2s;
}
.social-icons i:hover {
    transform: translateY(-3px);
}

@media (max-width: 850px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        left: auto;
        width: 70%;
        height: 100vh;
        background: #000000f2;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        gap: 2rem;
        transition: 0.4s;
        box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    }
    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
        border-bottom: 2px solid #ff6b2b;
    }
    .nav-links.active {
        right: 0;
    }
    .menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .order-box {
        flex-direction: column;
    }
    .image{
        display: none;
    }
}
