/* GENERAL */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #e3f2fd; /* light blue */
    color: #000;
    overflow-x: hidden;
    position: relative;
}

/* TOP BAR */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0288d1;
    padding: 10px 20px;
    color: white;
}

.top-bar .logo {
    width: 80px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.top-bar .marquee {
    flex: 1;
    margin-left: 20px;
    font-weight: bold;
    font-size: 1em;
}

/* MENU */
.menu {
    display: flex;
    justify-content: center;
    background-color: #81d4fa;
    padding: 10px 0;
}

.menu a {
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    color: #01579b;
}

.menu a:hover {
    text-decoration: underline;
}

/* HERO VIDEO */
.hero {
    position: relative;
    height: 400px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

#bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2;
}

.hero-content h1 {
    font-size: 2em;
    margin-bottom: 15px;
}

.hero-content button {
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    background-color: #0288d1;
    color: white;
    cursor: pointer;
}

.hero-content button:hover {
    background-color: #0277bd;
}

/* SECTIONS */
section {
    background: rgba(255,255,255,0.95);
    margin: 20px auto;
    border-radius: 10px;
    padding: 30px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* SERVICES */
#services ul {
    list-style: none;
    padding: 0;
}

#services li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

#services li::before {
    content: "🔧";
    position: absolute;
    left: 0;
}

/* GALLERY */
.slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
}

.slideshow-container img {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-container img.active {
    opacity: 1;
}

/* CONTACT */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, select, textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #90caf9;
    font-size: 1em;
}

button {
    background-color: #0288d1;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #0277bd;
}

/* FOOTER */
footer {
    background: #01579b;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 0.9em;
    border-top: 3px solid #0288d1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
    }
    .top-bar .marquee {
        margin: 10px 0 0 0;
    }
    .slideshow-container { height: 250px; }
}
