/* NOXA FILM Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --black: #000000;
    --deep-black: #0a0a0a;
    --gold: #d4af37;
    --light-gold: #f8e9a1;
    --white: #ffffff;
    --transition-slow: 0.7s ease;
    --transition-medium: 0.5s ease;
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--white);
}

a {
    text-decoration: none;
    color: var(--white);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--white);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: background-color var(--transition-medium);
}

.nav.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo span {
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content */
main {
    padding: 80px 0 0 0;
}

.header-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 20px;
    color: var(--white);
}

.subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 300;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
}

/* Form Styles */
form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: var(--white);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--white);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-group label {
    display: inline-block;
    margin-right: 20px;
    margin-top: 0;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px 30px;
    margin-top: 30px;
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

.guidelines {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
}

.guidelines h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.guidelines ul {
    list-style-type: none;
    padding-left: 0;
}

.guidelines li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
}

.guidelines li:before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

.note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Footer Styles */
.footer {
    padding: 50px 0;
    background-color: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--white);
    border-color: var(--white);
}

.social-link i {
    font-size: 14px;
    color: var(--white);
    transition: color var(--transition-fast);
}

.social-link:hover i {
    color: var(--black);
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    /* Add any specific styles for this breakpoint */
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 15px;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
