/* ========================================
   KONTAKT PAGE STYLES
   Migrated from global.css
======================================== */
/* --- CONTACT (Kontakt.html) --- */
.contact-split-section {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    min-height: 100vh;
    background-color: var(--bg-color);
    padding-top: 150px;
    border-top: 1px solid var(--line-color);
}

.contact-info-col {
    padding: 0 5vw 100px 5vw;
    border-right: 1px solid var(--line-color);
    position: relative;
}

.info-sticky-content {
    position: sticky;
    top: 150px;
}

.contact-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    color: var(--text-main);
    line-height: 0.95;
    margin: 0 0 60px 0;
}

.info-block {
    margin-bottom: 40px;
}

.info-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-val,
.info-link {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(232, 224, 213, 0.9);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.info-link:hover {
    color: var(--accent);
}

.social-row {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(232, 224, 213, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--text-main);
}

.social-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.social-btn:hover {
    background-color: var(--text-main);
    border-color: var(--text-main);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.contact-form-col {
    padding: 0 5vw 100px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mad-libs-form {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.2vw, 2.5rem);
    color: var(--text-main);
    line-height: 1.5;
    width: 100%;
}

.sentence-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.text-part {
    white-space: nowrap;
}

.dot {
    color: var(--accent);
    margin-left: -10px;
}

.spacer {
    height: 30px;
}

.progressive-reveal {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out, opacity 0.8s ease-in-out;
    will-change: max-height, opacity;
}

.progressive-reveal.visible {
    max-height: 2000px;
    opacity: 1;
}

.b2b-group {
    max-height: 200px;
    opacity: 1;
    overflow: hidden;
    transition: all 0.5s ease;
}

.b2b-group.hidden {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
}

.inline-input {
    background-color: transparent !important;
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(232, 224, 213, 0.3);
    color: var(--accent);
    font-family: inherit;
    font-size: inherit;
    padding: 5px 0;
    min-width: 250px;
    flex-grow: 1;
    outline: none;
    border-radius: 0;
    transition: border-color 0.3s;
    -webkit-appearance: none;
}

.inline-input:focus {
    border-bottom-color: var(--accent);
}

.inline-input::placeholder {
    color: rgba(232, 224, 213, 0.15);
    font-style: italic;
}

.submit-wrapper {
    margin-top: 60px;
}

.submit-btn {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 20px 50px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

/* Custom Select */
.custom-select-container {
    position: relative;
    display: inline-block;
    min-width: 300px;
    flex-grow: 1;
    font-family: inherit;
    z-index: 500;
}

.select-selected {
    background-color: transparent;
    color: var(--accent);
    border-bottom: 1px solid rgba(232, 224, 213, 0.3);
    padding: 5px 30px 5px 0;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.select-selected:after {
    content: "¡";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--secondary);
    transition: transform 0.3s;
}

.select-selected.select-arrow-active:after {
    transform: translateY(-50%) rotate(180deg);
}

.select-items {
    position: absolute;
    background-color: #1C222E;
    border: 1px solid var(--line-color);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    margin-top: 5px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.select-hide {
    display: none;
}

.select-items div {
    color: var(--text-main);
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    transition: background-color 0.2s, color 0.2s;
}

.select-items div:last-child {
    border-bottom: none;
}

.select-items div:hover {
    background-color: var(--accent) !important;
    color: #1C222E !important;
}

