.navbar-brand img {
    height: 100px;
}
.navbar {
    background-color: #000000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.navbar-nav .nav-link {
    margin-right: 15px;
    font-weight: 500;
    color: #ffffff;
}
.contact-info {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    font-size: 14px;
    line-height: 1.3;
    color: #ffffff;
}
.brand-container {
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Makes image darker */
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.hero-text h1 {
    font-size: 4.5rem; /* Bigger heading */
    margin-bottom: 1.5rem;
    font-weight: 700; /* Bolder text */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Added shadow for better readability */
}

.hero-text p {
    font-size: 2rem; /* Bigger paragraph text */
    margin-bottom: 1rem;
    font-weight: 600; /* Semi-bold text */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.order-btn {
    margin-top: 3rem;
    padding: 20px 50px; /* Bigger button */
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    animation-delay: 1s;
}

.order-btn:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 0.8s forwards, bounce 2s infinite;
    animation-delay: 1.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Make text smaller on mobile devices */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    .hero-text p {
        font-size: 1.5rem;
    }
    .order-btn {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
}

.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: flex-start; /* Changed from center to align with top of text */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    flex: 0 0 50%; /* Increased width from 45% to 50% */
    height: 0;
    padding-bottom: 28%; /* Creates 16:9 aspect ratio */
    position: relative;
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-text {
    flex: 0 0 40%; /* Decreased from 45% to 40% to accommodate wider image */
    padding-top: 10px; /* Added to align with image top */
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.schedule {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        padding-bottom: 56.25%; /* Maintains 16:9 on mobile */
        height: auto;
    }

    .about-text {
        padding-top: 10px; /* Align text with image on mobile */
    }
}

.hits-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.hits-header {
    text-align: center;
    margin-bottom: 40px;
}

.hits-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hits-header p {
    font-size: 1.2rem;
    color: #666;
}

.hits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1100px; /* Increased from 1000px */
    margin: 0 auto;
    padding: 0 20px;
}

.hit-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: calc(32% - 20px); /* Increased from 30% */
    transition: transform 0.3s;
}

.hit-item:hover {
    transform: translateY(-5px);
}

.hit-image {
    height: 200px; /* Increased from 180px */
    overflow: hidden;
}

.hit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hit-item:hover .hit-image img {
    transform: scale(1.1);
}

.hit-title {
    font-size: 1.4rem; /* Increased from 1.3rem */
    margin: 12px 0 8px;
    padding: 0 15px;
    text-align: center;
}

.hit-description {
    font-size: 1rem; /* Increased from 0.95rem */
    margin-bottom: 12px;
    padding: 0 15px;
    text-align: center;
}

.hit-price {
    font-size: 1.2rem; /* Increased from 1.1rem */
    margin-bottom: 12px;
    text-align: center;
    font-weight: 600;
    color: #ff0000;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .hit-item {
        width: calc(45% - 15px); /* Adjusted for better mobile layout */
    }
}

@media (max-width: 480px) {
    .hit-item {
        width: 85%; /* Changed from 100% to keep some margins */
    }
}

/* Add this to your existing styles */
.menu-buttons {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.menu-btn {
    display: inline-block;
    padding: 15px 35px;
    margin: 0 15px;
    background: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 4px;
}

.menu-btn:hover {
    background-color: #ff0000;
    color: white;
}

@media (max-width: 768px) {
    .menu-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .menu-btn {
        margin: 0;
    }
}

.map-section {
    width: 100%;
    padding: 40px 0; /* Reduced padding */
    background-color: #fff;
}

.map-container {
    width: 100%; /* Full width */
    max-width: 100%; /* Remove max-width constraint */
    margin: 0;
    padding: 0;
}

.map-container iframe {
    width: 100%;
    height: 500px; /* Reduced height */
    border: none;
    display: block; /* Remove any potential inline spacing */
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

/* Add to your existing styles */
.contact-section {
    background-color: #ffffff;
    padding: 40px 0;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #333;
}

.contact-content p {
    margin: 8px 0;
    font-size: 1.2rem;
}

.footer {
    background-color: #000;
    padding: 40px 0;
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-direction: column;
    gap: 20px;
}

.footer-main-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
}

.footer-main-links a,
.footer-legal-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-main-links a:hover,
.footer-legal-links a:hover {
    color: #ff0000;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-main-links,
    .footer-legal-links {
        justify-content: center;
    }
}