@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

/* Warm gradient background */
body {
    background: linear-gradient(135deg, #ffffff 0%, #fef9f3 50%, #f0f4ff 100%);
    min-height: 100vh;
}

/* Smooth transitions between sections */
section {
    transition: background-color 0.5s ease;
}

section.bg-white {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 100%);
}

/* Feedback items style */
.feedback-item {
    opacity: 0;
    transition: opacity 0.3s ease;
    word-break: break-word;
}

/* No effects on feedback-container for desktop - let animation run smoothly */
.feedback-container {
    /* removed mask and gradient - just plain container */
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #1a1a1a 0%, #fb651e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Soft shadow for cards */
.soft-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #fb651e 0%, #f55a0f 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(251, 101, 30, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #fb651e;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #fff5f0;
    border-color: #f55a0f;
    transform: translateY(-2px);
}

/* Card hover effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(251, 101, 30, 0.15);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    animation: slideIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.modal-header p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.modal-input:focus {
    outline: none;
    border-color: #fb651e;
    box-shadow: 0 0 0 3px rgba(251, 101, 30, 0.1);
}

.modal-footer {
    display: flex;
    gap: 1rem;
}

.modal-footer button {
    flex: 1;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.modal-btn-submit {
    background: linear-gradient(135deg, #fb651e 0%, #f55a0f 100%);
    color: white;
}

.modal-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(251, 101, 30, 0.3);
}

.modal-btn-cancel {
    background: #f3f4f6;
    color: #1a1a1a;
}

.modal-btn-cancel:hover {
    background: #e5e7eb;
}
