html{
    --font-celtic:'Celtic', Arial, sans-serif;
    --font-arial:'Arial Rounded', Arial, sans-serif;
    --btn-color: #996533;
    --bg-color-brown: #996533;
    --white: #ffffff;
    --black: #000000;
    --dark-primary: #7a502a;
    --light-primary: #c49b76;
}

@font-face {
    font-family: 'Celtic';
    src: url('../fonts/CELTG___.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arial Rounded';
    src: url('../fonts/arlrdbd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


header {
    color: var(--dark-primary);
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

h1 {
    font-family: var(--font-celtic);
    font-size: 2.5rem;
    margin: 0;
}

h2 {
    font-family: var(--font-arial);
    color: var(--dark-primary);
    border-bottom: 2px solid var(--bg-color-brown);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

h3 {
    font-family: var(--font-celtic);
    color: var(--dark-primary);
    margin-top: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-primary);
    font-weight: bold;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.care-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--bg-color-brown);
    transition: transform 0.3s ease;
}

.care-item:hover {
    transform: translateY(-5px);
}

.care-item h3 {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-primary);
}

.special-section {
    background-color: var(--light-primary);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.special-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: var(--dark-primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.special-section h2 {
    color: var(--dark-primary);
    border-bottom: 2px solid var(--dark-primary);
}

.special-section p {
    color: var(--white);
}

.skeleton-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.note {
    background-color: #f8f4e3;
    border-left: 5px solid var(--dark-primary);
    padding: 1rem;
    margin: 1.5rem 0;
    font-style: italic;

}

.note p{
    color: var(--dark-primary);
}

.emphasis {
    font-weight: bold;
    color: var(--dark-primary);
}

.img-01,
.img-02{
    padding: 1rem;
}

.care-item-img{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    
}


.care-item-img img{
    width: 50%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .care-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        flex-direction: column;
    }

    .image-placeholder img {
        width: 80%;
    }
}