/* Reset some defaults */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 700;
    font-size: 1.8rem;
    color: #b76e79;
    margin-bottom: 0.5rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.tagline {
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    font-size: 1.1rem;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #b76e79;
    outline: none;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(183,110,121,0.85), rgba(183,110,121,0.85)), 
    url('images/syringedecal.png') no-repeat center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5em;
}

.about-hero-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: block;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(183, 110, 121, 0.2);
}

/* === MOBILE ADAPTATION === */
@media (max-width: 600px) {
    .hero {
        padding: 80px 15px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #a65b65;
    outline: none;
}

/* Services */
.services {
    margin: 3rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    color: #b76e79;
    margin-bottom: 2rem;
}

.about p {
    text-align: center;
    font-size: 1.5rem;
    color: #b76e79;
    margin-bottom: 2rem;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.services-list li {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(183, 110, 121, 0.2);
    transition: box-shadow 0.3s ease;
}

.services-list li:hover,
.services-list li:focus-within {
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.4);
}

.services-list h4 {
    margin-bottom: 0.8rem;
    color: #b76e79;
}

/* Contact */
.contact {
    text-align: center;
    margin-bottom: 3rem;
}

.contact a {
    color: #b76e79;
    text-decoration: none;
    font-weight: 600;
}

.contact a:hover,
.contact a:focus {
    text-decoration: underline;
    outline: none;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    font-weight: 600;
    color: #b76e79;
    text-decoration: none;
    border: 2px solid #b76e79;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover,
.social-links a:focus {
    background-color: #b76e79;
    color: #fff;
    outline: none;
}

/* Footer */
.site-footer {
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }
}
