html {
    scroll-behavior: smooth;
}

.navbar {
    padding: 0.2rem 2rem;
    background: linear-gradient(to right, #fff8e1, #ffe0b2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 40px;
}

.navbar-brand{
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 10px;
    width: auto;
}

.nav-item{
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    margin: 10px;
    align-items: center;
    justify-items: center;
    margin: 0 5px;
}

.nav-item {
    display: flex;
    align-items: center;
    margin: 0 5px;
}

.nav-link {
    color: #d43606 !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem !important;
    transition: all 0.3s ease;
    line-height: 1;
}

.nav-link:hover {
    color: #cc7700 !important;
    transform: translateY(-2px);
}

.nav-item.active .nav-link {
    color: #d4a106 !important;
}

.main-heading {
    text-align: center;
    margin: 0;
    padding: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #d43606, #cc7700, #d4a106);
    background-size: 200% auto;
    color: #000;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    position: relative;
    animation: gradient 3s ease infinite, slideIn 1s ease-out;
}

.main-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f54206 0%, #ffeb3b 100%);
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sub-heading {
    text-align: center;
    background: #fff;
    margin: 0;
    padding: 10px;
    font-size: 1.5rem;
    font-style: italic;
    color: #666;
    animation: slideIn 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.hero-section{
    position: relative;
    overflow: hidden;
    background-color: burlywood;
}

.hero-image img{
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.1); }
    to { opacity: 1; transform: scale(1); }
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideIn 1s ease-out;
    background-color: #f5cd06;
    padding: 10px;
    border-radius: 10px;
}

.hero-text p {
    font-size: 1.5rem;
    animation: slideIn 1s ease-out 0.3s;
    animation-fill-mode: both;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbarSection h1{
    color: red;
    font-weight: 800;
    padding-top: 10px;
    margin-top: 10px;
}

.card{
    transition: all 0.4s ease;
    margin: 1rem;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(245, 66, 6, 0.2);
    background: linear-gradient(145deg, #fff5e6, #fff);
}

.card img {
    height: 200px;
    object-fit: cover;
    border-radius: 50px;
}

.card-body {
    padding: 1.5rem;
    background: linear-gradient(to bottom, #fff, #f1723c);
}

.card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-body .card-text{
    border: solid 2px black;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items:end;
    background-color: rgb(251, 255, 0);
    border-radius: 50px;
}

.card .card-img-top{
    height: 175px;
    width: auto;
    border-radius: 50px;
    border: 2px solid black;
}

.Menu{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
}

.contact-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
    padding: 0 10px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-btn i {
    margin-right: 5px;
}

.call-btn {
    background-color: #28a745;
    color: white;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
}

.call-btn:hover {
    background-color: #218838;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .mobile-visible {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: rgba(255, 255, 255, 0.9);
        padding: 10px;
        border-radius: 25px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    }

    .contact-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .contact-btn i {
        font-size: 1rem;
    }
}

.footer {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    padding: 50px 0;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    background: linear-gradient(to bottom, #fff, #f1723c);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 10px;
}

.footer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(245, 66, 6, 0.2);
}

.footer-section h3 {
    color: #d43606;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.qr-container {
    text-align: center;
    margin: 20px 0;
}

.qr-code {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.payment-info {
    margin-top: 20px;
}

.payment-info ol, .payment-info ul {
    padding-left: 20px;
    margin: 15px 0;
}

.payment-info li {
    margin: 10px 0;
    color: #1a1919;
}

.highlight {
    color: #d43606;
    font-weight: 600;
    margin-top: 20px;
}

.owner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.owner-image {
    margin-bottom: 20px;
}

.owner-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d43606;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.owner-info h4 {
    color: #d43606;
    margin-bottom: 15px;
    font-weight: 600;
}

.owner-info p {
    color: #201f1f;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-image-container {
    width: 100%;
    margin-top: 40px;
}

.footer-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

main {
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .owner-content {
        flex-direction: column;
    }
}