/* ========== RESET GERAL ========== */
/* Remove as margens e espaços que os navegadores colocam por padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif; /* Fonte elegante e clássica */
    overflow-x: hidden; /* Evita que a página "dance" para os lados no celular */
}

/* ========== PÁGINA DO CASAMENTO ========== */

/* Fundo com degradê suave */
.home-page {
    background: linear-gradient(135deg, #f5e6d3 0%, #ead5c1 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

/* Container que centraliza o conteúdo */
.home-container {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease; /* Chama a animação de entrada */
}

/* Animação para o site aparecer suavemente */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cabeçalho (Títulos) */
.header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
}

.title {
    font-size: 48px;
    color: #8b4513; /* Tom marrom terra */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 24px;
    color: #c9a961; /* Tom dourado */
    font-style: italic;
}

/* Seções Brancas (Noivos e Local) */
.noivos-section, .local-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidade */
    margin-bottom: 60px;
    text-align: center;
}

/* Foto dos Noivos */
.foto-noivos {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.noivos-text {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Título do Local */
.local-section h2 {
    font-size: 30px;
    color: #8b4513;
    margin-bottom: 30px;
}

/* Informações do Local */
.local-info p {
    margin-bottom: 15px;
}

.local-nome {
    font-size: 24px;
    color: #8b4513;
}

.local-endereco {
    font-size: 18px;
    color: #666;
}

.local-horario {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Botão do Mapa */
.botao-mapa {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4a574 0%, #c9a961 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease; /* Suaviza o efeito de passar o mouse */
}

.botao-mapa:hover {
    transform: translateY(-2px); /* Sobe um pouquinho ao passar o mouse */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ========== RESPONSIVIDADE (PARA CELULAR) ========== */
@media (max-width: 768px) {
    .title {
        font-size: 36px;
    }

    .noivos-section, .local-section {
        padding: 25px;
    }
}
