  
 
    :root {
        --primary: #8B0000; /* Ethiopian flag red */
        --secondary: #FCD116; /* Ethiopian flag yellow */
        --accent: #078930; /* Ethiopian flag green */
        --dark: #000000;
        --light: #F5F5F5;
        --text: #030303;
        --text-light: #777777;
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: var(--text);
        background-color: var(--light);
    }
    
    h1, h2, h3, h4 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    h1 {
        font-size: 3.5rem;
        color: var(--secondary);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    h2 {
        font-size: 2.5rem;
        color: var(--primary);
        position: relative;
        padding-bottom: 10px;
    }
    
    h2:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 80px;
        height: 3px;
        background-color: var(--secondary);
    }
    
    h3 {
        font-size: 1.8rem;
        color: var(--dark);
    }
    
    p {
        margin-bottom: 1.5rem;
        color: var(--text-light);
    }
    
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        background-color: var(--primary);
        color: white;
        border: none;
        border-radius: 50px;
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        text-decoration: none;
        text-align: center;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
    }
    
    .btn:hover {
        background-color: var(--accent);
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(7, 137, 48, 0.3);
    }
    
    .btn-secondary {
        background-color: var(--secondary);
        color: var(--dark);
        box-shadow: 0 4px 15px rgba(252, 209, 22, 0.2);
    }
    
    .btn-secondary:hover {
        background-color: #e0b815;
        box-shadow: 0 8px 25px rgba(224, 184, 21, 0.3);
    }
    
    .btn-secondary {
        background-color: var(--secondary);
        color: var(--dark);
    }
    
    .btn-secondary:hover {
        background-color: #e0b815;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-title h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 12px 0;
        transition: var(--transition);
    }
    
    header.scrolled {
        padding: 15px 0;
        box-shadow: var(--shadow);
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Logo Container */
    .logo-container {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .logo-img {
        height: 60px;
        width: auto;
        border-radius: 5px;
        transition: var(--transition);
    }
    
    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--secondary);
        text-decoration: none;
    }
    
    .logo span {
        color: var(--primary);
    }
    
    .nav-links {
        display: flex;
        list-style: none;
    }
    
    .nav-links li {
        margin-left: 30px;
    }
    
    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
    }
    
    .nav-links a:hover {
        color: var(--secondary);
    }
    
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/9.png');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        text-align: center;
        color: white;
        padding-top: 80px;
    }
    
    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero h1 {
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1.2rem;
        color: #ddd;
        margin-bottom: 30px;
    }
    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    /* About Section */
    .about-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        align-items: center;
    }
    
    .about-image {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }
    
    /* Menu Section */
    .menu {
        background-color: #f9f9f9;
    }
    
    .menu-categories {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    
    .category-btn {
        padding: 10px 25px;
        margin: 0 10px 10px 0;
        background-color: white;
        border: 1px solid #ddd;
        border-radius: 30px;
        cursor: pointer;
        transition: var(--transition);
    }
    
    .category-btn.active, .category-btn:hover {
        background-color: var(--primary);
        color: white;
        border-color: var(--primary);
    }
    
    .menu-items {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .menu-item {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .menu-item:hover {
        transform: translateY(-10px);
    }
    
    .menu-item-image {
        height: 200px;
        background-color: #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-light);
    }
    
    .menu-item-content {
        padding: 20px;
    }
    
    .menu-item h3 {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    /* Menu Item Images */
    .menu-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .menu-item:hover .menu-item-image img {
        transform: scale(1.05);
    }

    /* Gallery Section */
    .gallery-item {
        height: 250px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-light);
        cursor: pointer;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: white;
        padding: 20px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }

    .gallery-overlay span {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 1rem;
    }


/* Responsive adjustments */
@media (max-width: 768px) {

.gallery-item {
    height: 200px;
}
        

.gallery-overlay {
    transform: translateY(0);
    background: rgba(0,0,0,0.6);
    padding: 10px;
}
 }
    
    .price {
        color: var(--primary);
        font-weight: 600;
    }
    
    /* Gallery */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item {
        height: 250px;
        background-color: #ddd;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-light);
    }
    
    /* Location */
    .location-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        align-items: center;
    }
    
    .location-info {
        margin-bottom: 20px;
    }
    
    .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .info-item i {
        color: var(--primary);
        margin-right: 15px;
        font-size: 1.2rem;
    }
    
    .map-container {
        height: 400px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }
    
    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    /* Google Maps Section */
    .google-maps-section {
        background-color: #f9f9f9;
        padding: 60px 0;
    }
    
    .maps-container {
        height: 500px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        margin-bottom: 30px;
    }
    
    .maps-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    .maps-info {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* Footer */
    footer {
        background-color: var(--dark);
        color: white;
        padding: 60px 0 30px;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .footer-column h3 {
        color: var(--secondary);
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: #bbb;
        text-decoration: none;
        transition: var(--transition);
    }
    
    .footer-links a:hover {
        color: var(--secondary);
        padding-left: 5px;
    }
    
    .social-icons {
        display: flex;
        margin-top: 20px;
    }
    
    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        margin-right: 10px;
        color: white;
        transition: var(--transition);
    }
    
    .social-icons a:hover {
        background-color: var(--primary);
        transform: translateY(-5px);
    }
    
    .copyright {
        text-align: center;
        padding-top: 30px;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #bbb;
        font-size: 0.9rem;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        h1 {
            font-size: 2.8rem;
        }
        
        h2 {
            font-size: 2.2rem;
        }
        
        .about-content, .location-content {
            grid-template-columns: 1fr;
        }
        
        .footer-content {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .maps-container {
            height: 400px;
        }
    }
    
    @media (max-width: 768px) {

        .mobile-menu-btn{ 
            display: block;
        }
        .hero-buttons {
            flex-direction: column;
            align-items: center;
            gap: 15px;
         
        }
         .hero-buttons .btn {
            max-width: 300px;
           
            
        }
        .logo-container {
            gap: 10px;
        }
        
        .logo-img {
            height: 50px;
        }
        
        .logo {
            font-size: 1.5rem;
        }
        
        .nav-links {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .nav-links.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .nav-links li {
            margin: 15px 0;
        }
        
        .hero p {
            font-size: 1rem;
        }
        
        .menu-items {
            grid-template-columns: 1fr;
        }
        
        .maps-container {
            height: 350px;
        }
    }
    
    @media (max-width: 576px) {
        h1 {
            font-size: 2.2rem;
        }
        
        h2 {
            font-size: 1.8rem;
        }
        
        section {
            padding: 60px 0;
        }
        
        .footer-content {
            grid-template-columns: 1fr;
        }
        
        .gallery-grid {
            grid-template-columns: 1fr;
        }
        
        .logo-container {
            flex-direction: row;
            align-items: flex-start;
            gap: 5px;
            padding: 0%;
        }
        
        .logo-img {
            padding: 0%;
            height: 40px;
        }
        
        .logo {
            font-size: 1.5rem;
        }
        .logo-container a{
            font-size: 27px;

        }
        
        .maps-container {
            height: 300px;
        }
    }
