/* Resetting default margins and box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
#hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('template.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(50%);
}

#hero_content {
    position: absolute;
    text-align: center;
}

#hero_content h1 {
    color: #fff;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px #000;
}

#hero_content h2 {
    color: #fff;
    font-size: 1.8rem;
    font-family: cursive;
    margin: 1rem 0 2rem 0;
    text-shadow: 2px 2px 4px #000;
}

#hero_content a {
    color: #fff;
    padding: 8px 20px;
    border: 1px solid orange;
    background: rgba(0, 0, 0, 0.6);
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

#hero_content a:hover {
    background: grey;
}

/* Header Section */
#header {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 70px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

#navbar h1 {
    color: yellowgreen;
    font-size: 1.8rem;
    font-family: cursive;
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-links li {
    transition: color 0.3s;
}

.nav-links li:hover {
    color: yellowgreen;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

#phone a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 8px 15px;
    border: 1px solid orange;
    transition: transform 0.3s ease-out;
}

#phone a:hover {
    transform: scale(1.2);
}

/* Media Queries for Responsiveness */
@media (max-width: 995px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }
}
/* Hide phone number on mobile */
@media (max-width: 768px) {
    #phone {
        display: none;
    }
}

/* Ensure phone number is visible on larger screens */
@media (min-width: 769px) {
    #phone {
        display: block;
    }
}

