@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7e6e1;
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

header {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid #d17f97;
}

header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #d17f97;
}

header h1 {
    color: #d17f97;
    font-size: 3rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    gap: 15px;
    padding: 20px 0;
}

nav ul li a {
    text-decoration: none;
    font-size: 1.25rem;
    color: #d17f97;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #5a5a5a;
}

.section {
    padding: 60px 0;
    text-align: center;
}

.section h2 {
    color: #d17f97;
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.contact-info p a {
    color: #d17f97;
    text-decoration: none;
}

.contact-info p a:hover {
    text-decoration: underline;
}

#visitor-count {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border: 1px solid #d17f97;
    border-radius: 5px;
    font-weight: bold;
}

footer {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #d17f97;
}

footer p {
    font-size: 0.875rem;
    color: #555;
}



  