/* 
 Theme Name:   Carnikava.eu
 Theme URI:    
 Description:  Tema
 Author:       DRC
 Author URI:   https://drc.lv
 Template:     airi
 Version:      1.0

 /* == Add your own styles below this line ==
--------------------------------------------*/

/* =========================
   Split homepage
   ========================= */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body.split-home {
    margin: 0;
    padding: 0;
}

.split-home-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8vw;
    padding: 40px;
    box-sizing: border-box;
}

.split-home-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    max-width: 500px;
    transition: transform 0.25s ease;
}

.split-home-item img {
    display: block;
    width: 100%;
    height: auto;
}

.split-home-item:hover {
    transform: scale(1.04);
}

/* Telefoniem */
@media (max-width: 700px) {

    .split-home-container {
        flex-direction: column;
        gap: 50px;
        padding: 30px;
    }

    .split-home-item {
        width: 75vw;
        max-width: 350px;
    }
}