 /* ─────────────────────────────
       FONT SETUP
    ───────────────────────────── */
    @font-face {
        font-family: 'TStarProBold';
        src: url('fonts/TStarProBold.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: 'TStarProLight';
        src: url('fonts/TStarProLight.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'TStarProLight', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        height: 100vh;
        overflow: hidden;
    }

    .background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('babckground.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        z-index: 0;
    }

    /* ─────────────────────────────
       LOGO
    ───────────────────────────── */
    .top-logo {
        position: fixed;
        top: 30px;
        left: 40px;
        z-index: 100;
    }

    .top-logo img {
        height: auto;
        width: 160px;
        padding: 0;
        border-radius: 0;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important; /* no shadow */
        display: block;
    }

    /* ─────────────────────────────
       TAGLINE – DESKTOP
    ───────────────────────────── */
    .left-tagline {
        position: fixed;
        left: 60px;
        top: 60%;
        transform: translateY(-40%);
        z-index: 50;
        max-width: 600px;
    }

    .left-tagline h2 {
        font-family:  'TStarProLight', sans-serif;
        font-size: 2rem;
        font-weight: normal;
        color: #ffffff;
        line-height: 1.3;
        margin-bottom: 8px;
        text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6);
        letter-spacing: 1px;
    }

    /* ─────────────────────────────
       LAYOUT CONTAINER
    ───────────────────────────── */
    .container {
        position: relative;
        z-index: 1;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        padding: 40px;
        overflow-y: auto;
    }

    /* ─────────────────────────────
       CONTENT BOX (NO FRAME)
    ───────────────────────────── */
    .content-box {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 50px 45px;
        border-radius: 0;
        border: none !important;
        box-shadow: none !important;
        max-width: 550px;
        width: 100%;
        text-align: center;
    }

    h1 {
        font-family: 'TStarProBold', 'TStarProLight', sans-serif;
        font-size: 2.8rem;
        color: #ffffff;
        margin-bottom: 15px;
        font-weight: normal;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    }

    .subtitle {
        font-size: 1.05rem;
        color: #f5f5f5;
        margin-bottom: 40px;
        line-height: 1.6;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
    }

    /* ─────────────────────────────
       FORM
    ───────────────────────────── */
    .form-group {
        margin-bottom: 20px;
        text-align: left;
    }

    .form-row {
        display: flex;
        gap: 15px;
    }

    .form-group label {
        font-size: 0.95rem;
        color: #ffffff;
        font-weight: normal;
        font-family: 'TStarProLight', sans-serif;
        margin-bottom: 8px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .form-group input {
        width: 100%;
        padding: 14px 18px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        font-size: 1rem;
        font-family: 'TStarProLight', sans-serif;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #ffffff;
    }

    .form-group input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .submit-btn {
        width: 100%;
        padding: 16px;
        background: #9B7D64;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'TStarProBold', 'TStarProLight', sans-serif;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(44, 95, 45, 0.4);
        transition: all 0.3s ease;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(44, 95, 45, 0.5);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

    .message {
        margin-top: 20px;
        padding: 15px;
        border-radius: 12px;
        display: none;
        font-weight: 500;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .message.success {
        background: rgba(212, 237, 218, 0.9);
        color: #155724;
        border: 1px solid rgba(195, 230, 203, 0.9);
    }

    .message.error {
        background: rgba(248, 215, 218, 0.9);
        color: #721c24;
        border: 1px solid rgba(245, 198, 203, 0.9);
    }

    .social-links {
        margin-top: 30px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    .social-links p {
        color: #f0f0f0;
        font-size: 0.95rem;
        font-family: 'TStarProLight', sans-serif;
    }

    /* ─────────────────────────────
       TABLETS & MOBILES (<= 1024px)
       → Tagline under logo, before form
    ───────────────────────────── */
    @media (max-width: 1024px) {

        body {
            height: auto;
            overflow: auto;
        }

        .top-logo {
            position: relative;
            top: 20px;
            left: 20px;
        }

        .top-logo img {
            height: auto;
        }

        /* Tagline now flows under logo */
        .left-tagline {
            position: relative;
            top: 0;
            left: 0;
            margin: 20px 20px 10px 20px;
            max-width: 90%;
            transform: none;
            text-align: center;
            z-index: 1;
        }

        .left-tagline h2 {
            font-size: 1.3rem;
            line-height: 1.3;
        }

        .container {
            position: relative;
            height: auto;
            align-items: center;
            padding: 20px;
            padding-top: 10px;
            overflow: visible;
        }

        .content-box {
            padding: 40px 30px;
        }

        .form-row {
            flex-direction: column;
            gap: 0;
        }
    }

    /* ─────────────────────────────
       PHONES (<= 768px)
    ───────────────────────────── */
    @media (max-width: 768px) {

        .top-logo {
            margin-bottom: 10px;
        }

        .top-logo img {
            height: auto;
			padding-bottom:35px;
        }

        .left-tagline {
            margin: 15px 15px 5px 15px;
            max-width: 92%;
        }

        .left-tagline h2 {
            font-size: 1.05rem;
        }

        .container {
            padding: 16px;
        }

        h1 {
            font-size: 2.3rem;
        }
    }

    /* ─────────────────────────────
       SMALL PHONES (<= 480px)
    ───────────────────────────── */
    @media (max-width: 480px) {

        .top-logo img {
            height: auto;
        }

        .left-tagline {
            margin: 12px 12px 4px 12px;
            max-width: 94%;
        }

        .left-tagline h2 {
            font-size: 0.95rem;
        }

        .container {
            padding: 14px;
        }

        .content-box {
            padding: 30px 22px;
        }

        h1 {
            font-size: 2rem;
        }
    }
	
	/* LANGUAGE SWITCH BUTTON */
.lang-switch {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 150;
    font-family: 'TStarProBold', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.3s;
}

.lang-switch:hover {
    background: rgba(0, 0, 0, 0.55);
}

/* MOBILE FRIENDLY */
@media (max-width: 768px) {
    .lang-switch {
        top: 15px;
        right: 15px;
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}
