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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc4 100%);
    color: #3d3d3d;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #d4c5a9 0%, #b8a688 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Heartbeat Animation */
.heartbeat-container {
    margin: 0 auto 40px;
    max-width: 300px;
}

.heartbeat {
    width: 100%;
    height: auto;
    color: #2c2416;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}

.heartbeat-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawHeartbeat 2s ease-in-out infinite;
}

@keyframes drawHeartbeat {
    0% {
        stroke-dashoffset: 200;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Logo */
.logo {
    font-size: 72px;
    font-weight: 700;
    color: #2c2416;
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Vision Statement */
.vision {
    font-size: 28px;
    font-weight: 500;
    color: #3d3d3d;
    margin-bottom: 24px;
    line-height: 1.4;
}

.highlight {
    color: #2c2416;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

/* Tagline */
.tagline {
    font-size: 18px;
    color: #5d5342;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 40px 20px;
    }

    .heartbeat-container {
        max-width: 200px;
        margin-bottom: 30px;
    }

    .logo {
        font-size: 48px;
    }

    .vision {
        font-size: 22px;
    }
    
    .tagline {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 36px;
    }

    .vision {
        font-size: 18px;
    }

    .tagline {
        font-size: 14px;
    }

    .heartbeat-container {
        max-width: 180px;
    }
}