/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}


h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
color: aquamarine;
}

a {
    text-decoration: none;
    color: #fff;
}

ul {
    padding: 0;
    list-style: none;
}

button {
    background-color: #ff9900;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

button:hover {
    background-color: #e68a00;
}

/* Header */
header{
    background-image:url(images/kuku.jpg);
    padding: 10px 0;
        background-size: cover;
        background-position: center; 
        height: 500px; 

    }
    
nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-weight: 500;
    font-size: 18px;
}

/* Hero Section */
.hero {
    text-align: left;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 80px;
    color: #ff9900;
    font-family:cursive;
}

.hero p {
    font-size: 5px;
}

/* Products Section */
h2{
    background-color: #ff9900;
}
.products {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.products table {
    width: 100%;
    border-collapse: collapse;
}

.products th, .products td {
    padding: 10px;
    border: 1px solid #ddd;
}

.products img {
    width: 100px;
    height: auto;
}

/* About Section */
.about {
    background-color:rgb(248, 208, 160);
}
h2{
    color: aqua;
    font-style: oblique;
    font-family: sans-serif;
    font-size:100px;
    text-align: center;
}
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.about-text {
    width: 50%;
}

.about-image img {
    width: 300px;
    height: 300px;
    border-radius: 5%;
}

/* Location Section */
.location {
    background-color: #fff;
    padding: 40px 20px;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Contact Section */
.contact {
    background-color: #ff9900;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.contact-info p {
    margin: 10px 0;
}

.contact form {
    max-width: 600px;
    margin: 20px auto;
}

.contact form label {
    display: block;
    margin: 10px 0 5px;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact form textarea {
    height: 150px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
}
