body{
    margin:0;
    font-family:Arial;
    color:white;
}

/* BACKGROUND IMAGE */
body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('imgs/orderbg.png');
    background-size:cover;
    background-position:center;
    z-index:-2;
}

/* DARK OVERLAY */
body::after{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    z-index:-1;
}

/* LAYOUT */
.order-container{
    display:flex;
    justify-content:center;
    padding:80px 20px;
}

/* GLASS CARD */
.glass{
    width:100%;
    max-width:850px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    padding:35px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.15);
}

/* HEADINGS */
h4{
    margin-top:25px;
    color:#f4c400;
}

/* INPUTS */
input, select, textarea {
    width:100%;
    padding:12px;
    margin:8px 0 12px;

    background:rgba(0,0,0,0.35);
    border:1px solid #f4c400;
    color:white;

    border-radius:10px;
    outline:none;
}

/* PLACEHOLDER FIX */
input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

/* DROPDOWN FIX */
select option {
    background:#111;
    color:white;
}

/* FOCUS EFFECT */
input:focus, select:focus, textarea:focus {
    border-color:#f4c400;
    box-shadow:0 0 0 2px rgba(244,196,0,0.2);
}

/* AUTOFILL FIX (Chrome) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color:white;
    -webkit-box-shadow:0 0 0px 1000px rgba(0,0,0,0.35) inset;
}

/* LABELS */
label.form-label {
    color:white;
    margin-top:10px;
    margin-bottom:5px;
    font-weight:500;
    display:block;
}

/* FILE INPUT CLEAN STYLE */
.file-input {
    width:100%;
}

/* CUSTOM FILE BUTTON */
.file-input::file-selector-button {
    background:#f4c400;
    border:none;
    padding:8px 14px;
    margin-right:12px;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
}

.file-input::file-selector-button:hover {
    background:white;
}

/* SUBMIT BUTTON */
.btn-submit{
    width:100%;
    padding:14px;
    background:#f4c400;
    border:none;
    border-radius:12px;
    font-weight:bold;
    margin-top:20px;
    cursor:pointer;
    transition:0.3s;
}

.btn-submit:hover{
    background:white;
    transform:translateY(-2px);
}

.navbar-custom {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 15px 0;
    z-index: 1000;

    transition: all 0.4s ease;
}

/* initial transparent state */
.navbar-custom {
    background: transparent;
}

/* scrolled state */
.navbar-custom.scrolled {
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

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

.logo {
    font-weight:700;
    color:white;
}

.nav-links a {
    color:white;
    margin-left:15px;
    text-decoration:none;
    transition:0.3s;
}

.nav-links a:hover {
    color:#f4c400;
}

/* =========================================
   MOBILE RESPONSIVE FIXES
========================================= */

@media (max-width: 992px){

    /* NAVBAR */
    .navbar-custom .container{
        flex-direction: column;
        gap: 12px;
    }

    .nav-links{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .nav-links a{
        margin-left:0;
        font-size:16px;
    }

    /* ORDER CONTAINER */
    .order-container{
        padding-top:140px;
    }

    /* GLASS CARD */
    .glass{
        padding:28px;
    }
}


/* PHONE */
@media (max-width: 768px){

    /* NAVBAR */
    .logo{
        text-align:center;
        font-size:22px;
    }

    .nav-links{
        text-align:center;
    }

    .nav-links a{
        font-size:15px;
    }

    /* ORDER FORM */
    .order-container{
        padding:130px 15px 40px;
    }

    .glass{
        padding:22px;
        border-radius:15px;
    }

    h2{
        font-size:28px;
    }

    h4{
        font-size:18px;
    }

    input,
    select,
    textarea{
        padding:11px;
        font-size:15px;
    }

    textarea{
        min-height:120px;
    }

    .btn-submit{
        padding:13px;
        font-size:16px;
    }

    /* TURNSTILE */
    .cf-turnstile{
        transform:scale(0.95);
        transform-origin:left center;
    }
}


/* EXTRA SMALL DEVICES */
@media (max-width: 480px){

    .order-container{
        padding:120px 10px 30px;
    }

    .glass{
        padding:18px;
    }

    h2{
        font-size:24px;
    }

    p{
        font-size:14px;
    }

    .nav-links{
        gap:6px;
    }

    .nav-links a{
        font-size:14px;
    }

    input,
    select,
    textarea{
        font-size:14px;
    }

    .btn-submit{
        font-size:15px;
    }

    /* TURNSTILE MOBILE SCALE */
    .cf-turnstile{
        transform:scale(0.82);
        transform-origin:left center;
    }
}