/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    background-color: #054d3b; /* Moss green */
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

header .logo {
    max-height: 50px;
    max-width: 100%;
    height: auto;
    width: auto;  
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin: 0;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

header nav ul li a:hover {
    text-decoration: underline;
}



/* Home Section */
#home {
    text-align: center;
    padding: 50px 20px;
    background-color: #a1d593; 
}

#home h1 {
    font-family: 'Yeseva One', cursive;
    font-size: 48px;  
    color: #054d3b; 
}

#home p {
    font-size: 20px;
    margin: 20px 0;
}

.product-image img {
    max-width: 80%;
    height: auto;
    border: 5px solid #054d3b; 
    border-radius: 10px;
}

#about {
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;  
    text-align: center; 
    background-color: #e4e9d8;
    border-radius: 10px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#about h2 {
    font-size: 24px;
    font-family: 'Yeseva One', cursive;
    color: #333; 
    margin-bottom: 15px;
}

#about p {
    font-size: 16px;
    line-height: 1.6;  
    color: #666; 
    margin-bottom: 10px; 
}

#about p:last-child {
    margin-bottom: 0; 
}

/* Models Section */
#models {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

#models h2 {
    font-family: 'Yeseva One', cursive;
    font-size: 30px;
    color: #333;
}

.model-gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.model-card {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.model-card img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    border-radius: 5px;
}

.model-card h3 {
    font-size: 22px;
    color: #333;
}

.model-card p {
    font-size: 16px;
    color: #555;
}

/* FAQ Section */
#faq {
    padding: 40px 20px;
    background-color: #a1d593; 
}

#faq h2 {
    font-family: 'Yeseva One', cursive;
    text-align: center;
    font-size: 28px;
    color: #333;
}

#faq ul {
    list-style: none;
    padding: 0;
}

#faq li {
    margin: 15px 0;
}

#faq li strong {
    font-size: 18px;
    color: #054d3b;
}

#faq li p {
    font-size: 16px;
    color: #555;
}

/* Contact Section */
#contact {
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;  
    text-align: center; 
    background-color: #e4e9d8; 
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

#contact h2 {
    font-family: 'Yeseva One', cursive;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

#contact a {
    font-size: 20px;
    color: #4cb472;
    text-decoration: none;    
}

#contact a:hover {
    text-decoration: underline;
}


/* Footer */
footer {
    background-color: #054d3b;
    color: #4cb472;
    text-align: center;
    padding: 20px;
}


/* for da phones */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    header {
        padding: 15px;
        align-items: center;
    }

    header .logo {
        max-height: 40px;
    }

    header nav ul {
        flex-direction: row; 
        flex-wrap: wrap;
        gap: 10px;
    }

    header nav ul li {
        margin: 10px 0; 
    }

    #home {
        padding: 30px 10px; 
    }

    #home h1 {
        font-size: 28px; 
    }

    #home p {
        font-size: 16px; 
    }

    .model-gallery {
        flex-direction: column;
        align-items: center;
    }

    .model-card {
        width: 90%; 
        margin-bottom: 20px;
    }
}
