/* ========================= */
/* MAIN STYLES               */
/* ========================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

/* ========================= */
/* GDPR BANNER               */
/* ========================= */
#gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    border-top: 3px solid #8B1A1A;
    display: none;
}

.gdpr-content {
    max-width: 1100px;
    margin: 0 auto;
}

.gdpr-content h4 {
    margin-top: 0;
    color: #fff;
}

.us-hosting-note {
    font-size: 0.9em;
    margin-bottom: 15px;
    background: rgba(139, 26, 26, 0.2);
    padding: 10px;
    border-radius: 4px;
}

.cookie-options {
    margin-bottom: 20px;
}

.cookie-option {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
}

.cookie-option input[type="checkbox"] {
    margin-top: 3px;
    margin-right: 10px;
}

.cookie-option label {
    flex: 1;
    cursor: pointer;
}

.cookie-option label small {
    color: #666;
    display: block;
    margin-top: 5px;
}

.gdpr-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.gdpr-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.gdpr-buttons .accept-selected {
    background: #8B1A1A;
    color: white;
}

.gdpr-buttons .accept-selected:hover {
    background: #6d1515;
}

.gdpr-buttons .accept-all {
    background: #444;
    color: white;
}

.gdpr-buttons .accept-all:hover {
    background: #333;
}

.gdpr-buttons .reject-all {
    background: #ddd;
    color: #333;
}

.gdpr-buttons .reject-all:hover {
    background: #ccc;
}

/* ========================= */
/* HERO / PARALLAX           */
/* ========================= */
.hero-brand {
    position: absolute;
    top: 24px;
    left: 32px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 5;
}

.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background: #000;
}

.parallax-back {
    position: absolute;
    top: 0;
    left: 50%;
    width: 120%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-50%);
    z-index: 1;
    will-change: transform;
}

.parallax-front {
    position: absolute;
    bottom: -5%;
    left: 50%;
    width: 115%;
    min-height: 100%;
    object-fit: contain;
    transform: translateX(-50%);
    z-index: 2;
    will-change: transform;
}

.light-mask {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 65%,
        rgba(255,255,255,0.18) 0%,
        rgba(255,255,255,0.08) 25%,
        rgba(255,255,255,0.03) 40%,
        rgba(0,0,0,0.45) 70%
    );
    z-index: 3;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 4;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 3em;
    margin: 0;
}

/* ========================= */
/* CONTENT                   */
/* ========================= */
.container {
    width: 80%;
    max-width: 1100px;
    margin: 80px auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h1, h2 {
    color: #8B1A1A;
}

p, ul {
    color: #444;
    line-height: 1.7;
}

.highlight {
    font-weight: bold;
    color: #8B1A1A;
}

.photo {
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 4px;
}

.contact {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* ========================= */
/* REVEAL ANIMATION          */
/* ========================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= */
/* FOOTER                    */
/* ========================= */
.footer {
    margin: 60px 0 20px;
    text-align: center;
    color: #777;
    font-size: 0.9em;
}

.footer a {
    color: #8B1A1A;
    text-decoration: none;
    margin-left: 12px;
}

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

/* ========================= */
/* FORM STYLES               */
/* ========================= */
input, button {
    font-size: 1em;
}

/* MAUTIC FORM STYLE OVERRIDE */
.mauticform_wrapper {
    font-family: Arial, sans-serif !important;
}

.mauticform-label {
    font-weight: normal !important;
    color: #444 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.mauticform-input,
.mauticform-textarea {
    width: 100% !important;
    padding: 10px !important;
    border-radius: 4px !important;
    border: 1px solid #ccc !important;
    font-size: 1em !important;
    box-sizing: border-box !important;
}

.mauticform-button {
    background: #8B1A1A !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 24px !important;
    cursor: pointer !important;
    font-size: 1em !important;
    border-radius: 4px !important;
    margin-top: 10px !important;
    min-width: 150px !important;
    text-align: center !important;
}

.mauticform-button:hover {
    background: #6d1515 !important;
}

/* ========================= */
/* EMAIL ALIGNMENT FIX       */
/* ========================= */
.email-address {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    gap: 5px;
}

.email-address img {
    vertical-align: middle;
    height: 1em;
    width: auto;
}

/* ========================= */
/* ANIMATIONS                */
/* ========================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}