/* Add Font-Face Rule */
@font-face {
    font-family: 'YourCustomFont';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'YourCustomFont', Arial, sans-serif; /* Include the font here */
    background-image: url('/christmas.webp'); /* Path to your image */
    background-size: cover; /* Ensure the image covers the entire screen */
    background-position: center; /* Center the image */
    background-attachment: fixed; /* Keeps the image fixed while scrolling (remove on mobile if needed) */
    height: 100vh; /* Full viewport height */
}

/* Fixed Top Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 4px 2px -2px gray;
}

.navbar nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar nav ul li {
    margin: 0 15px;
}

.navbar nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 0 0;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover effect for the navigation links */
.navbar nav ul li a:hover {
    background-color: #ffcc00;
    color: #333;
    border-radius: 5px;
}

/* Font Awesome Icon Styles */
.navbar nav ul li a i {
    margin-right: 8px;
}

/* Collapse navigation for smaller screens */
@media screen and (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        background: #444;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
    }

    .navbar-menu ul {
        flex-direction: column;
        text-align: center;
    }

    .navbar-menu li a {
        padding: 10px;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
    }
}

/* Main Content */
.content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 120px;
    text-align: center;
}


/* Greeting Section */
.greeting h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffcc00;
    text-shadow: 2px 2px 4px #000;
}


.greeting p {
    font-size: 1.4em;
    line-height: 1.5;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

/* Footer */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 0 0;
    color: #fff;
    font-size: 0.8em;
    text-align: center;
    z-index: 10;
    box-shadow: 0 4px 2px -2px gray(0, 0, 0, 0.25);
}

footer p, footer a {
    color: #fff;
    text-decoration: none;
        margin: 0 0;  /* Adjust vertical spacing (top and bottom) */
        line-height: 1.5; /* Adjust line spacing within the text */
        transition: background-color 0.3s ease, color 0.3s ease;
}

footer a:hover {
    color: #ff9900;
    text-decoration: underline;
}
