/* Pamata iestatījumi visai lapai */



/* Mazs ekrānu (telefonu) pielāgojums, lai teksts nebūtu par lielu */
@media (max-width: 480px) {
    h1 {
        font-size: 24px;
        /* Telefonā teksts automātiski kļūs mazāks un glītāks */
    }
}



body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Galvenais lapas rāmis */
.shop-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 480px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Galvenais virsraksts */
h1 {
    color: #1a2a3a;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* Figūru animācijas konteiners */
.animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 10px;
}

/* Figūru izmēri un pamata izskats */
.circle,
.rhombus,
.square {
    width: 60px;
    height: 60px;
    transition: transform 0.05s linear;
}

/* Oranžs aplis */
/* Oranžs aplis ar tumšu malu un divkrāsu fonu, lai redzētu griešanos */
.circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #e67e22 50%, #d35400 50%);
    border-radius: 50%;
    border: 3px solid #2c3e50;
    box-sizing: border-box;
}



/* Zils trijstūris */
.triangle {
    width: 60px;
    height: 60px;
    background-color: #2980b9;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    /* Šis izgriež perfektu trijstūri */
}




/* Tumšs kvadrāts */
.square {
    width: 60px;
    height: 60px;
    background-color: #2c3e50;
}

/* Pakalpojumu bloki */
.service-section {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-left: 5px solid #d35400;
}

.service-section.laser {
    border-left-color: #2980b9;
}

h2 {
    color: #2c3e50;
    font-size: 19px;
    margin: 0 0 8px 0;
}

p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #62748d;
    margin: 0;
}

/* Kontaktu sadaļa */
.contact-footer {
    margin-top: 35px;
    border-top: 1px solid #eef2f5;
    padding-top: 25px;
}

.contact-footer p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 8px;
}

/* Kontaktu pogu izkārtojums */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 15px;
}

/* Universāls stils abām pogām (gan e-pastam, gan telefonam) */
.contact-item {
    display: inline-block;
    color: #ffffff;
    background: #2c3e50;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    width: 80%;
    max-width: 250px;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
    text-align: center;
}