:root {
    --background: #ffffff;
    --foreground: #1a2a1f;
    --accent: #b08d57;
    --muted: #6b7280;
    --border: rgba(26, 42, 31, 0.1);
    --font-sans: 'DM Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color:#ae9a64
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 20px;
    padding: 0 0rem;
}

.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0 20px;
}

.logo {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1rem;
    animation: fadeInScale 1.2s ease-out;
}

@media (min-width: 768px) {
    .logo-hero {
        max-width: 400px;
        margin-bottom: 1rem;
    }
}

.main-logo {
    width: 100%;
    height: auto;
}

.content {
    text-align: center;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.divider {
    height: 1px;
    width: 40px;
    background-color: var(--accent);
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .divider {
        width: 60px;
        margin-bottom: 3rem;
    }
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        text-align: center;
    }
}

h3 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 2rem;
    font-weight: 700;
    color:#ae9a64;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    h3 {
        text-align: center;
        letter-spacing: 0.2em;
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}

.contact-item p {
    font-size: 1rem;
    word-break: break-word;
    align-items: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .contact-item p {
        font-size: 1.125rem;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.social-icons {
    text-align: center;
    align-items: center;
    display: flex;
    gap: 60px; /* Space between icons */
    color: #ae9a64; /* Default color */
    font-size: 3rem;
    transition: all 0.3s ease; /* Smooth transition for effects */
    width: 3rem;
    height: 3rem;
}

/* Hover Effects */
.social-icon.instagram:hover {
    color: #E1306C; /* Instagram pink */
    transform: scale(1.2); /* Makes icon slightly bigger */
}

.social-icon.facebook:hover {
    color: #1877F2; /* Facebook blue */
    transform: scale(1.2);
}

.social-links {
    display: flex;
    justify-content: center; /* Centreert de iconen */
    gap: 20px;               /* Ruimte tussen de iconen */
    margin-top: 10px;
}

/* Specifiek voor mobiel */
@media (max-width: 480px) {
    .contact-item {
        text-align: center;  /* Op een iPhone oogt centreren vaak professioneler */
    }
}

a:hover {
    color: black;
}

.footer {
    padding: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}