/************* FONTS *********/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== FIX WHITE SIDES ===== */
html {
    height: 100%;
    background: radial-gradient(
        circle at top,
        #e45a5a 0%,
        #b73737 45%,
        #7a1f1f 100%
    );
}

body {
    min-height: 100vh;
    background: transparent;
    overflow-x: hidden; /* THIS FIXES THE WHITE SIDES */
    font-family: Arial, Helvetica, sans-serif;
}


/* ================= NAVBAR ================= */

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    padding: 0 3rem;
    z-index: 100;

    font-family: 'Montserrat', sans-serif;
    font-size: 19px;

    background: transparent;
    transition: background 0.3s ease, height 0.3s ease;
}

.main-navbar.scrolled {
    height: 5.5rem;
    background: rgba(196, 0, 0, 0.85);
}

.logo img {
    height: 100px;
    display: block;
}

/* NAV LINKS */

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3.5rem;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #e53935;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* PHONE BUTTON */

.nav-phone {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 2px solid #e53935;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.nav-phone:hover {
    background: #e53935;
    transform: translateY(-1px);
}

/* ================= PRIVACY SECTION ================= */

.privacy-policy {
    width: 100%;
    padding: 7rem 2rem; /* reduced padding to prevent overflow */
    color: #fff;
}



/* ================= FOOTER ================= */

footer {
    background: #111;
    color: #ccc;
}

.footer-content {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding: 4rem 3rem;
}

.footer-col h3,
.footer-col h4 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-col a:hover {
    color: #ff0000;
}

.footer-bottom {
    background: #111;
    text-align: center;
    padding: 1rem;
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom span {
    font-family: "Dancing Script", cursive;
    font-weight: 700;
    font-size: 1.5rem;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

.main-navbar {
    display: flex;
    justify-content: space-between;
    height: 80px;
    padding: 0 1.2rem;
    background: #111;
}

.nav-links {
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #111;
    padding: 2rem 0;
    gap: 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

}