/* Common CSS for Waterfall Markets */

/* Base styles */
body {
    font-family: 'Rethink Sans', sans-serif;
}

.hero-bg {
    background-image: url('../background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-text {
    color: white;
}

.nav-glass {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.portal-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.portal-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.trust-rating {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.star {
    color: #fbbf24;
}

/* Carousel styles */
.carousel {
    animation: scroll 30s linear infinite;
}

.carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Evaluation card styles */
.evaluation-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.evaluation-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.evaluation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.evaluation-card:hover::before {
    opacity: 1;
}

.evaluation-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
}

.evaluation-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
}

/* Content section styles */
.content-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Footer styles */
footer {
    background: black;
    border-top: 1px solid #374151;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
    }

    .nav-glass {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Common section styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #64748b;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 1rem;
}

.branded-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    position: relative;
}

.branded-title::after {
    content: '®';
    font-size: 0.75rem;
    vertical-align: super;
    opacity: 0.6;
}

.clean-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}
