.text-shadow {
  text-shadow: 2px 2px 4px #000000;
}

#footer-custom {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    margin-top: 40px;
    border-radius: 0 0 12px 12px;
    font-size: 1em;
}

#hero-custom {
    background: url('imgs/macskam/p3.JPEG') center/cover no-repeat;
    border-radius: 16px;
    min-height: 220px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

#main-title-custom {
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 8px #222;
    margin: 0.2em 0;
}

#subtitle-custom {
    font-size: 2em;
    font-weight: 600;
    text-shadow: 1px 1px 6px #222;
    margin-bottom: 0.5em;
}

.form-label-custom {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 0.2em;
}

.form-input-custom {
    border: 1px solid #bbb;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 18px;
    font-size: 1em;
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
}

.form-textarea-custom {
    border: 1px solid #bbb;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 18px;
    font-size: 1em;
    width: 100%;
    max-width: 500px;
    min-height: 80px;
    resize: horizontal;
    box-sizing: border-box;
}

.form-legend-custom {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 0.5em;
}

.form-checkbox-custom {
    width: 20px;
    height: 20px;
}

.btn-reset-custom { 
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-reset-custom:hover {
    background: #b71c1c;
    color: #fff;
}

.btn-submit-custom {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-submit-custom:hover {
    background: green;
}