

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    color: white;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* Logo */
#logo {
    height: auto;
    width: 120px;
    max-width: 100%;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: center;
    background: #444;
    padding: 15px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    justify-content: center;
    width: 100%;
}

.navbar ul li {
    position: relative;
    padding: 10px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: bold;
    display: block;
}

.navbar ul li a:hover {
    background: #666;
    border-radius: 5px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #666;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    left: 0;
    top: 100%;
    flex-direction: column;
    padding: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li {
    padding: 10px;
    text-align: center;
}

.dropdown-content li a {
    color: white;
    display: block;
    text-decoration: none;
}

.dropdown-content li a:hover {
    background: #777;
}

/* Slideshow and Side Images */
.slideshow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: relative;
    margin: 0 auto;
}

#slideshow {
    width: 60vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

#slideshow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
}

#slideshow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/photo1.jpeg') center/cover no-repeat;
    filter: blur(20px);
    z-index: -1;
}

#slideshow img.active {
    opacity: 1;
    position: relative;
}

/* Adjust Side Images to Fill Space */
.side-images {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 20vw;
    height: 100vh;
    padding: 0;
}

.side-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Centering Quote Form Over Slideshow */
#quote-form {
    max-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.slideshow-container {
    position: relative;
}

/* Footer Stays at Bottom */
.footer-bar {
    background: #444;
    color: white;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    position: relative;
    margin-top: auto;
}
