@font-face {
    font-family: 'FrScript';
    src: url('../fonts/frscript.ttf') format('truetype');
}

@font-face {
    font-family: 'AtwRegular';
    src: url('../fonts/atwr.ttf') format('truetype');
}

a {
    text-decoration: none; /* Remove sublinhado e outras decorações */
    color: inherit; /* Herda a cor do texto do elemento pai */
    background: none; /* Remove qualquer fundo aplicado ao link */
    border: none; /* Remove qualquer borda aplicada ao link */
}

body {
    font-family: Arial, sans-serif;
    background-color: #fcd4d454;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    position: relative;
    background-color: #e99b8d3d;
    padding: 20px;
    font-family: 'AtwRegular'; /* Aplicar a fonte personalizada */
}

.menu-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px; /* Ajuste conforme necessário */
    z-index: 1000; /* Garante que o ícone está acima dos outros elementos */
    cursor: pointer; /* Adiciona um cursor de pointer para interatividade */
    background: url('../imgs/menu.png') no-repeat;
    background-size: contain;
    width: 2em;
    height: 2em;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-7%);
    right: 3em; /* Ajustado para ficar à esquerda do ícone, ajuste conforme necessário */
    background-color: #ffffff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    width: 200px; /* Ajuste conforme necessário */
    padding: 0 10px;
}

.menu-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-dropdown li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.menu-dropdown li:last-child {
    border-bottom: none;
}

.menu-dropdown a {
    text-decoration: none;
    color: #333;
    display: block;
}

.menu-dropdown a:hover {
    background-color: #f0f0f0;
}

h1 {
    margin: 0;
}

section {
    margin: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 10px;
}

label {
    margin: 10px 0 5px;
}

input, select {
    padding: 10px;
    width: 100%;
    height: 3.5em;
    box-sizing: border-box;
    border: 1px solid black;
    background-color: #fff7f7;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #ffb3ba;
    border: none;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
    width: 100%;
    height: 3.5em;
    box-sizing: border-box;
}

button:hover {
    background-color: #ff8f9a;
}

#companions {
    width: 100%;
    margin-top: 20px;
}

.companion {
    border: 1px solid #ff8c8c;
    padding: 10px;
    border-radius: 5px;
    background-color: #f8baba3b;
    margin-bottom: 10px;
    position: relative;
}

.remove-companion {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20pt !important;
    height: 2em;
    background-color: #ff5c5c;
    border: none;
    color: white;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-5px);
}

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

li {
    background-color: #f8baba73;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

#guest-list {
    display: none;
}

.topheader {
    display: table;
    background-image: url('../imgs/capa1.png'); /* Imagem SVG */
    background-repeat: no-repeat; /* Evita repetir a imagem */
    background-position: top center; /* Posiciona a imagem no centro */
    background-size: cover;
    width: 100%;
}

.event-title {
    text-align: center;
    font-size: 3em; /* Tamanho do texto */
    font-weight: bold; /* Texto em negrito */
    font-family: 'FrScript'; /* Aplicar a fonte personalizada */
    color: #311a1a; /* Cor mais forte */
    background: url('../svg/heart2.svg') no-repeat top center;
    background-size: 7em;
    background-color: rgba(233, 155, 141, 0.57);
    padding: 10px;
    opacity: 0.75;
}

#firsth1 {
    font-size: 64pt;
}

#text-message, #gift-form-section {
    text-align: justify;
    font-family: 'AtwRegular'; /* Aplicar a fonte personalizada */
    font-weight: bold;
}

.status-confirmed {
    color: green;
    font-weight: bold;
}

.status-rejected {
    color: red;
    font-weight: bold;
}

.status-pending {
    color: orange;
    font-weight: bold;
}
