/* CSS Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0b0b0b;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header (Hero) */
.hero {
    background: url('background-image.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.hero .content {
    z-index: 1;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero .btn {
    background-color: #ffffff;
    color: #0b0b0b;
    padding: 0.8rem 2rem;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #f2f2f2;
    color: #0b0b0b;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #141414;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-section p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: #d1d1d1;
}

/* Discover Section */
.discover-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #1e1e1e;
}

.discover-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.discover-section p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: #d1d1d1;
}

.discover-section .btn {
    background-color: #ffffff;
    color: #0b0b0b;
    padding: 0.8rem 2rem;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.discover-section .btn:hover {
    background-color: #f2f2f2;
    color: #0b0b0b;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #141414;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section input, 
.contact-section textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #1e1e1e;
    border: none;
    color: #ffffff;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-section button {
    background-color: #ffffff;
    color: #0b0b0b;
    padding: 0.8rem 2rem;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-section button:hover {
    background-color: #f2f2f2;
    color: #0b0b0b;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background-color: #0b0b0b;
    color: #ffffff;
}

footer p {
    margin-bottom: 1rem;
}

footer nav ul {
    list-style: none;
    padding: 0;
}

footer nav ul li {
    display: inline;
    margin: 0 1rem;
}

footer nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

footer nav ul li a:hover {
    text-decoration: underline;
}

.testimonials-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #1e1e1e;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.testimonial {
    background-color: #141414;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.testimonial p {
    font-size: 1rem;
    color: #d1d1d1;
}

.testimonial h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #ffffff;
}
