/* Base styling */
body {
    font-family: 'Roboto', sans-serif;
    color: #4e342e; /* Dark brown for text */
    background-color: #efebe9; /* Very light brown */
    margin: 0;
    padding: 0;
}

/* Container styling */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Header styling */
header {
    background-color: #d7ccc8; /* Light brown */
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo img {
    max-width: 150px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #4e342e; /* Dark brown */
    font-weight: 500;
}

/* Hero section styling */
#hero {
    background-color: #efebe9; /* Very light brown */
    padding: 60px 0;
    text-align: center;
}

#hero .hero-text h1 {
    font-size: 2.5em;
    color: #4e342e; /* Dark brown */
}

#hero .hero-text p {
    font-size: 1.2em;
    color: #6d4c41; /* Medium brown */
    margin: 20px 0;
}

#hero .cta-button {
    background-color: #8d6e63; /* Brown */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}

/* Section styling */
section {
    padding: 60px 0;
}

section h2 {
    color: #4e342e; /* Dark brown */
    text-align: center;
    margin-bottom: 20px;
}

section p {
    color: #6d4c41; /* Medium brown */
    text-align: center;
}

section img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}

/* Footer styling */
footer {
    background-color: #d7ccc8; /* Light brown */
    padding: 20px 0;
    text-align: center;
    color: #4e342e; /* Dark brown */
}

footer .footer-links a {
    color: #4e342e; /* Dark brown */
    text-decoration: none;
    margin: 0 10px;
}

footer .contact-info p,
footer .newsletter-signup p {
    margin: 5px 0;
}

footer .newsletter-signup input[type="email"] {
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #8d6e63; /* Brown */
    border-radius: 5px;
}

footer .newsletter-signup button {
    background-color: #8d6e63; /* Brown */
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
}

footer .social-media a {
    color: #4e342e; /* Dark brown */
    margin: 0 5px;
    font-size: 1.5em;
}

/* Form styling */
form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f5f5dc; /* Light brown */
    padding: 20px;
    border: 1px solid #8d6e63; /* Brown */
    border-radius: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #4e342e; /* Dark brown */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #8d6e63; /* Brown */
    border-radius: 5px;
}

button[type="submit"] {
    background-color: #8d6e63; /* Brown */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive styling */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-container video, 
.video-container iframe {
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px; /* Adjust height */
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide.active {
  display: block;
}

.slider-controls {
  text-align: center;
  margin-top: 10px;
}

.slider-controls button {
  padding: 8px 16px;
  margin: 0 5px;
  font-size: 18px;
  cursor: pointer;
}
