﻿@media (max-width: 768px) {
    .mb-5 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    iframe {
        height: 300px !important;
        margin-left: 0 !important; /* Removes the original margin-left */
        width: 100% !important; /* Ensures the iframe takes full width of the container */
        max-width: 450px; /* Limits iframe width for better appearance */
    }
}

@media (max-width: 480px) {
    .mb-5 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    iframe {
        height: 300px !important;
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 95%; /* Slightly more space for very small screens */
    }
}
@media (max-width: 480px) {
    .textt {
        margin-top: 40px !important;
    }
}

@media (max-width: 768px) {
    .textt {
        margin-top: 40px !important;
    }
}

@media (max-width: 768px) {
    .col-lg-6.order-1.order-lg-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .about-img {
        margin-left: 0 !important; /* Removes the original margin-left */
        width: 100% !important; /* Ensures the image takes full width of the container */
        max-width: 90%; /* Slightly less than full width for padding */
        height: auto !important; /* Maintains aspect ratio */
    }
}

@media (max-width: 480px) {
    .col-lg-6.order-1.order-lg-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .about-img {
        margin-left: 0 !important; /* Removes the original margin-left */
        width: 100% !important; /* Ensures the image takes full width of the container */
        max-width: 90%; /* Slightly less than full width for padding */
        height: auto !important; /* Maintains aspect ratio */
    }
}
@media (max-width: 992px) {
    .specials .nav-link {
        border: 0;
        padding: 15px;
    }

        .specials .nav-link.active {
            color: var(--contrast-color);
            background: var(--accent-color);
        }
}

.send-message-btn {
    background-color: #cda45e;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
    margin-top: 10px;
}

    .send-message-btn:hover {
        background-color: black;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        color: #cda45e;
       
    }

    .send-message-btn:active {
        transform: translateY(0);
        box-shadow: none;
    }

@media (max-width: 768px) {
    .send-message-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
  
}

.sitename {
    font-size: 24px;
    margin: 0;
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }

    .sitename {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 50px;
    }

    .sitename {
        font-size: 18px;
    }
}


.header .logo img {
    max-height: 120px !important;
    margin-right: 8px;
}


@media (max-width: 768px) {
    .hero .textt {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero .textt {
        text-align: center;
    }
}

.footer{
    height:200px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 70px; /* Adjusted to appear above scroll-to-top button */
    right: 12px;
    z-index: 1000;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

    .whatsapp-btn:hover {
        background-color: #20b858;
    }

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 80px; /* Slightly higher on mobile for better spacing */
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}