/* Importeer een sjiek handgeschreven font */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* De About Pagina Styling */
.about-wrapper {
    background-image: linear-gradient(to bottom, #F5F1E9, #EAE0D5);
}

/* Verberg de paginatitel */
.page-title,
h1.page-title,
.entry-title {
    display: none !important;
}

.signature-font {
    /* Dit geeft het effect van een vulpen */
    letter-spacing: 1px;
    transform: rotate(-2deg);
    display: inline-block;
}

/* Stijl voor links in de tekst */
.about-content a {
    color: #A68A64;
    text-decoration: none;
    border-bottom: 1px solid #A68A64;
    transition: all 0.3s ease;
}

.about-content a:hover {
    color: #3D2B1F;
    border-bottom-color: #3D2B1F;
}

/* Algemene container voor scannability */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Paginering Styling */
.pagination {
    margin-top: 40px;
}
.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.pagination .page-numbers {
    padding: 8px 16px;
    background: #F5F1E9;
    color: #3D2B1F;
    border: 1px solid #A68A64;
    text-decoration: none;
    transition: 0.3s;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
    background: #3D2B1F;
    color: #F5F1E9;
}

/* Hero Knoppen Styling */
.btn-miller-primary {
    background-color: #A68A64;
    color: #F5F1E9;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #A68A64;
}

.btn-miller-primary:hover {
    background-color: #3D2B1F;
    border-color: #3D2B1F;
    transform: translateY(-3px);
}

.btn-miller-outline {
    background-color: transparent;
    color: #F5F1E9;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 2px solid #F5F1E9;
    transition: all 0.3s ease;
}

.btn-miller-outline:hover {
    background-color: #F5F1E9;
    color: #3D2B1F;
    transform: translateY(-3px);
}

/* Responsiviteit voor mobiel */
@media (max-width: 768px) {
    .hero-header { padding: 80px 20px; text-align: center; }
    .hero-text { flex: 1; }
    .hero-buttons { justify-content: center; flex-direction: column; }
    .hero-image { display: none; }
}

/* Full Screen Overlay Menu */
#full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3D2B1F; /* Donkerbruine achtergrond */
    z-index: 2000;
    display: none; /* Standaard verborgen */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

#full-screen-menu.active {
    display: flex;
}

/* De Crème kleurige tekst in het menu */
.full-menu-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.full-menu-list li {
    margin: 20px 0;
}

.full-menu-list li a {
    color: #F5F1E9; /* Crème tekst */
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s;
}

.full-menu-list li a:hover {
    color: #A68A64; /* Accentkleur bij hover */
}

/* Sluitknop */
#menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: #F5F1E9;
    cursor: pointer;
}

/* --- Gecentraliseerde Link Reset (Geforceerd) --- */

a, 
a:link, 
a:visited, 
.entry-content a, 
.elementor-widget-container a {
    color: #3D2B1F !important;
    text-decoration: none !important;
}

/* Hover kleur forceren */
a:hover, 
.entry-content a:hover, 
.elementor-widget-container a:hover {
    color: #A68A64 !important;
    text-decoration: none !important;
}

/* Specifiek voor de menu-items */
.full-menu-list li a {
    color: #F5F1E9 !important;
}

.full-menu-list li a:hover {
    color: #A68A64 !important;
}

/* Footer Menu Styling */
.footer-menu li a {
    color: #F5F1E9 !important;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: 0.3s;
}

.footer-menu li a:hover {
    color: #A68A64 !important;
    padding-left: 10px;
}