@charset "utf-8";

/* =========================
   1. BASIS INSTELLINGEN
   ========================= */
html {
    overflow-y: scroll;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Karla", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background-color: #9e7c96;
}

/* =========================
   2. LAYOUT STRUCTUUR
   ========================= */
.wrapper {
    width: 100%;
    background-color: #9e7c96;
}

#mainav,
header,
.flex-container,
#copyright {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    background-color: #9e7c96;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.flex-container {
    padding: 20px 0 30px 0;
}

/* =========================
   3. TYPOGRAFIE
   ========================= */
h1, h2, h3, h4, h5 {
    font-family: "Karla", sans-serif;
    font-weight: normal;
    margin-bottom: 15px;
    color: #fff;
}

h1 {
    font-size: 2em;
    text-align: center;
    padding: 20px 0;
}

h2 {
    font-size: 1.4em;
    padding: 0 40px;
}

p {
    font-size: 1.1em;
    padding: 0 40px;
    margin-bottom: 20px;
}

.p-left {
    text-align: left;
}

a {
    color: #ffffff;
    text-decoration: none;
}
a:hover {
    color: #724a69;
    text-decoration: underline;
}
a:visited {
    color: #724a69;
}
a:active {
    color: #724a69;
}

/* =========================
   4. NAVIGATIE
   ========================= */
/* =========================================
   LUXE NAVIGATIEBALK
   ========================================= */

#mainav {
    background: rgba(109, 81, 103, 0.85);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Menu items */
#mainav li a {
    position: relative;
    padding: 16px 22px;
    color: #fff;
    text-decoration: none;
    font-family: "Playfair Display", serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Subtiele hover (geen blok meer) */
#mainav li:hover > a {
    background-color: transparent;
    color: #f8dfe8;
}

/* Elegant lijntje onder hover */
#mainav li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: #f8dfe8;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

#mainav li:hover a::after {
    width: 60%;
}

/* Actieve pagina */
#mainav .active a {
    background-color: transparent;
    color: #fff;
}

#mainav .active a::after {
    width: 60%;
}


/* Mobiel menu op desktop verbergen */
#mainav form {
    display: none !important;
}

#mainav ul {
    list-style: none;
    text-align: center;
}

#mainav li {
    display: inline-block;
    position: relative;
}

#mainav li a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
}

#mainav li:hover > a,
#mainav .active a {
    background-color: #82637b;
    color: #fff;
}

/* Submenu desktop */
#mainav ul ul {
    display: none;
    position: absolute;
    width: 180px;
    background-color: #6d5167;
    z-index: 999;
    text-align: left;
}

#mainav ul li:hover > ul {
    display: block;
}

#mainav ul ul li {
    width: 100%;
}

/* =========================
   5. HEADER
   ========================= */
header {
    line-height: 0;
    overflow: hidden;
}

header img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}

/* =========================
   6. ALGEMENE AFBEELDINGEN
   ========================= */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    border: 3px ridge #fff;
    border-radius: 4px;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.img-responsive:hover {
    transform: scale(1.02);
}

/* Oude galerij (mag blijven voor andere pagina's) */
.call-outs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 20px 40px;
}

.call-out {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

/* =========================
   7. FOOTER
   ========================= */
.flex-footer {
    background-color: #9e7c96;
    margin-top: 0;
    width: 100%;
}

#copyright {
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #fff !important;
}

#copyright h5 {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.9;
}

#copyright a {
    color: #fff;
    text-decoration: none;
}

#copyright a:hover {
    text-decoration: underline;
}

/* =========================
   8. HELPER CLASSES
   ========================= */
.center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.clear::after {
    content: "";
    display: table;
    clear: both;
}

.v-h {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}


/* =========================
   9. ALGEMENE KNOP
   ========================= */
.myButton {
    background: linear-gradient(to bottom, #b38aa9 5%, #82637b 100%);
    background-color: #b38aa9;
    border-radius: 10px;
    border: 1px solid #ffffff;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-weight: bold;
    padding: 12px 24px;
    text-decoration: none;
}


/* =========================================
   LUXE BOUTIQUE KNOP
   ========================================= */
.btn-info {
    display: inline-block;
    padding: 12px 28px;
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #b38aa9, #82637b);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-info::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.15);
    transform: rotate(45deg) translateX(-100%);
    transition: all 0.5s ease;
}

.btn-info:hover::before {
    transform: rotate(45deg) translateX(0);
}

.btn-info:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}






/* =========================================
   10. POEZEN PAGINA - NIEUWE PROFESSIONELE LAYOUT
   DREAMWEAVER PROOF / GEEN UITGEREKTE FOTO'S
   ========================================= */

.cats-divider {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.35);
    max-width: 1100px;
    margin: 10px auto 35px auto;
}

.cats-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px 30px 20px;
}

.cat-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    margin-bottom: 35px;
    text-align: left;
}


.cat-card {
    position: relative;
    z-index: 1;
}

.cat-card::before {
    content: "";
    position: absolute;
    inset: 0;
	/* KAART achter de POEZEN */
	background: url('../../images/peony-bg.jpg') center/cover no-repeat;    opacity: 0.10;          /* zacht houden */
	
    filter: blur(6px);      /* dreamy effect */
    transform: scale(1.05);

    z-index: 0;
}



.cat-card > * {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 900px) {
    
    .cat-card::before {
        opacity: 0.10;     /* weer subtieler */
        filter: blur(8px); /* iets meer blur */
        background-position: center;
    }

    .cat-card::after {
        background: rgba(158, 124, 150, 0.45);
    }

}


/* FOTO BLOK */
.cat-image {
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
}

/* ZEER BELANGRIJK:
   geen vaste hoogte / geen stretch / geen object-fit cover */
.cat-image img,
.cat-image .img-responsive {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 420px !important;
    display: block;
    margin: 0 auto;
    object-fit: contain !important;
    border: 3px ridge #fff !important;
    border-radius: 12px !important;
    transform: none !important;
}

/* hover uit binnen poezenblok */
.cat-image .img-responsive:hover {
    transform: none !important;
}

.cat-info {
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.cat-label {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #f6e9ef;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.20);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.cat-info h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
    padding: 0 !important;
}

.cat-details {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.cat-details li {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 12px;
    padding: 0 0 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    line-height: 1.7;
}

.cat-details li strong {
    color: #ffeef5;
    display: inline-block;
    min-width: 78px;
}

.cat-button {
    display: inline-block;
    align-self: flex-start;
    background: linear-gradient(135deg, #b38aa9, #82637b);
    border: 1px solid rgba(255,255,255,0.45);
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}


.cat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Afwisseling links/rechts */
.cat-card:nth-child(even) .cat-image {
    order: 2;
}

.cat-card:nth-child(even) .cat-info {
    order: 1;
}

/* =========================
   11. MOBIEL / TABLET
   ========================= */
@media screen and (max-width: 900px) {
    p, h2, h1 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    #mainav, .flex-footer, header {
        border-top: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.3) !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* Menu */
    #mainav ul {
        display: none !important;
    }

    #mainav form {
        display: block !important;
        padding: 15px 0 !important;
        text-align: center !important;
    }

    #mainav form select {
        display: inline-block !important;
        width: 85% !important;
        padding: 10px !important;
        border: 1px solid #fff !important;
        border-radius: 5px !important;
        background-color: #9e7c96 !important;
        color: #fff !important;
        font-family: "Karla", sans-serif !important;
        font-size: 16px !important;
        appearance: none;
        -webkit-appearance: none;
    }

    /* Oude galerij */
    .call-outs-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
        padding: 15px !important;
        gap: 10px;
    }

    header img {
        padding: 0 !important;
    }

    /* Poezen */
    .cats-section {
        padding: 10px 15px 25px 15px;
    }

    .cat-card {
        grid-template-columns: 1fr;
    }

    .cat-card:nth-child(even) .cat-image,
    .cat-card:nth-child(even) .cat-info {
        order: unset;
    }

    .cat-image {
        padding: 22px 18px 10px 18px;
    }

    .cat-image img,
    .cat-image .img-responsive {
        max-width: 100% !important;
        height: auto !important;
        max-height: 380px !important;
    }

    .cat-info {
        padding: 28px 22px;
        text-align: center;
    }

    .cat-label,
    .cat-button {
        align-self: center;
    }

    .cat-info h2 {
        font-size: 1.7rem;
    }

    .cat-details li strong {
        min-width: auto;
        display: inline;
    }
}

@media screen and (max-width: 480px) {
    .cat-info h2 {
        font-size: 1.45rem;
    }

    .cat-details li {
        font-size: 1rem;
    }

    .cat-button {
        width: 100%;
        text-align: center;
    }
}


/* =========================================
   LUXE H1 TITEL BOVENAAN PAGINA
   ========================================= */

.page-title-luxe {
    text-align: center;
    padding: 18px 20px 10px 20px;
}

.page-title-luxe h1 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: normal;
    color: #fff;
    letter-spacing: 1.2px;
    margin: 0;
    padding: 0 !important;
    line-height: 1.15;
    text-transform: none;
}

.title-line {
    display: block;
    width: 110px;
    height: 2px;
    margin: 16px auto 0 auto;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0),
        rgba(255,255,255,0.85),
        rgba(255,255,255,0)
    );
    opacity: 0.95;
}

/* Mobiel */
@media screen and (max-width: 768px) {
    .page-title-luxe {
        padding: 14px 15px 8px 15px;
    }

    .page-title-luxe h1 {
        font-size: 2rem;
        letter-spacing: 0.8px;
    }

    .title-line {
        width: 85px;
        margin-top: 14px;
    }
}

@media screen and (max-width: 480px) {
    .page-title-luxe h1 {
        font-size: 1.7rem;
    }

    .title-line {
        width: 70px;
    }
}