
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.main-content {
    max-width: 1400px; /* Adjust this value as needed */
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}


.admin-header {
    background-color: #2c3e50;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

.dashboard-container {
    padding: 30px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-card h3 {
    margin-top: 0;
    color: #7f8c8d;
}

.stat-card p {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
    color: #2c3e50;
}

.stat-card a {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.form-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f8f9fa;
    font-weight: 500;
}

.btn-delete {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.alert {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert.success {
    background: #d4edda;
    color: #155724;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
}

/* ========== Website Header Styles ========== */
.top-bar {
    background-color: #222;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: #ff6b6b;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    transition: color 0.3s;
}

    .social-links a:hover {
        color: #ff6b6b;
    }

.social-links i {
    margin-right: 5px;
}

.main-header {
    background-color: #8C008C;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

.logo-container {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    margin-right: 10px;
    margin-left: 60px;
}



.logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #d2c028;
  text-transform: uppercase;
  margin-left: 20px;
 
}


.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 15px;
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: yellow;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

    .main-nav a:hover,
    .main-nav a.active {
        color: #ff6b6b;
    }

.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #b714e0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.main-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.main-nav .dropdown-menu li {
    margin: 0;
    padding: 0;
}

.main-nav .dropdown-menu a {
    padding: 8px 20px;
    white-space: nowrap;
    color: yellow;
}

.header-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: none;
    margin-left: 20px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: left 0.3s;
    padding: 20px;
    overflow-y: auto;
}

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }

    .mobile-menu li {
        margin-bottom: 15px;
    }

    .mobile-menu a {
        text-decoration: none;
        color: #333;
        font-size: 18px;
    }

    .mobile-menu .btn {
        display: block;
        margin-top: 20px;
    }

/* ========== Website Footer Styles ========== */
.main-footer {
    background-color: #222;
    color: #fff;
    /* max-width: 1000px; Adjust this value as needed */
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;

}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ff6b6b;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.about-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s;
}

    .footer-social a:hover {
        background: #ff6b6b;
        transform: translateY(-3px);
    }

.quick-links ul,
.services-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li,
.services-links li {
    margin-bottom: 10px;
}

.quick-links a,
.services-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

    .quick-links a:hover,
    .services-links a:hover {
        color: #ff6b6b;
    }

.quick-links i,
.services-links i {
    margin-right: 8px;
    font-size: 12px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #ff6b6b;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

    .contact-info a:hover {
        color: #ff6b6b;
    }

.newsletter {
    margin-top: 20px;
}

    .newsletter h4 {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .newsletter form {
        display: flex;
    }

    .newsletter input {
        flex: 1;
        padding: 10px;
        border: none;
        border-radius: 4px 0 0 4px;
    }

    .newsletter button {
        background: #ff6b6b;
        color: #fff;
        border: none;
        padding: 0 15px;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        transition: background 0.3s;
    }

        .newsletter button:hover {
            background: #e05555;
        }

.copyright {
    background: #111;
    padding: 20px 0;
    text-align: center;
}

    .copyright .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .copyright p {
        margin: 0;
        color: #bbb;
        font-size: 14px;
    }

.footer-links a {
    color: #bbb;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: #e05555;
    }

/* ========== Admin Header & Footer Styles ========== */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: #2c3e50;
    color: #fff;
    transition: all 0.3s;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.sidebar-brand {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

    .sidebar-brand img {
        height: 50px;
        margin-bottom: 10px;
    }

    .sidebar-brand span {
        display: block;
        font-size: 18px;
        font-weight: 600;
    }

.sidebar-nav {
    padding: 20px 0;
    list-style: none;
}

    .sidebar-nav li {
        position: relative;
    }

    .sidebar-nav a {
        display: block;
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s;
        display: flex;
        align-items: center;
    }

        .sidebar-nav a:hover,
        .sidebar-nav a.active {
            background: rgba(255,255,255,0.1);
            color: #ff6b6b;
        }

    .sidebar-nav i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }

.sidebar-dropdown-menu {
    list-style: none;
    padding-left: 40px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

    .sidebar-dropdown-menu a {
        padding: 8px 20px;
        font-size: 14px;
    }

.sidebar-dropdown.active .sidebar-dropdown-menu {
    max-height: 500px;
}

.admin-main {
    flex: 1;
    margin-left: 250px;
    transition: all 0.3s;
}

.admin-top-nav {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 99;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    margin-right: 20px;
}

.admin-breadcrumb {
    display: flex;
    align-items: center;
}

    .admin-breadcrumb a {
        color: #333;
        text-decoration: none;
        margin-right: 10px;
    }

    .admin-breadcrumb i {
        margin-right: 10px;
        font-size: 12px;
        color: #777;
    }

.admin-user-dropdown {
    position: relative;
}

.user-info {
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .user-info .username {
        margin-right: 10px;
    }

    .user-info i {
        font-size: 24px;
        color: #555;
    }

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.admin-user-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.user-dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

    .user-dropdown-menu a:hover {
        background: #f5f5f5;
        color: #ff6b6b;
    }

.user-dropdown-menu i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.admin-content-wrapper {
    padding: 20px;
    min-height: calc(100vh - 120px);
}

.admin-footer {
    background: #f8f9fa;
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

    .admin-footer p {
        margin: 0;
        color: #777;
        font-size: 14px;
    }

    .admin-footer .version {
        font-size: 12px;
        color: #aaa;
    }

/* Responsive Styles */
@media (max-width: 992px) {
    .admin-sidebar {
        left: -250px;
    }

        .admin-sidebar.active {
            left: 0;
        }

    .admin-main {
        margin-left: 0;
    }

        .admin-main.active {
            margin-left: 250px;
        }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        margin-bottom: 10px;
    }

    .main-header .container {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .copyright .container {
        flex-direction: column;
    }

    .footer-links {
        margin-top: 10px;
    }
    
    .slider-container {
        height: 60vh;
    }
    
    .slide-content {
        bottom: 10%;
        left: 5%;
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Horizontal Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 800px;
    overflow: hidden;
    margin-top: 80px; /* Adjust based on your header height */
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 107, 0.7);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: rgba(255, 107, 107, 0.9);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-indicators .indicator.active {
    background: #ff6b6b;
    transform: scale(1.2);
}


/* Featured Menu Section */
.featured-menu {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.featured-menu .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-menu h2 {
    text-align: center;
    color: #ff6b6b;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

.featured-menu h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ff6b6b;
    margin: 15px auto 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.menu-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.menu-item h3 {
    padding: 20px 20px 10px;
    margin: 0;
    color: #333;
    font-size: 1.4rem;
}

.menu-item p {
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 60px;
}

.menu-item .price {
    display: block;
    padding: 0 20px 20px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff6b6b;
}

.featured-menu .btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
    background: #ff6b6b;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.featured-menu .btn:hover {
    background: #e05555;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .featured-menu {
        padding: 60px 0;
    }
    
    .featured-menu h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item img {
        height: 180px;
    }
    
    .featured-menu .btn {
        width: 100%;
        max-width: 300px;
    }
}

