
body, html {
    margin: 0;
    padding: 0;
    position: relative;
    color: #d4af37;
    background-color: black;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
}


@font-face {
    font-family: 'Bungee'; /* Name for the font */
    src: url('../fonts/Bungee-Regular.ttf') format('truetype'); /* Path to the font file */
    font-weight: normal;
    font-style: normal;
}

/* Apply the font to your body or specific elements */
body {
    font-family: 'Bungee', sans-serif;
}


/* Header */
header {
    width: 100%;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
}

/* Navigation */
.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-list li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    color: #FEF8AC;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: rgb(255, 0, 0);
}

/* Background Section */
.background-section {
    background-image: url('../photos/background-1.jpg'); /* Absolute path from public_html */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Fixes the background image */
    position: relative; /* Allows text overlay */
    min-height: 100vh; /* Ensure it fills the viewport */
    padding-top: 12px; /* Pushes content below the navbar */
}

/* Contact Form Styling */
.container {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    text-align: center;

}

/* Contact Form Container */
.contact-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 0px; /* Offset for header */
}

.contact-form {
    width: 100%;
    max-width: 600px; /* Sets the max width to prevent it from overflowing */
    background-color: rgba(0, 0, 0, 0.8); /* Dark background color for form */
    padding: 0px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}


#contact h1 {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

#contact input,
#contact textarea {
    font-size: 16px;
    width: 96.5%;
    padding: 10px;
    border: 1px solid #CCC;
    border-radius: 5px;
    background-color: #fff;
    color: black;
}

#contact input:focus,
#contact textarea:focus {
    outline: none;
    border: 1px solid #d4af37;
}

#contact button {
    width: 100%;
    padding: 10px;
    background-color: #d4af37;
    border: none;
    color: black;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact button:hover {
    background-color: #ff3333;
}

/* Contact Info Paragraph */
.contact-info {
    margin-top: 20px;
    text-align: center;
}

.contact-info p {
    font-size: 16px;
    color: #fff;
}

.contact-info a {
    color: #d4af37;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */

/* Tablet and smaller screens adjustments */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column; /* Stack navigation vertically */
        gap: 5px;
    }

    .nav-list li a {
        font-size: 16px; /* Slightly smaller font for tablets */
    }

    .background-section {
        background-image: url('../photos/phonebackround2.webp'); /* Mobile background */
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Prevent fixed background on mobile */
    }

    .container {
        padding: 20px; /* Reduce padding on smaller screens */
    }

    #contact h1 {
        font-size: 28px; /* Smaller heading on smaller screens */
    }

    #contact input,
    #contact textarea {
        font-size: 14px; /* Adjust form input size */
    }

    #contact button {
        font-size: 16px; /* Adjust button font size */
    }
}

/* Mobile phone adjustments */
@media (max-width: 480px) {
    .nav-list li a {
        font-size: 14px; /* Smaller font size for mobile */
    }

    .background-section {
        background-image: url('../photos/phonebackround2.webp');
        background-size: contain;
        background-position: center top;
        min-height: 100vh;
    }

    .container {
        padding: 15px; /* Further reduce padding for mobile */
    }

    #contact h1 {
        font-size: 24px; /* Further reduce heading size */
    }

    #contact input,
    #contact textarea {
        font-size: 12px; /* Adjust form input size */
    }

    #contact button {
        font-size: 14px; /* Adjust button font size */
    }
}
