
/* Global Reset */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

/* Ensure full height */
html, body {
height: 100%;
font-size: 16px;
}

body {
font-family: Arial, sans-serif;
line-height: 1.6;
background: #f4f4f4;
color: #333;
padding: 20px;
overflow-x: hidden;
font-size: 1rem;
padding: 1em;
}

/* Responsive Container */
.container {
max-width: 800px;
margin: 0 auto;
width: 100%;
padding: 1em;
}

/* Header */
header {
text-align: center;
margin-bottom: 30px;
}

/* Carousel */
.carousel {
max-width: 100%;
max-height: 400px;
margin: 0 auto 2em auto;
box-shadow: 0 0 0.5em rgba(0,0,0,0.1);
overflow: hidden;
}

.carousel-images {
width: 100%;
position: relative;
}

.carousel-images input[type="radio"] {
display: none;
}

.images {
display: flex;
transition: transform 0.5s ease-in-out;
width: 300%; /* If you have 3 images */
}

.image {
flex: 0 0 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 1em;
background: #fff;

}

.image img {
max-width: 100%;
max-height: 100%;
height: auto;
width: auto;
object-fit: contain;
border-radius: .5em;

}

#img1:checked ~ .images {
transform: translateX(0%);
}
#img2:checked ~ .images {
transform: translateX(-100%);
}
#img3:checked ~ .images {
transform: translateX(-200%);
}

.navigation {
	display: flex;
text-align: center;
margin-top: 1em;
justify-content: center;
align-items: center;
gap: 0.5em;

}

.nav-dot {
cursor: pointer;
height: 1em;
width: 1em;
margin: 0 5px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.3s ease;
}

/* Accordion */
.accordion {
width: 100%;
}

.accordion-item {
margin-bottom: 10px;
}

.accordion-title {
display: block;
background: #333;
color: #fff;
padding: 15px;
cursor: pointer;
}

.accordion-content {
max-height: 0;
overflow: hidden;
background: #eee;
transition: max-height 0.4s ease;
}

.accordion input:checked ~ .accordion-content {
max-height: 1000px; /* Large enough to fit the form */
padding: 15px;
}

/* Contact Form */
.contact-form {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 10px;
}

.contact-form label {
font-weight: bold;
}

.contact-form input,
.contact-form textarea {
padding: 10px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 4px;
width: 100%;
}

.contact-form textarea {
resize: vertical;
min-height: 100px;
}

.contact-form button {
background-color: #333;
color: #fff;
padding: 10px;
border: none;
font-size: 1rem;
border-radius: 4px;
cursor: pointer;
}

.contact-form button:hover {
background-color: #555;
}

/* Footer */
footer {
text-align: center;
margin-top: 3em;
font-size: 0.9em;
padding-bottom: 2em;

}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	
	
body {
padding: 0.8em;
}
.carousel {
		max-height: 250px;
}
.carousel-images,
.accordion,
.contact-form {
width: 100%;
}
.contact-form input,
.contact-from textarea,
.contact-form button {
	font-size: 1rem;
	width: 100%;
}
.image img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

	}	
