
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background: #000;
    color: #ddd;
    line-height: 1.6;
    padding-top: 110px;
}

/* ========================================= */
/*  NAVBAR – Mobile-First & Beautiful Hamburger */
/* ========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 1px 15px;
}

.navbar.shrink {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Logo */
.logo img {
    height: 95px;
    width: auto;
    border-radius: 50%;
    transition: height 0.3s ease;
}
.navbar.shrink .logo img {
    height: 70px;
}

/* Hamburger (only visible on mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    width: 32px;
    height: 3px;
    background: #ddd;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Nav Menu – Desktop */
.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s;
}
.nav-menu a:hover {
    color: #cc3b3b;
}

/* Right side – Phone + Book Now */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.phone {
    color: #ddd;
    text-decoration: none;
    font-size: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.phone svg {
    width: 22px;
    height: 22px;
    fill: #cc3b3b;
}
.book-btn {
    background: #cc3b3b;
    color: white;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}
.book-btn:hover {
    background: #a83333;
    transform: translateY(-2px);
}


/* ========================================= */
/*  FOOTER – Fully Responsive */
/* ========================================= */

.site-footer {
    background: #111;
    padding: 70px 20px 30px;
    margin-top: 100px;
    border-top: 1px solid #333;
}

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

.footer-left h3,
.footer-center h4,
.footer-right h4 {
    color: #992828;
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    margin-bottom: 15px;
}

.footer-left p,
.footer-center p {
    font-size: 17px;
    margin: 10px 0;
}

.social-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.social-footer img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}
.social-footer img:hover {
    transform: scale(1.2);
}

.footer-book-btn {
    display: inline-block;
    background: #cc3b3b;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: 0.3s;
}
.footer-book-btn:hover {
    background: #a83333;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #777;
}


@media (max-width: 992px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .navbar-container {
        justify-content: center; /* center everything */
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.4s cubic-bezier(0.77, 0, 0.18, 1);
        padding: 0;
        margin: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 32px;
        padding: 18px 0;
        width: 100%;
        text-align: center;
    }

    .nav-right {
        order: -1;
        width: 100%;
        justify-content: center;
        margin: 10px 0;
        gap: 25px;
    }

    .phone,
    .book-btn {
        display: none;
    }
}
/* Small phones */
@media (max-width: 480px) {
    .logo img { height: 70px; }
    .navbar.shrink .logo img { height: 55px; }
    .book-btn, .footer-book-btn { padding: 12px 20px; font-size: 15px; }
    .phone { font-size: 17px; }
}

/* Ultra-tight version – exactly like your original but still responsive */
#about-us   { padding: 70px 20px 90px; }
#team       { padding: 50px 20px 70px; background: #111; }
#services   { padding: 80px 20px 100px; }
#contact-us { padding: 80px 20px 100px; }

/* Mobile – still comfortable but no huge gaps */
@media (max-width: 768px) {
    #about-us,
    #team,
    #services,
    #contact-us {
        padding: 60px 15px;
    }
    #team { padding: 50px 15px; }
}