/*
Theme Name: Dark Starlings
Theme URI: https://darkstarlings.com
Description: Custom theme for Dark Starlings
Author: Dark Starlings
Version: 1.0
Text Domain: darkstarlings
*/

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

body {
    background: #000;
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== SPLASH PAGE ===== */
.splash {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    cursor: pointer;
}

.splash-video {
    max-width: 400px;
    width: 80%;
    display: block;
}

.splash-title {
    margin-top: 40px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #cc0000;
    text-transform: uppercase;
    text-align: center;
    animation: fadeInUp 1.5s ease 0.5s both;
}

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

/* ===== UNMUTE BUTTON ===== */
.splash {
    position: relative;
}

.unmute-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, background 0.3s;
    z-index: 10;
}

.unmute-btn:hover {
    border-color: #cc0000;
    background: rgba(204,0,0,0.3);
}

.unmute-btn.unmuted {
    border-color: rgba(255,255,255,0.5);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 40px 20px;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.contact-form h2 {
    color: #cc0000;
    font-size: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.contact-field {
    margin-bottom: 25px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: 3px solid #fff;
    border-radius: 0;
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #cc0000;
}

.contact-field textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-submit {
    width: 100%;
    padding: 16px;
    background: #cc0000;
    color: #fff;
    border: none;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-submit:hover {
    background: #990000;
}

.form-message {
    padding: 12px;
    margin-top: 15px;
    text-align: center;
    display: none;
}

.form-message.success {
    color: #4caf50;
    display: block;
}

.form-message.error {
    color: #cc0000;
    display: block;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.back-link:hover {
    color: #cc0000;
}
