/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

:root {
    --beige-bg: #f5f0ea;
    --dark-text: #1a1a1a;
    --blue-primary: #2563eb;
    --orange-star: #ff9500;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--beige-bg);
    color: var(--dark-text);
}

.navbar {
    background-color: var(--beige-bg);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 600;
    color: var(--dark-text);
}

.btn-google {
    background-color: var(--blue-primary);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-google:hover {
    background-color: #1d4ed8;
    color: white;
}

.hero-section {
    background-color: #e8e2d8;
    border-radius: 24px;
    padding: 4rem 2rem;
    margin: 2rem auto;
    text-align: center;
    max-width: 1200px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.hero-section small {
    color: #6b6b6b;
    font-size: 0.9rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 4rem 0 1rem;
}

.section-subtitle {
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card-no-bg {
    background: none !important;
    box-shadow: none !important;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card p {
    color: #4a4a4a;
    line-height: 1.6;
}

.review-mockup {
    padding: 1.5rem;
}

.stars {
    color: var(--orange-star);
    font-size: 1.2rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rating-bars {
    margin: 1rem 0;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.rating-bar span {
    min-width: 15px;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--orange-star);
    border-radius: 4px;
}

.feedback-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feedback-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feedback-form .form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 0.75rem;
}

.feedback-form .btn-dark {
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 500;
}

.coming-soon-badge {
    display: inline-block;
    background: #e8e2d8;
    color: #6b6b6b;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section {
    background-color: #e8e2d8;
    border-radius: 24px;
    padding: 4rem 2rem;
    margin: 4rem auto;
    text-align: center;
    max-width: 1200px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 4rem;
}

footer a {
    color: var(--dark-text);
    text-decoration: none;
    margin: 0 1rem;
}

footer a:hover {
    text-decoration: underline;
}

.placeholder-img {
    background: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
    font-size: 2rem;
    }
    
    .section-title {
    font-size: 1.75rem;
    }
}
