/* Ripls Website - Homepage Styles */

.hero {
    padding: 80px 30px 120px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 400;
    color: #3d3531;
    margin-bottom: 30px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero .highlight {
    color: #c9a689;
    font-style: italic;
}

.hero p {
    font-size: 22px;
    color: #6a5d56;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.email-capture {
    max-width: 480px;
    margin: 0 auto;
}

.email-capture input {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #f0e5db;
    background: white;
    font-size: 17px;
    border-radius: 50px;
    outline: none;
    transition: border-color 0.3s;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.email-capture input:focus {
    border-color: #e07a5f;
}

.email-capture button {
    width: 100%;
    padding: 20px 24px;
    background: #e07a5f;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.email-capture button:hover {
    background: #d16b4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 122, 95, 0.25);
}

.story {
    background: linear-gradient(180deg, #f8f3ee 0%, #fdf8f3 100%);
    padding: 100px 30px;
}

.story-content {
    max-width: 750px;
    margin: 0 auto;
}

.story h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 35px;
    color: #e07a5f;
    line-height: 1.8;
}

.story p {
    font-size: 19px;
    color: #6a5d56;
    margin-bottom: 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.features {
    padding: 100px 30px;
    background: white;
}

.features h2 {
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 70px;
    color: #3d3531;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 30px;
    background: #fdfaf7;
    border-radius: 30px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f8ede4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
}

.feature h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #3d3531;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.feature p {
    font-size: 17px;
    color: #6a5d56;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #e07a5f 0%, #e89b7e 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
    color: white;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 45px;
    opacity: 0.95;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-section button {
    padding: 20px 50px;
    background: white;
    color: #e07a5f;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-section button:hover {
    transform: scale(1.05);
}
