/* Basis Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F7C3C2; /* De zachtroze achtergrondkleur van de kaart */
    font-family: 'Poppins', sans-serif;
    color: #7A4F4D; /* Donkerdere tint voor goede leesbaarheid */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container voor de content */
.container {
    background-color: rgba(255, 255, 255, 0.6); /* Subtiele witte transparante laag */
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Logo styling */
.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 180px;
    height: auto;
    border-radius: 30px; /* Geeft de afgeronde hoeken net als op de kaart */
}

/* Typografie */
h1 {
    font-family: "Dancing Script", cursive;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #613B39;
}

.tagline {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.divider {
    height: 1px;
    background-color: rgba(122, 79, 77, 0.3);
    width: 60%;
    margin: 0 auto 25px auto;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Lijst */
.contact-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    display: inline-block; /* Zorgt dat de tekst netjes links uitlijnt maar gecentreerd staat */
}

.contact-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.contact-list i {
    font-size: 1.1rem;
    margin-right: 15px;
    width: 20px;
    text-align: center;
    color: #613B39;
}

.contact-list a {
    color: #7A4F4D;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: #3D2221;
}

/* Social Media */
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a {
    color: #613B39;
    font-size: 1.8rem;
    transition: transform 0.3s, color 0.3s;
}

.socials a:hover {
    color: #3D2221;
    transform: scale(1.1);
}