:root {
    --bg-color: #ffffff; /* Pure white base */
    --text-primary: #111827;
    --text-secondary: rgba(0, 0, 0, 0.65);
    --accent-color: #F25511;
    --accent-gradient: linear-gradient(135deg, #FF912E, #F25511, #9F163C);
    --card-bg: rgba(255, 255, 255, 0.8);
    --card-border: rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}



/* Navbar */
.navbar {
    padding: 2rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.logo-container .logo {
    height: 36px;
    width: auto;
}

.social-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

.social-handle {
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(to right, 
        var(--text-primary) 0%, var(--text-primary) 50%, 
        #f09433 60%, #e6683c 70%, #dc2743 80%, #cc2366 90%, #bc1888 100%
    );
    background-size: 250% 100%;
    background-position: 0% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-handle:hover {
    background-position: 100% 0;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem 5% 5rem;
    min-height: calc(100vh - 100px);
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

/* Left Content */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(242, 85, 17, 0.1);
    color: #FF912E;
    border: 1px solid rgba(242, 85, 17, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    width: max-content;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    display: flex;
    flex-direction: column;
}

.title-top-line {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.title-prefix {
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1;
}

.title-main {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.title-highlight {
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 1;
    margin-top: -0.25rem;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Form */
.form-container {
    animation: fadeInUp 0.8s ease-out 0.6s both;
    margin-bottom: 3rem;
}

.input-group {
    display: flex;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 0.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 500px;
}

.input-group:focus-within {
    border-color: var(--accent-color);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    outline: none;
    font-family: inherit;
}

.input-group input::placeholder {
    color: #71717a;
}

.submit-btn {
    background: var(--accent-gradient);
    border: none;
    padding: 0 2rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
}

.btn-text-wrapper {
    display: inline-flex;
    overflow: hidden;
    height: 24px;
}

.btn-text-inner {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 24px;
}

.submit-btn:hover .btn-text-inner {
    transform: translateY(-80%);
}

.submit-btn:hover {
    transform: scale(1.03);
    box-shadow: none;
}


.submit-btn:active {
    transform: scale(0.97);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.5rem;
}

.form-message.success {
    color: #4ade80;
}

.form-message.error {
    color: #f87171;
}

/* Right Content - Image Grid */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    transform: translateY(30px);
    opacity: 0;
    animation: floatUp 0.8s ease-out forwards;
    animation-delay: calc(0.5s + var(--delay));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}



.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .title-main {
        font-size: 3.5rem;
    }
    .title-prefix {
        font-size: 2.25rem;
    }
    .title-highlight {
        font-size: 4.5rem;
    }
    .hero-section {
        gap: 2rem;
        padding-bottom: 2rem;
    }

}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem 5%;
        justify-content: space-between;
    }
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2.5rem 5% 3rem;
        text-align: center;
        gap: 1.5rem;
    }
    .hero-left {
        align-items: center;
    }
    .badge {
        margin: 0 auto 1.5rem;
    }
    .title-top-line {
        justify-content: center;
    }
    .title-main {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }
    .title-prefix {
        font-size: 1.75rem;
    }
    .title-highlight {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        margin: 0 auto 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 600px;
    }
    .form-container {
        width: 100%;
        max-width: 500px;
        margin-bottom: 0;
    }
    .input-group {
        margin: 0 auto;
        width: 100%;
    }
    .image-grid {
        margin-top: 0;
        max-width: 100%;
        gap: 1rem;
    }

}

@media (max-width: 480px) {
    .title-main {
        font-size: 2.25rem;
    }
    .title-prefix {
        font-size: 1.5rem;
    }
    .title-highlight {
        font-size: 2.75rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 0.75rem;
        padding: 0;
    }
    .input-group input {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 12px;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    .submit-btn {
        width: 100%;
        padding: 1rem;
        justify-content: center;
        border-radius: 12px;
    }
    .image-grid {
        gap: 0.75rem;
    }
    .image-card {
        border-radius: 16px;
    }
}
