@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

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

:root {
    --desert-gold: #F4A460;
    --warm-amber: #FFA500;
    --terracotta: #E2725B;
    --burnt-sienna: #E97451;
    --sand-cream: #FDF5E6;
    --warm-charcoal: #3D3D3D;
    --sage-gray: #8A9A8A;
    --sunset-orange: #FF6B35;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--sand-cream);
    color: var(--warm-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.sun-motif {
    font-size: 8rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: rotate 60s linear infinite;
}

.sun-motif:hover {
    transform: scale(1.1);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--warm-charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.5rem;
    color: var(--sage-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--desert-gold), var(--warm-amber));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 164, 96, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.6);
}

.about {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

.about h2, .services h2, .projects h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--warm-charcoal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    color: var(--sage-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--desert-gold);
    box-shadow: 0 8px 30px rgba(244, 164, 96, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--warm-charcoal);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--sage-gray);
    line-height: 1.7;
}

.contact {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--warm-charcoal), #2D2D2D);
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact p {
    font-size: 1.3rem;
    color: var(--desert-gold);
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--desert-gold);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: var(--warm-amber);
    transform: translateY(-2px);
}

.footer {
    padding: 2rem;
    background: var(--warm-charcoal);
    color: var(--sage-gray);
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .tagline { font-size: 1.2rem; }
    .sun-motif { font-size: 5rem; }
    .about h2, .services h2, .projects h2, .contact h2 { font-size: 2.2rem; }
}