/*
Theme Name: Vaikla Custom Theme
Theme URI: https://www.vaikla.ee
Author: Sven-Erik Andresen
Description: Puhtale koodile ehitatud ja kiire custom WordPressi teema Vaikla Puhkekeskusele ja Ratsakeskusele.
Version: 1.0.0
Text Domain: vaikla-theme
*/

/* --- GLOBAALSED MUUTUJAD JA TUPPSTIILID --- */
:root {
    --c-bg: #e6e5df;
    --c-green: #6a7059;
    --c-green-dark: #4b523f;
    --c-text: #2c3325;
    --c-white: #ffffff;
    
    --radius-xl: 60px;
    --radius-lg: 40px;
    --radius-md: 20px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Üldised pealkirjad */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--c-text);
    margin: 0;
}