/*
Theme Name: Offerra
Theme URI: https://offerra.sk
Author: Offerra Team
Author URI: https://offerra.sk
Description: Vlastna téma pre realitny portal Offerra
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: offerra
*/

/* Import ďalších CSS súborov */
@import url('css/main.css');
@import url('css/enhanced-style.css');
@import url('css/design-variations.css');
@import url('css/form-backgrounds.css');
@import url('css/section-backgrounds.css');
@import url('css/text-colors.css');

/* Základné štýly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

a {
    color: #2c5282;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #4299e1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c5282;
    line-height: 1.2;
}

/* Kontajnery */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Tlačidlá */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #4299e1;
    color: white;
}

.btn-primary:hover {
    background-color: #2c5282;
    text-decoration: none;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #2c5282;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
    text-decoration: none;
}

/* Formuláre */
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

/* Responzívny dizajn */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
    }
}
