/* Global Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --dark-color: #222222;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --accent-color: #666666;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--light-color);
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--accent-color);
}

.btn-secondary:hover {
    background: #555555;
}

/* Header Styles */
header {
    background: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo h1 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    font-weight: 600;
    padding: 5px 8px;
    position: relative;
    font-size: 0.95rem;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after, 
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Logo styling */
header .logo {
    display: flex;
    align-items: center;
}

header .logo img.site-logo {
    max-height: 50px;
    max-width: 200px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    transition: background 0.3s ease;
    z-index: 2;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.features h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Menu Page Styles */
.menu-container {
    padding: 60px 0;
}

.menu-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.menu-container h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.category-tab {
    padding: 10px 20px;
    margin: 0 5px 10px;
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-tab.active, .category-tab:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.menu-item-img {
    height: 200px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-info {
    padding: 20px;
}

.menu-item-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.menu-item-info .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.menu-item-info .description {
    color: var(--accent-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Admin Panel Styles */
.admin-container {
    padding: 60px 0;
    background-color: var(--gray-color);
    min-height: calc(100vh - 150px);
}

.admin-dashboard {
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border: 1px solid #eaeaea;
}

.admin-dashboard h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--light-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    outline: none;
}

.form-control::placeholder {
    color: #bbbbbb;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.view-all {
    display: block;
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
}

/* QR Code Styles */
.qr-container {
    text-align: center;
    margin: 40px 0;
    padding: 40px 0;
    background-color: var(--gray-color);
}

.qr-container h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.qr-container h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.qr-code {
    background: var(--light-color);
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    border: 1px solid #eaeaea;
}

.qr-code img {
    max-width: 200px;
}

/* Contact Form */
.contact-container {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: var(--gray-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-item h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--gray-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 1.2rem;
}

.alert.success {
    background-color: #d4edda;
    color: var(--success-color);
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: var(--error-color);
    border: 1px solid #f5c6cb;
}

/* Admin Table */
.admin-table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.admin-table th, 
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

.admin-table th {
    background-color: var(--primary-color);
    color: var(--light-color);
    font-weight: 600;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background-color: var(--gray-color);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.menu-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status.available {
    background-color: #d4edda;
    color: var(--success-color);
}

.status.unavailable {
    background-color: #f8d7da;
    color: var(--error-color);
}

.actions {
    display: flex;
    gap: 10px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-icon.edit {
    background-color: #cce5ff;
    color: #007bff;
}

.btn-icon.delete {
    background-color: #f8d7da;
    color: var(--error-color);
}

.btn-icon:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h3, 
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, 
.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--light-color);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--light-color);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p i {
    color: var(--light-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav {
        margin-top: 20px;
        width: 100%;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after, 
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }

    .menu-banner h1, .contact-banner h1 {
        font-size: 2.2rem;
    }
    
    .menu-banner p, .contact-banner p {
        font-size: 1rem;
    }

    header .logo img.site-logo {
        max-height: 70px;
        max-width: 240px;
    }
}

@media (max-width: 576px) {
    header .logo img.site-logo {
        max-height: 65px;
        max-width: 200px;
    }
    
    .hero {
        min-height: 220px;
        height: auto;
        padding: 0;
    }
    .hero-content {
        padding: 24px 10px;
    }
    .slide img {
        height: 180px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .menu-item-info .description {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        word-break: break-word;
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .menu-item-info h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .menu-item-info .price {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    
    .menu-item-info {
        padding: 12px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .admin-header h2 {
        margin-bottom: 10px;
    }
}

/* QR Steps Section */
.qr-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.qr-step {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid #eaeaea;
}

.qr-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.qr-step h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.qr-step p {
    color: var(--accent-color);
}

/* Menu Banner */
.menu-banner {
    padding: 40px 0 30px 0;
    text-align: center;
    position: relative;
    border-bottom: 2.5px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 18px -8px rgba(0,0,0,0.12);
}

.menu-banner h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: inherit;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px #000;
    position: relative;
    display: inline-block;
}

.menu-banner h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: #FFD600;
    margin: 12px auto 0 auto;
    border-radius: 3px;
}

.menu-banner p {
    margin-top: 18px;
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.85;
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Contact Form Header */
.contact-form h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Admin Login Styles */
.admin-login-container {
    padding: 60px 0;
    background-color: var(--gray-color);
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
}

.login-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.login-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 30px;
    text-align: center;
}

.login-logo {
    margin-bottom: 20px;
}

.login-logo img {
    max-height: 100px;
    max-width: 300px;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.login-logo h2 {
    color: var(--light-color);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.login-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.login-header p {
    opacity: 0.8;
}

.login-form {
    padding: 30px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
}

.input-with-icon input {
    padding-left: 45px;
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

.login-footer {
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #eaeaea;
    background-color: #f9f9f9;
}

.login-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

.menu-header-img {
    display: block;
    margin: 0 auto 18px auto;
    max-width: 200px;
    max-height: 160px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    object-fit: contain;
}

.menu-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.menu-banner-text {
    text-align: center;
}

.menu-header-img {
    max-width: 320px;
    max-height: 250px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .menu-banner .container {
        flex-direction: column;
        gap: 16px;
    }
    .menu-banner-text {
        text-align: center;
    }
}

.theme-dark-red-colors .menu-banner {
    background: #181818 !important;
    color: #fff !important;
    border-bottom: 2.5px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 24px -10px rgba(0,0,0,0.32);
}

.theme-dark-red-colors .menu-banner h1::after {
    display: none;
}
.theme-dark-red-colors .menu-banner h1 {
    text-shadow: none;
}

/* Mobile responsive styles for login logo */
@media (max-width: 768px) {
    .login-logo img {
        max-height: 80px;
        max-width: 250px;
        padding: 10px;
    }
    
    .login-logo h2 {
        font-size: 1.3rem;
    }
    
    .login-header {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .login-logo img {
        max-height: 60px;
        max-width: 200px;
        padding: 8px;
    }
    
    .login-logo h2 {
        font-size: 1.2rem;
    }
    
    .login-header {
        padding: 20px 15px;
    }
} 