:root {
    --accent: #6a2a3a;
    --muted: #6b8b74;
    --bg: #ffffff;
    --surface: #f7f7f7;
    --max-width: 1100px;
    --radius: 12px;
    font-synthesis: none;
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter,Arial,sans-serif;
    color: #222;
    line-height: 1.5
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px
}

.site-header {
    border-bottom: 1px solid #eee;
    background: linear-gradient(90deg, #fff, #fbfbfb);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo {
    height: 64px;
    width: auto;
    border-radius: 6px;
    object-fit: contain
}

.brand-text h1 {
    font-family: "Playfair Display", serif;
    margin: 0;
    font-size: 20px;
    color: var(--accent)
}

.brand-text {
    font-family: "Playfair Display", serif;
    margin: 0;
    color: var(--accent)
}

.slogan {
    margin: 0;
    font-size: 13px;
    color: var(--muted)
}

.main-nav a {
    margin: 0 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600
}

.btn {
    background: #6b8b74;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .25s ease
}

    .btn:hover {
        background: #6a2a3a;
        color: #fff
    }

.btn-ghost {
    background: transparent;
    border: 2px solid #6b8b74;
    color: #6b8b74
}

    .btn-ghost:hover {
        background: #6a2a3a;
        border-color: #6a2a3a;
        color: #fff
    }

.simpleHero {
    padding: 40px 0;
    text-align: center
}

.simpleHeading {
    font-size: 20px;
    color: var(--muted);
    padding-bottom: 15px;
    font-weight:bold;
}

.hero {
    padding: 40px 0;
    background: #f9f9f9;
    text-align: center
}

    .hero h2 {
        font-family: "Playfair Display",serif;
        color: #6a2a3a
    }
    
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;         /* adjust as needed */
  height: 600px;        /* adjust as needed */
  background: url('assets/logoV1.jpg') no-repeat center;
  background-size: contain;
  opacity: 0.25;        /* faint / watermark look */
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1; /* ensure text stays above the faded logo */
}

.section h2, .section h3 {
    color: #6a2a3a;
    font-family: "Playfair Display",serif
}

.service-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 30px 0;
    padding: 20px;
    border-radius: 12px
}

    .service-item:nth-child(even) {
        flex-direction: row-reverse
    }

.service-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 10px
}

.service-text {
    flex: 1
}

.service-list {
    list-style: none;
    padding: 0;
    columns: 2
}

    .service-list li {
        margin: 6px 0;
        padding-left: 20px;
        position: relative
    }

        .service-list li::before {
            content: "✔";
            color: #6b8b74;
            position: absolute;
            left: 0
        }
/* contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start
}

.contact-card {
    padding: 18px;
    background: var(--surface);
    border-radius: 10px
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px
}

.site-footer {
    border-top: 1px solid #eee;
    padding: 15px;
    text-align: center;
    margin-top: 40px;
    background: var(--surface);
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease-out,transform .8s ease-out
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0)
    }

/* Service image hover zoom */
.service-image {
    overflow: hidden; /* Prevent overflow when scaling */
    border-radius: 10px;
}

    .service-image img {
        width: 100%;
        max-width: 420px;
        border-radius: 10px;
        transition: transform 0.4s ease, filter 0.4s ease;
    }

        .service-image img:hover {
            transform: scale(1.08); /* Zoom in */
            filter: brightness(1.05); /* Slight brightness boost */
        }


/* Scroll-to-top button */
#scrollTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background: #6b8b74;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 25%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

    #scrollTopBtn:hover {
        background: #6a2a3a;
    }


@media(max-width:768px) {
    .service-item {
        flex-direction: column
    }

        .service-item:nth-child(even) {
            flex-direction: column
        }
}
