html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Merriweather', serif;
    background: url("./images/bg.jpeg");
    background-size: cover;
    color: #3b1e1e;
    display: flex;
    flex-direction: column;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.5);
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

nav ul li a.active {
    color: #69222c;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: 1rem;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background: #3b1e1e;
}

@media (max-width: 768px) {
    header {
        justify-content: flex-start;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 1rem;
        border-radius: 8px;
    }

    nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }
}

main {
    text-align: center;
    padding: 4rem 1rem;
    flex: 1;
}

main img {
    max-width: 300px;
    border-radius: 50%;
}

main h2 {
    margin: 0.5rem 0;
    color: #7a4a2b;
    font-weight: 500;
}

main p {
    max-width: 600px;
    margin: 1rem auto;
    line-height: 1.6;
    font-size: 1.2rem;
}

.services {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Center align all text inside */
}

.services h3 {
    text-align: center;
    color: #69222c;
    margin-bottom: 2rem;
}

.service-item {
    margin-bottom: 2.5rem;
}

.service-item img {
    width: 100px; /* slightly larger */
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto; /* Center the image */
}

.service-item h4 {
    margin: 0 0 0.5rem 0;
    color: #69222c;
    font-size: 1.3rem;
}

.service-item p {
    max-width: 600px;
    margin: 0 auto; /* Center paragraph within */
    line-height: 1.5;
}


.logo img {
    height: 80px;
    width: auto;
}

footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
  background-color: #69222c;
}
footer p {
    color: #f2d80c;
}

footer a {
  color: #e2cba1;
  text-decoration: none;
}

footer a[href^="tel"] {
  color: #e2cba1;      /* same color as text */
  text-decoration: none; 
}


footer .copyright {
  color: #ccc; /* slight gray */
  font-size: 0.9rem;
  margin-top: 0.5rem;
}