/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #f5f4f0;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

/* Simplistic Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #f5f4f0, #f0efeb, #f8f7f3, #f2f1ed);
    background-size: 400% 400%;
    animation: gentleShift 4s ease-in-out infinite;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.12) 1px, transparent 1px);
    background-size: 80px 80px, 40px 40px;
    animation: floatPattern 8s linear infinite;
    z-index: -1;
}

@keyframes gentleShift {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes floatPattern {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -10px) rotate(1deg);
    }
    50% {
        transform: translate(40px, 20px) rotate(0deg);
    }
    75% {
        transform: translate(20px, 40px) rotate(-1deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Section */
.hero {
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 18px;
    color: #000;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* Contact */
.contact {
    margin-top: 40px;
}

.contact a {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    letter-spacing: -0.005em;
}

.contact a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact {
        margin-top: 30px;
    }
    
    .contact a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .contact a {
        font-size: 12px;
    }
} 