/*
Theme Name: Sharma Bandhu
Author: Ravi Varma
Version: 1.0
Description: Premium Bhakti Theme
*/

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
}

/* TOP BAR */
.top-bar {
    background: #8B1E1E;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

/* HEADER */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 60px;
}

/* MENU */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* BUTTON */
.btn-book {
    background: #C89B3C;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
}

/* MOBILE */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* FOOTER */
.main-footer {
    background: #7A1414;
    color: #fff;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    padding: 40px 0;
}

.footer-col h3 {
    margin-bottom: 15px;
}

.footer-bottom {
    background: #5E0F0F;
    text-align: center;
    padding: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px) {

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
    }
}