:root {
    --base-width: 100vw;
}

body {
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: bold;
    text-align: center;
    background-color: #f8f6f2; 
    /* color: #333;  */
    color: #641E16; /*#666;*/
}

.container {
    max-width: var(--base-width);
    margin: 0 auto;
}

h1 {
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0;
}

h2 {
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

p {
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1em;
    font-weight: normal;
    margin-top: 0;
}

img {
    width: 100%;
    border-radius: 0px;
}

.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

#profile-image {
    width: 100%; 
    height: auto;
}

.on-image-button {
    position: absolute;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(201, 169, 166 , 0.7); 
    padding: 20px 0px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: calc(var(--base-width) - 60px);
}

.button, .service-button, .contact-button {
    display: block; 
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s ease; /* Add hover effect */
    
    /* width: calc(var(--base-width)-400); */
    margin-bottom: 10px; 
    min-width: 100px;
}

.button {
    background-color: #d8b9c3; /* Dusty rose */
}

.button:hover {
    background-color: #be8da3; /* Slightly darker on hover */
}

.services {
    display: inline-block; 
    width: 60%;
    margin-bottom: 30px;
}

.service-button {
    background-color: #C9A9A6;
}

.service-button:hover {
    background-color: #b38e8b;
}

.contacts {
    display: inline-block; 
    width: 60%;
    margin-bottom: 30px;
}

.contact-button {
    background-color: #95c1c7;
}

.contact-button:hover {
    background-color: #6ba9ad; 
}

/* Footer styles */
footer {
    font-size: 0.8em;
    color: #999; /* Example color */
}



/* Media Queries for responsiveness */
@media (min-width: 600px) {
    :root {
        --base-width: 600px; 
    }
}

.service-text p, 
.service-text li, 
.service-text ul,
.service-text ol  {
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    text-align: left;
}

.service-text-block {
    border: 1px solid #641E16; /* #333; */
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.service-text-button {
    font-weight: bold;
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: background-color 0.3s ease; /* Add hover effect */
    
    /* width: calc(var(--base-width)-400); */
    margin-bottom: 10px; 
    min-width: 100px;
    background-color: #C9A9A6;

}
.service-text-button:hover {
    background-color: #b38e8b;
}

ul, ol, ul li, ol li {
    padding-left: 0em;
    margin-left: 0.5em; 
}

