@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #2b927a 0%, #3e723e 100%);
    font-family: 'Poppins', sans-serif;
    color: #222;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 0 16px;
}

nav {
    background: linear-gradient(90deg, #8b0000, #a11212);
    padding: 18px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 28px;
}

nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1.1em;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

nav ul li a:hover, nav ul li a.active {
    background: #FFD700;
    color: #8b0000;
    transform: translateY(-2px) scale(1.05);
}

.hero {
    position: relative;
    height: 420px;
    background: url('https://picsum.photos/1920/500?random=1') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 48px;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2em;
    margin-bottom: 18px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 24px;
}

a.p-two {
    display: inline-block;
    background: linear-gradient(90deg, #FFD700, #e6c200);
    padding: 14px 32px;
    text-decoration: none;
    color: #333;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

a.p-two:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    background: linear-gradient(90deg, #ffe066, #ffe066);
}

section {
    margin: 64px 0;
}

section h2 {
    text-align: center;
    font-size: 2.6em;
    color: #8b0000;
    margin-bottom: 36px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.filter-buttons {
    text-align: center;
    margin-bottom: 24px;
}

.filter-buttons button {
    background: #8b0000;
    color: #FFD700;
    border: none;
    padding: 12px 28px;
    margin: 6px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.filter-buttons button.active, .filter-buttons button:hover {
    background: #FFD700;
    color: #8b0000;
    transform: scale(1.05);
}

.featured-dish {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    margin-bottom: 48px;
}

.featured-dish img {
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.featured-dish h3 {
    font-size: 2.1em;
    color: #8b0000;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.menu-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px 18px 18px 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.menu-item img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.menu-item h3 {
    font-size: 1.7em;
    color: #8b0000;
    margin: 10px 0 8px 0;
}

.menu-item p {
    font-size: 1.08em;
    margin: 5px 0;
}

.menu-item p.price {
    font-weight: bold;
    color: #a11212;
    font-size: 1.25em;
    margin-bottom: 10px;
}

.menu-item .quick-view-btn {
    background: #333;
    color: #FFD700;
    border: none;
    padding: 10px 22px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.menu-item .quick-view-btn:hover {
    background: #FFD700;
    color: #8b0000;
}

.p-three { background: linear-gradient(135deg, #A020F0, #7b16b8); color: #fff; }
.p-four { background: linear-gradient(135deg, #FFA500, #e69500); color: #fff; }
.p-five { background: linear-gradient(135deg, #0000FF, #0000cc); color: #fff; }
.p-six { background: linear-gradient(135deg, #CE8946, #b5733a); color: #fff; }
.p-seven { background: linear-gradient(135deg, #87CEEB, #6bb7d6); color: #333; }
.p-eight {
    background: linear-gradient(135deg, #e67e22, #f6e58d);
    color: #fff;
}
.p-nine {
    background: linear-gradient(135deg, #16a085, #27ae60);
    color: #fff;
}
.p-ten {
    background: linear-gradient(135deg, #b71540, #f8c291);
    color: #fff;
}
.p-eleven {
    background: linear-gradient(135deg, #f7b731, #fed330);
    color: #fff;
}
.p-twelve {
    background: linear-gradient(135deg, #8854d0, #a55eea);
    color: #fff;
}
.p-thirteen {
    background: linear-gradient(135deg, #20bf6b, #26de81);
    color: #fff;
}

.testimonials {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    margin: 48px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
}

.testimonials h3 {
    font-size: 2em;
    color: #8b0000;
    margin-bottom: 20px;
}

.testimonial {
    margin: 22px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 1.13em;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #8b0000;
}

#quick-view, #contact-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 36px 28px 28px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    z-index: 1000;
    max-width: 420px;
    width: 92%;
    animation: modalIn 0.3s;
}

@keyframes modalIn {
    from { opacity: 0; transform: translate(-50%, -60%) scale(0.95);}
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1);}
}

#quick-view img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

#quick-view h3 {
    font-size: 1.8em;
    color: #8b0000;
}

#quick-view p {
    font-size: 1em;
    margin: 10px 0;
}

#quick-view .quick-view-content a {
    margin-top: 10px;
}

#contact-form h3, #quick-view h3 {
    margin-bottom: 20px;
    color: #8b0000;
}

#contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 600;
}

#contact-form input {
    width: 100%;
    padding: 13px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    background: #f9f9f9;
    transition: border-color 0.2s;
}

#contact-form input:focus {
    border-color: #8b0000;
    outline: none;
}

#contact-form button.p-two, #quick-view button.p-two {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 10px;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.7em;
    cursor: pointer;
    color: #8b0000;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #a11212;
}

#form-success {
    display: none;
    text-align: center;
    color: #008000;
    font-weight: 600;
    margin-top: 10px;
}

#cart {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    margin: 48px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

#cart h2 {
    font-size: 2em;
    color: #8b0000;
    margin-bottom: 20px;
}

#cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item span {
    font-size: 1.13em;
}

.cart-item button {
    background: #8b0000;
    color: #FFD700;
    border: none;
    padding: 7px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.cart-item button:hover {
    background: #FFD700;
    color: #8b0000;
}

#cart-total {
    font-weight: bold;
    font-size: 1.2em;
    color: #8b0000;
}

#clear-cart {
    background: #8b0000;
    color: #FFD700;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

#clear-cart:hover {
    background: #FFD700;
    color: #8b0000;
}

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #8b0000;
    color: #FFD700;
    padding: 16px;
    border-radius: 50%;
    font-size: 1.3em;
    text-decoration: none;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    transition: opacity 0.3s, transform 0.2s, background 0.2s;
}

.back-to-top.show {
    display: block;
    opacity: 1;
}

.back-to-top:hover {
    background: #FFD700;
    color: #8b0000;
    transform: scale(1.13);
}

footer {
    background: linear-gradient(90deg, #333, #1a1a1a);
    color: #fff;
    text-align: center;
    padding: 36px 0 24px 0;
    margin-top: 48px;
    border-radius: 18px 18px 0 0;
}

footer a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 18px;
    font-size: 2em;
    transition: color 0.3s;
}

footer a:hover {
    color: #e6c200;
}

.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    background: #333;
    color: #fff;
    padding: 14px 32px;
    border-radius: 7px;
    opacity: 0;
    font-size: 1.1em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    z-index: 1100;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Hamburger styles */
.nav-toggle {
    display: none;
}
.nav-toggle-label {
    display: none;
    position: absolute;
    top: 18px;
    right: 24px;
    height: 32px;
    width: 32px;
    cursor: pointer;
    z-index: 1200;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: #FFD700;
    height: 4px;
    width: 32px;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s;
}
.nav-toggle-label span {
    position: relative;
    top: 14px;
}
.nav-toggle-label span::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
}
.nav-toggle-label span::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
}

/* Show hamburger and mobile nav */
@media (max-width: 768px) {
    nav {
        padding: 0;
        min-height: 56px;
    }
    .nav-toggle-label {
        display: block;
    }
    nav ul {
        flex-direction: column;
        align-items: stretch;
        background: linear-gradient(90deg, #8b0000, #a11212);
        position: absolute;
        top: 56px;
        left: 0;
        width: 100vw;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        box-shadow: 0 4px 16px rgba(0,0,0,0.13);
        z-index: 1100;
    }
    nav ul li {
        width: 100%;
    }
    nav ul li a {
        display: block;
        width: 100%;
        padding: 18px 0;
        font-size: 1.1em;
        border-radius: 0;
        text-align: center;
        border-bottom: 1px solid #a11212;
        background: none;
    }
    nav ul li:last-child a {
        border-bottom: none;
    }
    /* Show menu when hamburger is checked */
    .nav-toggle:checked + .nav-toggle-label + ul {
        max-height: 500px;
        transition: max-height 0.4s;
    }
    /* Animate hamburger to X */
    .nav-toggle:checked + .nav-toggle-label span {
        background: transparent;
    }
    .nav-toggle:checked + .nav-toggle-label span::before {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .nav-toggle:checked + .nav-toggle-label span::after {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        background: #FFD700;
    }
}

/* Even better for phones */
@media (max-width: 480px) {
    nav {
        min-height: 48px;
    }
    .nav-toggle-label {
        top: 10px;
        right: 10px;
        height: 28px;
        width: 28px;
    }
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        width: 28px;
        height: 3px;
    }
    nav ul li a {
        padding: 14px 0;
        font-size: 1em;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 16px 6px 0 6px;
    }
    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero {
        height: 260px;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .featured-dish img {
        height: 180px;
    }
    .hero {
        height: 180px;
    }
    section {
        margin: 36px 0;
    }
}

@media (max-width: 480px) {
    html, body {
        font-size: 16px;
    }
    .container {
        padding: 4px 0 0 0;
        max-width: 100vw;
    }
    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    nav ul li {
        width: 100%;
    }
    nav ul li a {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 1.1em;
        border-radius: 0;
        text-align: center;
        border-bottom: 1px solid #a11212;
    }
    nav ul li:last-child a {
        border-bottom: none;
    }
    .hero {
        height: 120px;
        border-radius: 0 0 12px 12px;
        margin-bottom: 24px;
    }
    .hero h1 {
        font-size: 1.5em;
    }
    .hero p {
        font-size: 1em;
    }
    section {
        margin: 18px 0;
    }
    section h2 {
        font-size: 1.3em;
        margin-bottom: 18px;
    }
    .filter-buttons button {
        padding: 10px 12px;
        font-size: 1em;
        margin: 4px 2px;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .menu-item, .featured-dish, .testimonials {
        padding: 10px 6px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .menu-item img, .featured-dish img {
        height: 80px;
        border-radius: 6px;
    }
    .menu-item h3, .featured-dish h3 {
        font-size: 1em;
        margin: 6px 0 4px 0;
    }
    .menu-item p, .featured-dish p {
        font-size: 0.97em;
    }
    .menu-item .quick-view-btn, a.p-two, #clear-cart, .cart-item button {
        font-size: 1em;
        padding: 10px 0;
        width: 100%;
        margin: 6px 0 0 0;
        border-radius: 5px;
    }
    #cart {
        padding: 10px 4px;
        margin: 18px 0;
        border-radius: 8px;
    }
    #cart h2 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    #cart-total {
        font-size: 1em;
    }
    .cart-item span {
        font-size: 1em;
    }
    #quick-view, #contact-form {
        max-width: 98vw;
        width: 98vw;
        padding: 12px 4px 12px 4px;
        border-radius: 8px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    #quick-view img {
        height: 60px;
        border-radius: 4px;
    }
    #quick-view h3, #contact-form h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    #contact-form label {
        font-size: 0.97em;
        margin: 6px 0 2px;
    }
    #contact-form input {
        padding: 10px;
        font-size: 1em;
        margin-bottom: 10px;
        border-radius: 4px;
    }
    .close-btn {
        top: 6px;
        right: 10px;
        font-size: 1.3em;
    }
    .back-to-top {
        padding: 10px;
        font-size: 1em;
        right: 10px;
        bottom: 10px;
    }
    footer {
        padding: 18px 0 12px 0;
        margin-top: 18px;
        border-radius: 10px 10px 0 0;
        font-size: 0.97em;
    }
    footer a {
        font-size: 1.3em;
        margin: 0 8px;
    }
    .toast {
        padding: 10px 12px;
        font-size: 1em;
        bottom: 10px;
        left: 50%;
        max-width: 95vw;
        border-radius: 5px;
    }
}

/* --- About Us Section --- */
#about {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 36px;
    margin: 48px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#about h2 {
    color: #8b0000;
    font-size: 2.3em;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#about .p-five {
    color: #333;
    font-size: 1.13em;
    line-height: 1.8;
    letter-spacing: 0.01em;
    text-align: justify;
    background: linear-gradient(90deg, #f7f7fa 60%, #f1f1f7 100%);
    border-radius: 10px;
    padding: 24px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

#about strong {
    color: #a11212;
    font-weight: 700;
    font-size: 1.08em;
    letter-spacing: 0.5px;
}

/* --- Contact Form Section --- */
#contact {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 36px;
    margin: 48px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#contact h2 {
    color: #8b0000;
    font-size: 2em;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: 1.2px;
}

#contact p {
    color: #444;
    font-size: 1.08em;
    margin-bottom: 10px;
}

#open-contact-form {
    display: inline-block;
    margin: 18px 0 0 0;
    background: linear-gradient(90deg, #FFD700, #e6c200);
    color: #333;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

#open-contact-form:hover {
    background: linear-gradient(90deg, #ffe066, #ffe066);
    color: #8b0000;
    transform: translateY(-2px) scale(1.04);
}

/* --- Contact Form Modal --- */
#contact-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 36px 28px 28px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    z-index: 1000;
    max-width: 420px;
    width: 92%;
    animation: modalIn 0.3s;
}

#contact-form h3 {
    color: #8b0000;
    font-size: 1.4em;
    margin-bottom: 18px;
    text-align: center;
}

#contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 600;
    color: #333;
}

#contact-form input {
    width: 100%;
    padding: 13px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    background: #f9f9f9;
    transition: border-color 0.2s;
}

#contact-form input:focus {
    border-color: #8b0000;
    outline: none;
}

#contact-form button.p-two {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 10px;
    background: linear-gradient(90deg, #FFD700, #e6c200);
    color: #333;
    font-weight: 700;
    padding: 12px 0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

#contact-form button.p-two:hover {
    background: linear-gradient(90deg, #ffe066, #ffe066);
    color: #8b0000;
    transform: translateY(-2px) scale(1.04);
}

#contact-form .close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.7em;
    cursor: pointer;
    color: #8b0000;
    transition: color 0.2s;
}

#contact-form .close-btn:hover {
    color: #a11212;
}

#contact-form .error {
    color: #8b0000;
    font-size: 0.97em;
    margin-bottom: 10px;
    display: none;
}

#form-success {
    display: none;
    text-align: center;
    color: #008000;
    font-weight: 600;
    margin-top: 10px;
}

/* --- Responsive Styles --- */
@media (max-width: 900px) {
    #about, #contact {
        padding: 24px 8px;
        margin: 24px 0;
    }
}

@media (max-width: 600px) {
    #about, #contact {
        padding: 12px 2px;
        margin: 12px 0;
        border-radius: 8px;
    }
    #about .p-five {
        padding: 10px 4px;
        font-size: 1em;
    }
    #contact-form {
        padding: 14px 4px 14px 4px;
        border-radius: 8px;
        max-width: 98vw;
        width: 98vw;
    }
    #contact-form h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    #contact-form label {
        font-size: 0.97em;
        margin: 6px 0 2px;
    }
    #contact-form input {
        padding: 10px;
        font-size: 1em;
        margin-bottom: 10px;
        border-radius: 4px;
    }
    #contact-form .close-btn {
        top: 6px;
        right: 10px;
        font-size: 1.3em;
    }
}

/* Brand Styles */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 36px;
    margin-left: 24px;
    gap: 12px;
}

.logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid #FFD700;
    transition: transform 0.2s;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.2em;
    color: #FFD700;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.18);
    background: linear-gradient(90deg, #FFD700 60%, #fffbe0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand:hover .logo {
    transform: scale(1.07) rotate(-4deg);
    border-color: #8b0000;
}

@media (max-width: 900px) {
    .brand-name {
        font-size: 1.5em;
    }
    .logo {
        height: 36px;
        width: 36px;
    }
    .brand {
        margin-left: 12px;
        margin-right: 18px;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .brand-name {
        font-size: 1.1em;
        letter-spacing: 1px;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.13);
    }
    .logo {
        height: 28px;
        width: 28px;
    }
    .brand {
        margin-left: 6px;
        margin-right: 6px;
        gap: 6px;
    }
}