﻿:root {
    --primary-color: #e84c88;
    --primary-dark: #d03e75;
    --secondary-color: #d8bfd8;
    --secondary-dark: #4a1548;
    --primary-bg-color: #fff;
    --secondary-bg-color: #eed9ee;
    --text-color: #333;
    --border-radius: 24px;
    --dropdown-border-radius: 16px;
    --btn-link-border-radius: 8px;
    --image-border-color: #e84c8873;
}

/* Feedbacks page styling */
.hero-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.hero-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.alert-danger {
    margin-left: 50px !important;
    margin-right: 50px !important;
    margin-top: 20px !important;
}

.fa-comment {
    color: var(--primary-dark);
}

.featured-feedback {
    background-color: white;
    border-radius: 15px;
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.2);
    padding: 2rem;
}

.featured-couple-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid #f8f9fa;
}

.featured-quote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding: 0 1.5rem;
}

.featured-quote::before,
.featured-quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.featured-quote::before {
    top: -1.5rem;
    left: 0;
}

.featured-quote::after {
    bottom: -2.5rem;
    right: 0;
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.feedback-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feedback-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feedback-content {
    padding: 1.5rem;
}

.couple-names {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.wedding-date {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.feedback-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.highlight-tag {
    background-color: #f8f9fa;
    color: var(--primary-color);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.statistics-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
}

.statistic-item {
    text-align: center;
    padding: 1.5rem;
}

.statistic-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.statistic-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.statistic-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.cta-section {
    padding: 5rem 0;
    background-color: white;
}

/* Estilos para o formulário de criação */
.rating-input {
    display: flex;
    gap: 1rem;
}

.feedback-modal {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: var(--primary-color) !important;
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.card-header h5 {
    color: white;
    font-weight: 600;
}

.card-body {
    padding: 2rem 1.5rem;
    background-color: var(--primary-bg-color);
}

.form-control {
    border-radius: var(--btn-link-border-radius);
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 76, 136, 0.25);
}

textarea.form-control {
    min-height: 120px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: var(--border-radius);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: white;
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-text {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Estilos para o formulário de resposta */
/*.response-form-container {
    background-color: var(--secondary-bg-color);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.response-form textarea {
    border: 1px solid #ced4da;
    border-radius: 8px;
    resize: vertical;
    min-height: 80px;
}

.response-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 76, 136, 0.25);
}

.response-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.response-form .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}*/


/* Estilo para o botão Responder */
/*.respond-button {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: var(--btn-link-border-radius);
    transition: all 0.2s ease;
    background-color: transparent;
    border: 1px solid transparent;
}

.respond-button:hover {
    background-color: var(--secondary-bg-color);
    color: var(--primary-dark);
    border-color: var(--primary-color);
    text-decoration: none;
}

.respond-button i {
    margin-right: 0.25rem;
}*/

/* Filter Section */
.filter-section {
    margin-top: -1rem;
    position: relative;
    z-index: 10;
}

.filter-section .card {
    border-radius: var(--border-radius);
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
    overflow: hidden;
}

.filter-section .form-select {
    border-color: var(--primary-dark);
    border-radius: var(--border-radius);
    padding: 0.6rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.filter-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(232, 76, 136, 0.25);
}

.filter-section .input-group-text {
    border-color: var(--primary-dark);
    color: var(--primary-color);
    font-weight: 500;
    border-radius: var(--border-radius);
    background-color: var(--primary-bg-color);
}

.feedback-filters {
    display: flex;
    gap: 8rem;
    position: relative;
    left: 3%;
}

/* Empty State */
.empty-state {
    padding: 2rem 0;
}

.empty-state i {
    color: var(--primary-color) !important;
}

.empty-state h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.empty-state p {
    margin-bottom: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .filter-section .form-control,
    .filter-section .form-select,
    .filter-section .btn-primary {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .filter-section .card {
        border-radius: calc(var(--border-radius) * 0.75);
    }

    .filter-section .form-control,
    .filter-section .form-select,
    .filter-section .btn-primary {
        border-radius: calc(var(--border-radius) * 0.75);
    }
}