body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #800000; /* bordo fons */
    color: #000;
    font-size: 24px;
    line-height: 1.8;
}

.hero {
    background: #800000; /* īsti bordo */
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 70px; /* liels virsraksts desktop */
    margin-bottom: 25px;
}

.hero p {
    font-size: 30px; /* liels apraksta teksts desktop */
    max-width: 900px;
    margin: 15px auto;
}

/* responsīvais teksts mazākiem ekrāniem */
@media(max-width: 768px){
    .hero h1 { font-size: 48px; }
    .hero p { font-size: 24px; }
}

.hero-photo img {
    max-width: 280px;
    border-radius: 50%;
    border: 4px solid #25D366;
    display: block;
    margin: 30px auto 0 auto;
}

main {
    max-width: 950px;
    margin: auto;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
}

section {
    margin-bottom: 45px;
}

h2 {
    font-size: 38px;
    color: #800000;
}

h3 {
    font-size: 28px;
}

ul {
    padding-left: 25px;
}

.prices li {
    font-size: 24px;
}

.cta {
    display: inline-block;
    padding: 18px 35px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 26px;
    border-radius: 8px;
    margin-top: 20px;
}

.cta:hover {
    background: #1da851;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
}

.gallery img {
    width: 280px;
    border-radius: 10px;
    border: 2px solid #800000;
}

.whatsapp-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.15); }

footer {
    text-align: center;
    background: #800000;
    color: white;
    padding: 30px;
    font-size: 20px;
}

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