/* style.css */
/* Google fonts imported via CSS so index.php stays clean */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&family=Montserrat:wght@300;400;500;600&display=swap');

/* Define custom global color variable */
:root {
    --e-global-color-520945f: #f5f5f2;
    --e-global-color-text: #333333;
    --e-global-typography-85e2901-font-family: 'Montserrat', sans-serif;
    --e-global-typography-85e2901-font-size: 13px;
    --e-global-typography-85e2901-font-weight: 600;
    --e-global-typography-85e2901-text-transform: uppercase;
    --e-global-typography-primary-font-family: 'MinionPro', serif;
    --e-global-typography-primary-font-size: 60px;
    --e-global-typography-primary-font-weight: 700;
    --e-global-typography-primary-line-height: 1em;
    --e-global-color-3ec569e: #FFFFFF;
    --e-global-color-primary: #096C74;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    color: #333333;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
    color: #c5a059; /* gold accent */
}

nav {
    position: fixed;
    width: 100%;
    top: 0;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 1000;
    background-color: var(--e-global-color-520945f);
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    padding: 20px 0;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* always show menu items in a row */
.navbar-nav {
    flex-direction: row !important;
    list-style: none;
}
.navbar-nav .nav-item {
    display: inline-block;
}
.navbar-nav .nav-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-family: var(--e-global-typography-85e2901-font-family);
    font-size: var(--e-global-typography-85e2901-font-size);
    font-weight: var(--e-global-typography-85e2901-font-weight);
    text-transform: var(--e-global-typography-85e2901-text-transform);
    color: var(--e-global-color-primary) !important;
    fill: var(--e-global-color-primary);
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #c5a47e !important;
}

/* appointment CTA style */
.navbar-nav .nav-link.cta {
    background-color: #f3e8d0;
    color: #333333 !important;
    border: 1px solid #c5a47e;
    border-radius: 3px;
    padding: 8px 12px;
}
.navbar-nav .nav-link.cta:hover,
.navbar-nav .nav-link.cta:focus {
    background-color: #c5a47e;
    color: #ffffff !important;
}

/* mobile dropdown full width */
@media (max-width: 999px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--e-global-color-520945f);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .navbar-nav {
        flex-direction: column !important;
        align-items: center;
        padding: 1rem 0;
    }
    .navbar-nav .nav-item {
        display: block;
        width: 100%;
        text-align: center;
    }
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
}

.navbar-collapse .navbar-nav {
    width: 100%;
    justify-content: center;
}

.hero {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://touch-of-beauty.nl/wp-content/uploads/2021/01/slider.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    position: relative;
    background-attachment: scroll;
}
@media (min-width: 1025px) {
    .hero {
        background-attachment: fixed;
    }
}
.hero *, .hero :after, .hero :before {
    box-sizing: border-box;
}

/* Remove hero overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.65);
    z-index: 1;
    display: none !important;
}
.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
    color: #fff !important;
    margin: 0;
    padding: 0;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 0;
}
.breadcrumb a {
    color: #333333;
}

.form-control {
    border-radius: 0;
    background-color: #fdf7f8;
}

.form-label {
    font-weight: 600;
}

.contact-info h3 {
    margin-top: 1rem;
}

.contact-info {
    margin-top: 100px;
}
@media (max-width: 991px) {
    .contact-info {
        margin-top: 120px;
    }
}

footer {
    background-color: #ffffff;
    padding: 1rem 0;
    text-align: center;
    font-size: .9rem;
    color: #777777;
    border-top: 1px solid #e5e5e5;
}

.btn-primary {
    background-color: #c5a059;
    border-color: #c5a059;
}

.btn-primary:hover {
    background-color: #b3994e;
    border-color: #b3994e;
}

.map-placeholder iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* Card styles from image */
.card {
    background-color: #f5f5f2;
    border: none;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 50px 20px;
    padding: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    min-width: 300px;
    min-height: 400px;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.contact-details-card .card-title, .opening-hours-card .card-title {
    color: #096c74;
    font-weight: bold;
}

.social-icons .social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #096c74;
    color: white;
    margin-right: 10px;
}

.social-icons .social-icon:hover {
    background-color: #075a61;
}

.opening-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.btn-submit {
    background-color: #d8c9b6;
    color: white;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.btn-submit:hover {
    background-color: #c9bba8;
}


.map-placeholder iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    align-content: center;
    padding: 10px;
    box-sizing: border-box;
}
.navbar-brand img {
    display: block;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.elementor-icon-list-items {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}
.elementor-icon-list-item {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-right: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}
.elementor-icon-list-item:last-child {
    margin-right: 0;
}
.elementor-icon-list-icon {
    margin-right: 6px;
    color: #c5a47e;
    font-size: 20px;
}
.elementor-icon-list-text {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.elementor-icon-list-item a {
    color: #fff;
    text-decoration: none;
}
.elementor-icon-list-item a:hover {
    color: #c5a47e;
}

/* --- MAIN CONTENT CENTERING --- */
.main-content {
    max-width: 1200px;
    margin: 0 0;
}
@media (max-width: 991px) {
    .main-content {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* --- CONTACT FORM ENHANCEMENTS --- */
#contact-form {
    background-color: #fff;
    padding: 32px 32px 24px 32px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    margin-bottom: 32px;
}
.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.form-control {
    border: 1px solid #d8c9b3;
    border-radius: 0;
    padding: 10px;
    background-color: #fff !important;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s;
}
.form-control:focus {
    border-color: #c5a47e;
    box-shadow: none;
    outline: none;
}
textarea.form-control {
    min-height: 120px;
    border: 1px solid #e0e0e0;
    margin-top: 10px;
    padding: 12px;
}
.btn-submit {
    background-color: #d8c9b3;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 18px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    margin-top: 24px;
    width: 100%;
    display: block;
    text-align: center;
}
.btn-submit:hover {
    background-color: #c5a47e;
    color: #fff;
}
.invalid-feedback {
    font-size: 12px;
    color: #c00;
    margin-top: 4px;
}
@media (max-width: 768px) {
    #contact-form {
        padding: 16px;
    }
    .btn-submit {
        padding: 14px 0;
        font-size: 14px;
    }
}

/* --- CONTACT INFO CARDS --- */
.contact-info {
    background: #f9f7f3;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    padding: 32px 24px;
    margin-bottom: 32px;
}
.contact-info h3 {
    color: #096C74;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.contact-info p, .contact-info td {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #333;
}
.contact-info .fa-whatsapp, .contact-info .fa-facebook, .contact-info .fa-instagram {
    background: #096C74;
    color: #fff;
    border-radius: 50%;
    padding: 8px;
    font-size: 22px;
    margin-right: 8px;
    margin-top: 12px;
}
.contact-info .fa-whatsapp:hover, .contact-info .fa-facebook:hover, .contact-info .fa-instagram:hover {
    background: #c5a47e;
    color: #fff;
}

/* --- OPENING HOURS CARD --- */
.opening-hours {
    background: #f9f7f3;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    padding: 32px 24px;
    margin-bottom: 32px;
}
.opening-hours h3 {
    color: #096C74;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.opening-hours td {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #333;
    padding: 4px 8px;
}
@media (max-width: 991px) {
    .contact-info, .opening-hours {
        margin-bottom: 24px;
        padding: 16px;
    }
}

/* --- ALTERNATIVE CARD STYLES --- */
.contact-details-card, .opening-hours-card {
    background-color: #f8f7f5;
    border: none;
    border-radius: 0;
    padding: 20px;
}

.contact-details-card .card-title, .opening-hours-card .card-title {
    color: #008080;
    font-weight: bold;
    margin-bottom: 15px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons .social-icon {
    background-color: #008080;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-icons .social-icon:hover {
    background-color: #006666;
}

.opening-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #edebe8;
}

.opening-hours-list li:last-child {
    border-bottom: none;
}

.card-container {
    display: flex;
    gap: 1rem;
}

.card-container .card {
    flex: 1;
}

.contact-title {
    color: #096c74;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: bold;
    margin-left: 20px;
}

.contact-subtitle {
    color: #d8c9b6;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: bold;
    margin-left: 20px;
}

.map-container {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    margin: 100px 100px 50px 100px;
    width: 100%;
    max-width: 1200px; /* Or another appropriate max-width */
}

.site-footer {
    background-color: #fff;
    padding: 150px 50px 50px 0px;
    color: #333;
    font-family: 'Lato', sans-serif;
    /* min-height: 1060px; */
}

.site-footer .footer-widget {
    margin-bottom: 30px;
}

.site-footer .footer-logo {
    max-width: 300px;
    margin-bottom: 10px;
}

.site-footer .skin-professionals {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: #333;
}

.site-footer h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #096C74;
    margin-bottom: 20px;
}

.site-footer .list-unstyled li {
    margin-bottom: 10px;
}

.site-footer .list-unstyled a {
    color: var(--e-global-color-primary);
    text-decoration: none;
    transition: color 0.3s;
}
.site-footer .list-unstyled a:hover {
    color: #c5a47e;
}

.site-footer .opening-hours-list li {
    display: flex;
    justify-content: space-between;
}

.site-footer .social-icons .social-icon {
    background-color: #096C74;
    color: #fff;
}

.site-footer .footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.site-footer .footer-legal a {
    color: var(--e-global-color-primary);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}
.site-footer .footer-legal a:hover {
    color: #c5a47e;
}

.cta-section.container-fluid {
    padding-left: 0;
    padding-right: 0;
    background-color: #C7E2E1;
}

.cta-text-column h2, .cta-text-column p {
    color: var(--e-global-color-primary);
}

.cta-title b i {
    color: var(--e-global-color-primary);
}

.cta-button {
    background-color: var(--e-global-color-primary) !important;
    border-color: var(--e-global-color-primary) !important;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 15px;
}

.map-container-full-width {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.honeypot {
    display: none;
}

.map-iframe {
    border: 0;
}
