/* Importação das Fontes */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Quicksand:wght@400;700&display=swap');

/* Variáveis de Cores (Paleta Alpes/Musical) */
:root {
    --primary-color: #709472; /* Verde dos Alpes */
    --secondary-color: #f4e8d3; /* Bege/Creme Campestre */
    --accent-color: #a8763e; /* Marrom Rústico / Madeira */
    --text-dark: #1e3a24; /* Verde Escuro da Montanha */
    --text-light: #ffffff;
    --background-light: #f7f3ed; /* Off-white */
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER / HERO SECTION === */
.hero {
    /* Imagem sugerida: Paisagem dos Alpes com notas musicais */
    background-color: var(--primary-color);
    background-image: url('alpes_novica_rebelde.jpg'); 
    background-size: cover;
    background-position: bottom;
    color: var(--text-light);
    padding: 40px 0 80px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero .container {
    background-color: rgba(255, 255, 255, 0.6); /* Fundo semi-transparente para melhor leitura */
    padding: 20px;
    border-radius: 15px;
}

.main-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5em;
    color: var(--text-dark); 
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.photo-placeholder {
    margin: 30px auto 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.maria-helena-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === SECTIONS GERAIS === */
main section {
    padding: 40px 0;
    text-align: center;
}

.section-info {
    background-color: #ffffff;
}

.section-attractions {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.section-rsvp {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.section-rsvp .section-title {
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* === DETALHES DO EVENTO === */
.event-details {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.detail-block h4 {
    color: var(--text-dark);
    font-size: 1.2em;
    margin-bottom: 5px;
}

.map-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.map-link:hover {
    color: var(--accent-color);
}

/* === ATRAÇÕES / GRID === */
.attraction-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.attraction-item {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(25% - 20px); 
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border-top: 5px solid var(--accent-color);
}

.attraction-item:hover {
    transform: translateY(-5px);
}

.attraction-item .icon {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
}

.attraction-item h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}

/* === RSVP / BOTÃO CTA === */
.cta-button {
    display: inline-block;
    background-color: #e63946; /* Vermelho vibrante para CTA */
    color: var(--text-light);
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.3em; /* Levemente menor para caber mais texto */
    font-weight: 700;
    border-radius: 50px;
    margin: 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #c91828;
    transform: scale(1.05);
}

.rsvp-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Formulário de RSVP */
.rsvp-form {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 20px;
    border-radius: 10px;
    max-width: 450px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.rsvp-form input, .rsvp-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #7b5833;
}


/* === FOOTER === */
footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

footer p {
    margin-bottom: 5px;
}

/* === RESPONSIVIDADE (Mantida) === */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5em;
    }
    
    .subtitle {
        font-size: 1.2em;
    }

    .event-details {
        flex-direction: column;
        align-items: center;
    }

    .attraction-item {
        flex: 1 1 calc(50% - 20px); 
    }

    .cta-button {
        font-size: 1.1em; 
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .attraction-item {
        flex: 1 1 100%; 
    }
}