:root {
    --font-main: 'Sora', sans-serif;
    --color-bg: #f5f5f3;
    --color-text: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-text {
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.hero-text h1 {
    font-family: var(--font-main);
    font-size: 4rem;
    font-weight: 400; /* Sora Extra Bold */
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Floating Images Logic */
.floating-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    width: 150px;
    opacity: 0;
    transform: scale(0.5);
    animation: floatZoom infinite linear;
}

.float-item img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@keyframes floatZoom {
    0% {
        opacity: 0;
        transform: scale(0.2) translate(0, 0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: scale(1.5) translate(20px, -20px);
    }
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    background-color: var(--color-bg);
}

.contact-card {
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-card h2 {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.input-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

label {
    font-family: var(--font-main);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

input {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f9f9f9;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.2s ease;
}

input:focus {
    outline: none;
    border-color: var(--color-text);
    background: #fff;
}

.submit-btn {
    background-color: #100f0f;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    padding: 1rem;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    opacity: 0.8;
}