:root {
    --brand-accent: #b96d8a;
    --brand-dark: #232323;
    --brand-bg: #f9f6f7;
    --brand-card: #fff;
    --brand-gray: #e5e5e5;
}
body {
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--brand-bg);
    padding-top: 85px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: var(--brand-accent);
}
.brand-logo {
    height: 62px;
    vertical-align: middle;
}
.nav-cta {
    background: var(--brand-accent);
    color: #fff !important;
    border-radius: 20px;
    padding: 8px 24px;
    font-weight: 600;
    margin-left: 10px;
    transition: background 0.2s;
}
.nav-cta:hover {
    background: var(--brand-dark);
    color: #fff !important;
}
.w3-bar {
    background: var(--brand-card) !important;
    color: var(--brand-dark) !important;
    border-bottom: 1px solid var(--brand-gray);
}
.w3-bar .w3-bar-item {
    font-size: 1.08em;
    color: var(--brand-dark) !important;
}
.w3-bar .w3-bar-item:hover {
    color: var(--brand-accent) !important;
    background: var(--brand-gray) !important;
}
.hero {
    background: linear-gradient(90deg, var(--brand-bg) 60%, #f1e4ea 100%);
    text-align: center;
    padding: 80px 20px 40px 20px;
}
.hero-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--brand-accent);
    letter-spacing: 2px;
    margin-top: 14px;
}
.hero-sub {
    font-size: 1.18rem;
    color: var(--brand-dark);
    font-family: 'Poppins', Arial, sans-serif;
    margin-top: 12px;
    margin-bottom: 32px;
}
.hero-cta {
    background: var(--brand-accent);
    color: #fff !important;
    border: none;
    border-radius: 25px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.hero-cta:hover {
    background: var(--brand-dark);
    color: #fff;
}
.services-section {
    padding: 64px 0 32px 0;
    background: var(--brand-bg);
}
.services-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
}
.service-card {
    flex: 1 1 300px;
    max-width: 340px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(35,35,35,0.04);
    padding: 28px 22px 22px 22px;
    margin-bottom: 0;
    background: var(--brand-card);
    border: 1.5px solid var(--brand-gray);
    transition: box-shadow 0.2s, border 0.2s;
}
.service-card:hover {
    box-shadow: 0 4px 24px rgba(185,109,138,0.13);
    border: 1.5px solid var(--brand-accent);
}
.service-price {
    color: var(--brand-accent);
    font-size: 1.1em;
    font-weight: 600;
    float: right;
}
.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--brand-accent);
}
.service-card p {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--brand-dark);
}
@media (max-width: 900px) {
    .services-flex { gap: 16px; }
    .service-card { max-width: 100%; min-width: 180px; }
}
@media (max-width: 600px) {
    .services-flex { flex-direction: column; align-items: stretch; gap: 16px; }
    .service-card { min-height: unset; }
    body { padding-top: 110px; }
}
.gallery-section {
    background: var(--brand-bg);
    padding: 64px 0 40px 0;
    text-align: center;
}
.slider-container {
    position: relative;
    max-width: 330px;
    margin: 0 auto;
}
.slider-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 2px 16px #b96d8a33;
    background: #fff;
    transition: box-shadow 0.25s, transform 0.18s;
    border: 4px solid #fff;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--brand-accent);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 8px #b96d8a22;
    cursor: pointer;
    font-size: 1.6em;
    z-index: 2;
    transition: background 0.18s, color 0.18s;
}
.slider-arrow:hover {
    background: var(--brand-accent);
    color: #fff;
}
.slider-arrow.left { left: -20px; }
.slider-arrow.right { right: -20px; }
.slider-dots {
    margin-top: 18px;
    text-align: center;
}
.slider-dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background: #e5e5e5;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s;
}
.slider-dot.active {
    background: var(--brand-accent);
}
@media (max-width:500px) {
    .slider-container { max-width: 97vw; }
    .slider-img { height: 170px;}
    .slider-arrow.left { left: 0; }
    .slider-arrow.right { right: 0; }
}
.contact-simple {
    background: var(--brand-card);
    padding: 64px 0 32px 0;
    text-align: center;
}
.contact-simple h1 {
    color: var(--brand-accent);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}
.contact-simple .fa {
    color: var(--brand-accent);
    margin-right: 8px;
}
.contact-simple p {
    font-size: 1.25em;
    margin: 18px 0;
    font-family: 'Poppins', Arial, sans-serif;
}
.contact-simple a, .contact-simple span {
    color: #b96d8a;
    font-weight: bold;
    text-decoration: none;
}
.contact-simple a:hover {
    text-decoration: underline;
}
footer {
    background: var(--brand-bg);
    color: var(--brand-dark);
    letter-spacing:2px;
    font-family: 'Poppins', Arial, sans-serif;
}
#mainNavbar {
    transition: top 0.33s cubic-bezier(0.77,0,0.18,1);
    z-index: 100;
}
#mainNavbar.hide-navbar {
    top: -100px !important;
}
.w3-top { top: 0; }
