/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #FAFAFA;
    background-color: #000;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1440px;
    margin: 20px auto 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #FAFAFA;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #FAFAFA;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FAFAFA;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 693px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: url('assets/images/home-img.webp') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-image-placeholder span {
    color: rgba(250, 250, 250, 0.6);
    font-size: 1.5rem;
    font-weight: 300;
    z-index: 2;
    position: relative;
    display: none; /* Hide placeholder text when real image is used */
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 1440px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Krona One', sans-serif;
    font-size: 7rem;
    font-weight: 400;
    color: #FAFAFA;
    margin-bottom: 2rem;
    letter-spacing: -8px;
}

.hero-status {
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #FAFAFA;
    margin-bottom: 2rem;
}
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #FAFAFA;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }
    .hero-status {
        font-size: 1.25rem;
        font-weight: 400;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-subtitle-line2 {
        display: block;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-image-placeholder span {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-logo a {
        font-size: 1.125rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-image-placeholder span {
        font-size: 1rem;
    }
}

/* Smooth scroll for future sections */
html {
    scroll-behavior: smooth;
}

/* Contact Section */
.contact-section {
    height: 1012px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 2rem 100px 2rem;
}

.contact-container {
    max-width: 1440px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-title {
    font-family: 'Krona One', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #FAFAFA;
    margin-bottom: 1.5rem;
    letter-spacing: 0px;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(146, 146, 146, 0.8);
    line-height: 1.5;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #FAFAFA;
}

.form-group input,
.form-group textarea {
    background-color: transparent;
    border: 1px solid rgba(250, 250, 250, 0.3);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #FAFAFA;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(250, 250, 250, 0.6);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 250, 250, 0.5);
}

.interest-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.interest-btn {
    background-color: transparent;
    border: 1px solid rgba(250, 250, 250, 0.3);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #FAFAFA;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interest-btn:hover {
    border-color: rgba(250, 250, 250, 0.6);
    background-color: rgba(250, 250, 250, 0.1);
}

.interest-btn.active {
    background-color: rgba(250, 250, 250, 0.2);
    border-color: #FAFAFA;
}

.submit-btn {
    background-color: #FAFAFA;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: rgba(250, 250, 250, 0.9);
    transform: translateY(-1px);
}

/* Future section preparation */
.section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Responsive Design for Contact Section */
@media (max-width: 1200px) {
    .contact-section {
        padding: 80px 1.5rem 100px 1.5rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 1rem;
    }
    
    .contact-section {
        height: auto;
        min-height: 1012px;
        padding: 70px 1rem 100px 1rem;
    }
    
    .contact-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        gap: 1.5rem;
    }
    
    .interest-options {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .interest-btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Footer Section */
.footer {
    background-color: #000;
    padding: 4rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(144, 144, 144, 0.2);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
}

.footer0credit {
    text-align: center;
}

.footer-logo h2 {
    font-family: 'Krona One', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #909090;
    letter-spacing: -1px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #FAFAFA;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FAFAFA;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}



.footer-credit {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #909090;
}

.footer-credit-link {
    color: #909090;
    text-decoration: underline;
    text-decoration-color: rgba(144, 144, 144, 0.5);
    transition: all 0.3s ease;
}

.footer-credit-link:hover {
    text-decoration-color: #909090;
    opacity: 0.8;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 1.5rem 1rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-logo h2 {
        font-size: 1.5rem;
    }
    
    .footer-nav {
        gap: 1.5rem;
    }
    
    .footer0credit {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem 1rem 1rem;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-logo h2 {
        font-size: 1.25rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-credit {
        font-size: 0.8rem;
    }
}