/*
Theme Name: Adanna Estrela Theme
Author: Grok
Version: 1.0
Description: Tema one-page para Adanna Estrela.
*/

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #F5EAE1;
    color: #C07A35;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #592E6B;
}

a {
    color: #E4AD75;
    text-decoration: none;
}

.button {
    background-color: #E4AD75;
    color: #F5EAE1;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #592E6B;
}

#hero {
    background: linear-gradient(to bottom, #592E6B, #D7C2EE);
    color: #F5EAE1;
    text-align: center;
    padding: 100px 20px;
}

#projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #D7C2EE;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

footer {
    background: #592E6B;
    color: #F5EAE1;
    text-align: center;
    padding: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
    #projects { flex-direction: column; }
}