@import url('https://api.fontshare.com/v2/css?f[]=clash-display@300,400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

:root {
    --boxx-blue: #6BCEF5;
    --text-black: #000000;
    --text-white: #ffffff;
}

/* Custom Tailwind Config */
@tailwind base;
@tailwind components;
@tailwind utilities;

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

body {
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    overflow-x: hidden;
}

.hero-heading {
    font-family: 'Clash Display', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.section-heading {
    font-family: 'Clash Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.body-text {
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

header {
    backdrop-filter: blur(10px);
}

.hero-text,
.info-content,
.form-content {
    max-width: 672px;
}

#hero {
    margin-top: 0;
    min-height: 700px;
    height: 75vh;
}

.hero-section {
    background: linear-gradient(135deg, #4a7c59 0%, #6b9e7f 50%, #5a8c6b 100%);
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    #hero {
        min-height: 600px;
        height: 70vh;
    }
}

.hero-section.has-image {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/hero-image.jpg');
}

.hero-line {
    opacity: 0;
    transform: translateY(20px);
}

.form-label {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--text-black);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #000000;
    background: transparent;
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--boxx-blue);
}

.submit-button {
    background-color: var(--boxx-blue);
    color: #000000;
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.875rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.submit-button:hover:not(:disabled) {
    background-color: #5bbde5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 206, 245, 0.4);
}

.submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.h-captcha {
    margin: 1rem 0;
}

.thank-you-message {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer {
    position: relative;
}

.footer-section {
    background: linear-gradient(135deg, #6366F1 0%, #A855F7 50%, #EC4899 100%);
}

.footer-section.has-image {
    background-image: url('assets/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

#footer > * {
    position: relative;
    z-index: 2;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.copyright,
.privacy-link {
    font-family: "Geist", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    flex: 1;
}

.copyright {
    justify-content: flex-start;
}

.privacy-link {
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icons a {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom {
        gap: 1.5rem;
    }
    
    .social-icons {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 32px;
    }
    
    .section-heading {
        font-size: 20px;
    }
    
    .body-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
    }
    
    .section-heading {
        font-size: 18px;
    }
    
    .body-text {
        font-size: 16px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
}


