@import url('https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css');

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

body {
    font-family: 'SUIT', sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #d2e9d2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(210, 233, 210, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 2px solid rgba(117, 94, 62, 0.1);
}

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

.nav-left {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #755e3e;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'SUIT', sans-serif;
}

.nav-link:hover {
    background: rgba(117, 94, 62, 0.1);
    transform: translateY(-1px);
}

.logo {
    color: #755e3e;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'SUIT', sans-serif;
    text-shadow: 1px 1px 2px rgba(117, 94, 62, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 20% 80%, rgba(117, 94, 62, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(117, 94, 62, 0.02) 0%, transparent 40%),
        #d2e9d2;
}

.mars-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(117, 94, 62, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(117, 94, 62, 0.03) 0%, transparent 25%);
    animation: gentleFloat 20s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { 
        opacity: 0.4; 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        opacity: 0.6; 
        transform: translateY(-10px) rotate(1deg); 
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.text-sequence {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.text-line {
    opacity: 0;
    transform: translateY(30px);
    color: #acb2ad;
    font-family: 'SUIT', sans-serif;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(117, 94, 62, 0.1);
}

.text-1 {
    font-size: 1.4rem;
    animation: textAppear 0.8s ease-out 0.5s forwards;
}

.text-2 {
    font-size: 1.4rem;
    animation: textAppear 0.8s ease-out 1.3s forwards;
}

.text-3 {
    font-size: 1.4rem;
    animation: textAppear 0.8s ease-out 2.1s forwards;
}

.text-4 {
    font-size: 1.4rem;
    animation: textAppear 0.8s ease-out 2.9s forwards;
    margin-bottom: 40px;
}

.text-5 {
    font-size: 2.2rem;
    animation: textAppear 0.8s ease-out 3.7s forwards;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #755e3e;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(117, 94, 62, 0.1);
    letter-spacing: 4px;
    font-family: 'SUIT', sans-serif;
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: titleAppear 1.2s ease-out 4.5s forwards;
}

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

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

.cta-button {
    padding: 15px 40px;
    font-size: 18px;
    background: rgba(117, 94, 62, 0.1);
    color: #755e3e;
    border: 2px solid rgba(117, 94, 62, 0.5);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 2s ease-out 0.5s both;
    text-decoration: none;
    display: inline-block;
    font-family: 'SUIT', sans-serif;
}

.cta-button:hover {
    background: rgba(117, 94, 62, 0.2);
    border-color: #755e3e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(117, 94, 62, 0.2);
}

/* Animations */
@keyframes gentleAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-left {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .text-1, .text-2, .text-3, .text-4 { 
        font-size: 1.1rem; 
    }
    .text-5 { font-size: 1.6rem; }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .text-1, .text-2, .text-3, .text-4 { 
        font-size: 1rem; 
    }
    .text-5 { font-size: 1.4rem; }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
}

/* Additional handcraft atmosphere effects */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(117, 94, 62, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(117, 94, 62, 0.03) 0%, transparent 35%);
    animation: subtleBreath 30s ease-in-out infinite;
}

@keyframes subtleBreath {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.5; 
        transform: scale(1.02) rotate(0.5deg); 
    }
}
