/* Primary and Secondary Colors */
:root {
    --primary-color: #fecc3e;
    --secondary-color: #231f20;
    --light-color: #f5f5f5;
    --dark-color: #333;
}

/* General Styling */
body {
    font-family: "Mangan W03 Bold", sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    margin: 0;
    padding: 0;
}

/* Header Styling */
.header {
    background-color: var(--secondary-color);
    border-bottom: 3px solid var(--primary-color);
    animation: slideInDown 0.5s ease-out;
}

/* Navbar Styling */
.navbar {
    background-color: var(--dark-color);
    animation: fadeIn 1.5s ease-in-out forwards;
    transition: background-color 0.3s ease-in-out;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(254, 204, 62, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-brand .logo {
    transition: transform 0.3s ease-in-out;
}

.navbar-brand:hover .logo {
    transform: scale(1.1);
}


/* Adjust the offset based on your navbar's height */
#Intro, #About, #OurServices, #Menu, #Contact {
    padding-top: 100px; /* Adjust this value according to the navbar height */
}
@media (max-width: 768px) {
    #Intro, #About, #OurServices, #Menu, #Contact {
        padding-top: 10px; /* Adjust this value according to the navbar height */
    }
    
}


/* Responsive Styling */
@media (max-width: 768px) {
    .header {
        text-align: center;
    }
}

/* Animations */
@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.email, .phone {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.email {
    animation-delay: 0.3s;
}

.phone {
    animation-delay: 0.6s;
}


/* Intro Section Styling */
.intro {
    background: linear-gradient(135deg, rgba(254, 204, 62, 0.2), rgba(35, 31, 32, 0.2)), url('img/intro-background.jpg') no-repeat center center;
    background-size: cover;
    padding: 10rem 0;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.intro .row {
    position: relative;
    z-index: 2;
}

.introtext {
    padding: 2rem;
    text-align: left;
}

.introtext h1 {
    font-family: "Mangan W03 Bold", sans-serif;
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.introtext h1 .highlight {
    color: var(--secondary-color);
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.introtext h1 .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}

.introtext h1 .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.introtext p {
    font-family: "Mangan W03 Bold", sans-serif;
    color: var(--light-color);
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    text-align: justify;
    text-indent: 50px;
}

.introimage img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
    transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.introimage img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .introtext {
        text-align: center;
    }
    
    .introtext h1 {
        font-size: 2.5rem;
    }
    
    .introtext p {
        font-size: 1rem;
    }
}




/* About Us Section Styling */
.about {
    background: linear-gradient(135deg, rgba(35, 31, 32, 0.1), rgba(254, 204, 62, 0.1)), url('img/about-background.jpg') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.about .row {
    position: relative;
    z-index: 2;
}

.abouttext {
    padding: 10rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.abouttext h1 {
    font-family: "Mangan W03 Bold", sans-serif;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.abouttext h1 .highlight {
    color: var(--secondary-color);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.abouttext h1 .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
}

.abouttext h1 .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.abouttext p {
    font-family: "Mangan W03 Bold", sans-serif;
    color: var(--light-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: justify;
    text-indent: 50px;
}

.aboutimage .img-container {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transform: perspective(800px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.5s ease-in-out;
}

.aboutimage .img-container:hover {
    transform: perspective(800px) rotateX(10deg) rotateY(-10deg);
}

.aboutimage img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease-in-out;
}

.aboutimage img:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .abouttext {
        text-align: center;
    }
    
    .abouttext h1 {
        font-size: 2.5rem;
    }
    
    .abouttext p {
        font-size: 1rem;
    }
}




/* Services Section Styling */
.services {
    background: url('img/services-background.jpg') no-repeat center center;
    background-size: cover;
    padding: 10rem 0;
    color: #fff;
    position: relative;
    text-align: center;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.services .text-center {
    position: relative;
    z-index: 2;
}

.services h1 {
    font-family: "Mangan W03 Bold", sans-serif;
    color: #fecc3e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.services h1 .highlight {
    color: #231f20;
    font-weight: bold;
    position: relative;
}

.services h1 .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 4px;
    background: #fecc3e;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
}

.services h1 .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.services p {
    font-family: "Mangan W03 Bold", sans-serif;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    overflow: hidden;
    height: 100%; /* Ensures all cards are the same height */
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 204, 62, 0.4), rgba(35, 31, 32, 0.4));
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(0, 0, 0, 0.8);
}

.service-card .icon-wrapper {
    font-size: 3rem;
    color: #fecc3e;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-family: "Mangan W03 Bold", sans-serif;
    color: #fecc3e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-family: "Mangan W03 Bold", sans-serif;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services h1 {
        font-size: 2.5rem;
    }

    .services p {
        font-size: 1rem;
    }

    .service-card .icon-wrapper {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}





/* Menu Section Styling */
.menu {
    background: url('img/menu-background.jpg') no-repeat center center;
    background-size: cover;
    padding: 10rem 0;
    color: #fff;
    position: relative;
    text-align: center;
}

.menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.menu .text-center {
    position: relative;
    z-index: 2;
}

.menu h1 {
    font-family: "Mangan W03 Bold", sans-serif;
    color: #fecc3e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.menu h1 .highlight {
    color: #231f20;
    font-weight: bold;
    position: relative;
}

.menu h1 .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 4px;
    background: #fecc3e;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
}

.menu h1 .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.menu p {
    font-family: "Mangan W03 Bold", sans-serif;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.menu-slider {
    position: relative;
    width: 23%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.menu-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
}

.menu-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 10px rgba(0, 0, 0, 0.3);
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 2;
    transition: background 0.3s ease;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu h1 {
        font-size: 2.5rem;
    }

    .menu p {
        font-size: 1rem;
    }
    .menu-slider {
        width: 100%;
    }
    .menu-slide {
        flex: 0 0 100%; /* Full width for smaller screens */
    }
}







/* Contact Us Section Styling */
.contact {
    background: linear-gradient(135deg, #f8f9fa 50%, #e9ecef 50%);
    color: #333;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 206, 86, 0.2), rgba(0, 0, 0, 0));
    z-index: 0;
}

.contact-info {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.15);
    padding: 3rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.contact-info:hover {
    transform: translateY(-10px);
}

.contact-info h1 {
    font-family: "Montserrat", sans-serif;
    color: #231f20;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-info h1 .highlight {
    color: #fecc3e;
    font-weight: bold;
    position: relative;
}

.contact-info h1 .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background: #fecc3e;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
}

.contact-info h1 .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.contact-info p {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.contact-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease-in-out;
}

.detail-item:hover {
    transform: translateX(10px);
}

.detail-item i {
    font-size: 1.8rem;
    color: #fecc3e;
    margin-right: 1.2rem;
}

.detail-item h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    color: #231f20;
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.map {
    height: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        padding: 2rem;
    }

    .contact-info h1 {
        font-size: 2.5rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .detail-item i {
        font-size: 1.4rem;
    }

    .detail-item h4 {
        font-size: 1.1rem;
    }

    .detail-item p {
        font-size: 0.9rem;
    }
}



/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #231f20 0%, #fecc3e 100%);
    color: #fff;
    padding: 2rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    font-family: "Mangan W03 Bold", sans-serif;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-copyright {
        font-size: 0.9rem;
    }
}
