* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

header {
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 2.5rem;
    color: #d16b6b;
    font-weight: 700;
}

header p {
    font-size: 1.2rem;
    color: #ccc;
}

#call {
    text-align: center;
    margin-top: 10px;
}

#call .phone a {
    font-size: 1.5rem;
    color: #d16b6b;
    font-weight: 700;
    text-decoration: none;
}

#call .call-button {
    display: none;
    background-color: #d16b6b;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
}

#call .call-button a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

#call .call-button:hover {
    background-color: #b34848;
}

@media (max-width: 768px) {
    #call .phone {
        display: none;
    }
    #call .call-button {
        display: inline-block;
    }
}

main {
    width: 100%;
    max-width: 900px;
}

section {
    margin: 40px 0;
}

section h2 {
    text-align: center;
    color: #d16b6b;
    margin-bottom: 20px;
    font-size: 2rem;
}

section p {
    text-align: center;
    color: #ccc;
    margin-bottom: 20px;
}

section a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s;
}

section a:hover {
    color: #d16b6b;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    background-color: #333;
}

.card h3 {
    color: #d16b6b;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.card p {
    color: #ccc;
    font-size: 1rem;
    text-align: center;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.arrow-hint {
    display: block;
    margin-top: 15px;
    color: #d16b6b;
    font-weight: bold;
    text-align: center;
}

#gallery {
    margin: 40px 0;
    width: 100%;
    overflow: hidden;
}

.carousel {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}



.img-container {
    width: 250px;    
    height: 250px;
    padding: 5px

}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    border-radius: 12px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

footer {
    margin: 40px 0;
    text-align: center;
    color: #ccc;
}

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