/* 1. DEFINÍCIA PREMENNÝCH */

:root {
    --primary: #4b2d0c;
    --primary-light: #633e14;
    --text: #222;
    --text-light: #555;
    --bg: #ffffff;
    --input-bg: #fdfdfd;
    --border: #ddd;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}


/* 2. ZÁKLADNÝ RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}


/* 3. LAYOUT */

.container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}


/* 4. HEADER A LOGO */

.header {
    margin-bottom: 20px;
}

.logo img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* 5. TEXTY */

h1 {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}


/* 6. CTA TLAČIDLÁ (VEDĽA SEBA) */

.cta-buttons {
    margin-bottom: 50px;
    /* Medzera pod tlačidlami (pred čiarou/formulárom) */
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    /* Drží tlačidlá v jednom riadku */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.cta-icon {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}


/* 7. FORMULÁR */

.form {
    max-width: 500px;
    margin: 0 auto 50px;
    display: grid;
    gap: 18px;
    text-align: left;
}

label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

input,
textarea {
    margin-top: 6px;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    background: var(--input-bg);
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(75, 45, 12, 0.1);
}

button[type="submit"] {
    margin-top: 10px;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

button[type="submit"]:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}


/* 8. KONTAKT KONATEĽA */

.director-contact {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    padding-top: 10px;
    margin-bottom: 20px;
}

.director-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.director-contact a:hover {
    text-decoration: underline;
}

.borderline {
    border-top: 1px solid #eee;
}


/* 9. PÄTIČKA */

.footer {
    margin-top: auto;
    padding: 30px 0;
    font-size: 13px;
    color: #999;
}


/* 10. MOBILNÁ RESPONSIVITA */

@media (max-width: 600px) {
    .container {
        padding: 30px 15px;
    }
    h1 {
        font-size: 22px;
    }
    .cta-text {
        font-size: 16px;
    }
    .cta-buttons {
        gap: 8px;
        margin-bottom: 40px;
    }
    .cta-button {
        padding: 10px 12px;
        font-size: 13px;
        flex: 1;
        /* Rozdelia si šírku 50/50 */
    }
    .cta-icon {
        width: 18px;
        height: 18px;
        margin-right: 5px;
    }
    .logo img {
        max-width: 100%;
    }
}