* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #000000;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(50, 205, 50, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    color: #32cd32;
    font-size: 2rem;
    margin-bottom: -5px;
}

.logo p {
    color: #ffffff;
    font-size: 0.9rem;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #32cd32;
    background-color: rgba(50, 205, 50, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 3px solid #32cd32;
}

.hero-content h2 {
    font-size: 3rem;
    color: #32cd32;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #32cd32;
    color: #000000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #28a428;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.4);
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #111111;
}

.about h2 {
    text-align: center;
    color: #32cd32;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features {
    list-style: none;
}

.features li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.placeholder-image {
    background-color: #32cd32;
    color: #000000;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: #000000;
}

.services h2 {
    text-align: center;
    color: #32cd32;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #32cd32;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(50, 205, 50, 0.2);
}

.service-card h3 {
    color: #32cd32;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid #32cd32;
}

.page-header h1 {
    color: #32cd32;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
}

/* Menu Styles */
.menu {
    padding: 4rem 0;
    background-color: #111111;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h2 {
    color: #32cd32;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #32cd32;
    padding-bottom: 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #32cd32;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
    border-color: #32cd32;
}

.menu-item h3 {
    color: #32cd32;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.menu-item p {
    margin-bottom: 1rem;
    color: #cccccc;
}

.price {
    color: #32cd32;
    font-size: 1.2rem;
    font-weight: bold;
    float: right;
}

.price1 {
    color: #32cd32;
    font-size: 1.2rem;
    font-weight: bold;
    float: right;
}

/* Footer */
footer {
    background-color: #000000;
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid #32cd32;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        padding: 0.3rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}