/*
Theme Name: Adományozás MVGYOSZ
Theme URI: https://adomany.mvgyosz.hu
Description: Egyszerű landing téma az MVGYOSZ adományozási oldalhoz
Version: 1.0
Author: MVGYOSZ
Text Domain: adomany-mvgyosz
*/

/* Reset és alapok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #333333;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

/* Navigáció */
.site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.site-navigation li {
    margin-left: 30px;
}

.site-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-navigation a:hover {
    color: #ffc042;
}

/* Fő tartalom */
.site-main {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333333;
    text-align: center;
}

.page-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Fluent Forms űrlap stílusok */
.fluentform {
    margin-top: 40px;
}

/* Linkek */
a {
    color: #066aab;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Gombok */
.button,
button,
input[type="submit"] {
    background-color: #066aab;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    background-color: #055589;
    text-decoration: none;
    color: #ffffff;
}

/* Footer */
.site-footer {
    background-color: #333333;
    color: #ffffff;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-content a {
    color: #ffc042;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Responsivitás */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .site-navigation ul {
        flex-direction: column;
        text-align: center;
    }

    .site-navigation li {
        margin: 10px 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .site-main {
        padding: 40px 0;
    }
}
