/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #d4af37;
    color: #fff;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

header .logo-container {
    display: flex;
    align-items: center;
}

header {
    background-color: #d4af37;
    color: #fff;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between logo and navigation */
    z-index: 1000;
}

header .logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align logo to the left */
}

header .logo {
    height: 60px; /* Set height for the logo */
    width: auto; /* Maintain aspect ratio */
    margin-right: 15px; /* Add spacing between logo and text */
}

header nav {
    display: flex;
    gap: 15px; /* Add spacing between navigation links */
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav a:hover {
    color: #000;
}





main {
    flex: 1;
    margin-top: 80px;
    padding: 20px;
}

footer {
    background-color: #d4af37;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - 120px); /* Adjusted for header and footer */
}

.carousel {
    position: relative;
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}


.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #d4af37;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff7e6;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    width: 100%; /* Full width */
    max-height: 400px; /* Restrict height */
    object-fit: cover; /* Ensure the image covers the area */
    border-radius: 5px;
    margin-bottom: 10px;
}

.carousel-item p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333;
}

