/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .logo img {
    height: 200px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #322f2d;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #111;
    position: relative;
    text-align: center;
    margin-top: 70px; /* Offset for the fixed navbar */
}

.hero .hero-image {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

.hero .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}

.hero-text h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.cta-button {
    padding: 10px 20px;
    background-color: #322f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #322f2d;
}


.footer {
    text-align: center;
    padding: 0px;
    background-color: #222;
}

.contact {
    padding-top: 100px; /* Add padding to prevent navbar overlap */
    padding: 50px 20px;
    background-color: #222;
    text-align: center;
    margin-top: 70px; /* Offset for the fixed navbar */
}

.contact h1 {
    margin-bottom: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.contact label {
    margin: 10px 0 5px;
}

.contact input,
.contact textarea {
    padding: 10px;
    margin: 5px 0;
    width: 100%;
    max-width: 500px;
    border: none;
    border-radius: 5px;
}

.contact button {
    padding: 10px 20px;
    background-color: #322f2d;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #322f2d;
}

.gallery {
    padding-top: 100px; /* Add padding to prevent navbar overlap */
    padding: 50px 20px;
    background-color: #222;
    text-align: center;
    margin-top: 70px; /* Offset for the fixed navbar */
}

.gallery h1 {
    margin-bottom: 20px;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-images img {
    width: 600px;
    height: auto;
    border-radius: 10px;
}
