/* 
 * FilmeTC Custom Styles 
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Inter:wght@100..900&display=swap');

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.vertical-text-flip {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

#masthead.scrolled {
    height: 4rem;
    background-color: hsla(var(--background), 0.8);
    border-color: hsla(var(--foreground), 0.2);
}

/* Contact Form 7 Master Class Styles */
.wpcf7-form {
    width: 100%;
}

.wpcf7-form p {
    margin-bottom: 1.5rem;
}

.wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.5rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    outline: none;
}

.wpcf7-form-control:not(.wpcf7-submit):focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.wpcf7-submit {
    background: #FFD700 !important;
    color: #000 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    font-size: 0.75rem !important;
    padding: 1.25rem 3rem !important;
    border: none !important;
    border-radius: 0.75rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.wpcf7-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* Subscribe Form (Horizontal) */
.subscribe-form .wpcf7-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.subscribe-form .wpcf7-form p {
    margin-bottom: 0;
    flex: 1;
}

@media (max-width: 640px) {
    .subscribe-form .wpcf7-form {
        flex-direction: column;
    }
    .subscribe-form .wpcf7-form p {
        width: 100%;
    }
}
