/* ==========================================
   LOVEMYDIET - Main Styles
   ========================================== */

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

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #353731;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.wave-accent {
    width: 80px;
    height: 4px;
    background: #05C168;
    border-radius: 2px;
    margin-bottom: 24px;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid transparent;
    font-size: 1.05rem;
    cursor: pointer;
}

.btn-primary {
    background: #05C168;
    color: white;
    border-color: #05C168;
    box-shadow: 0 4px 14px rgba(5, 193, 104, 0.25);
    width: fit-content;
}

.btn-primary:hover {
    background: #11845B;
    border-color: #11845B;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 193, 104, 0.35);
}

/* Star Rating Styles */
.stars {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Google Logo Colors */
.google-logo {
    font-weight: 700;
    font-size: 1.2rem;
}

.google-logo .g1 { color: #4285f4; }
.google-logo .o1 { color: #ea4335; }
.google-logo .o2 { color: #fbbc04; }
.google-logo .g2 { color: #4285f4; }
.google-logo .l { color: #34a853; }
.google-logo .e { color: #ea4335; }
