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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f4c900;
    color: #000;
    overflow-x: hidden;
}

/* HYPER LOGO – FLOATING TOP LAYER */
.hyper-logo {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 160px; /* adjust if needed */
    z-index: 100; /* ensures it stays ABOVE background image */
}

/* PAGE STRUCTURE */
.page-wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* LEFT PANEL BACKGROUND IMAGE */
.left-panel {
    flex: 1.3;

    /* 🔥 This is the large background image of the 9-shape + .h */
    background-image: url("../images/09_unit.png");
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover; /* FULL PANEL background */
}

/* RIGHT PANEL CONTENT */
.right-panel {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HEADLINE TEXT */
.hero-text {
    margin-bottom: 80px;
	line-height: 54px;
    font-family: "Avenir Regular", "Avenir Roman";
}

.tagline-line1 { font-size: 60px; font-weight: 300; }
.tagline-line2 { font-size: 68px; font-weight: 300; }
.tagline-line3 { font-size: 60px; font-weight: 300; }

/* FORM PANEL */
.form-card {
    background-color: rgba(255, 220, 20, 0.9);
    padding: 24px 32px;
    max-width: 420px;
    border-radius: 6px;
    margin-bottom: 32px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.form-card h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: "Avenir Regular", "Avenir Roman";
}

/* INPUTS */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-family: "Avenir Regular", "Avenir Roman";
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: none;
    background-color: #ffffffbb;
}

.form-group input:focus {
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.25);
}

/* STRONG BUTTON */
.btn-submit {
    width: 100%;
    padding: 16px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.btn-submit:hover {
    background-color: #222;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    font-family: "Avenir Regular", "Avenir Roman";
}

/* CONTACT + SOCIAL */
.contact-social {
    max-width: 420px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 32px;
    height: 32px;
    background-color: #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn img {
    width: 18px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .right-panel { padding: 40px; }
}

@media (max-width: 768px) {
    .page-wrapper { flex-direction: column; }

    .left-panel {
        height: 280px;
        background-position: center;
        background-size: contain;
    }

    .right-panel { padding: 24px; }

    .hyper-logo {
        width: 120px;
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .tagline-line1, .tagline-line3 { font-size: 26px; }
    .tagline-line2 { font-size: 32px; }
    .left-panel { height: 220px; }
}
