/* Custom Styles for ReviewHub */

/* General Styles */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-header {
    background-color: #f8f9fa;
    margin-bottom: 30px;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.review-form .card {
    border-radius: 15px;
}

/* Star Rating System */
.star-rating {
    font-size: 24px;
}

.star-rating .stars {
    cursor: pointer;
    display: inline-block;
}

.star-rating .stars i {
    color: #ddd;
    transition: color 0.2s;
    padding: 0 2px;
}

.star-rating .stars i.fas,
.star-rating .stars i.hover {
    color: #ffc107;
}

/* Footer */
footer {
    background-color: #2c3e50;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Authentication Pages */
.auth-section {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
}

.or-divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.or-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #dee2e6;
    z-index: -1;
}

.or-divider span {
    display: inline-block;
    padding: 0 10px;
    background-color: white;
    color: #6c757d;
}

/* Form Elements */
.toggle-password {
    cursor: pointer;
}

.otp-inputs {
    gap: 10px;
}

.otp-digit {
    text-align: center;
    height: 50px;
    font-size: 1.5rem;
    padding: 0;
}

.otp-digit:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Verification Section */
#verificationSection {
    /*background-color: #f8f9fa;*/
    padding: 1.5rem;
    border-radius: 0.5rem;
}

#mobileField, #emailField {
    transition: all 0.3s ease;
}

/* Modal OTP inputs */
.modal-body .otp-inputs input {
    width: 50px;
    height: 60px;
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 72px;
    }
    
    .hero {
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .modal-body .otp-inputs input {
        width: 2.5rem;
        height: 3.5rem;
    }
}

.navbar-nav .nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fff5bc;
}

#loadMoreBtn {
    display: block;
    margin: 20px auto;
}

