/* Faircoin Page Specific Styles */

/* Hero Section */
.faircoin-hero {
    position: relative;
    width: 100%;
    min-height: clamp(300px, 40vh, 500px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4A3810 0%, #3A2C10 100%),
        url('./assets/Fair_coin_group.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    margin-top: clamp(70px, 10vh, 120px);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(42, 42, 42, 0.6) 100%);
}

.faircoin-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(2rem, 5vh, 4rem);
}

.page-title {
    color: #CAAC59;
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    color: #FFF;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Main Content */
.faircoin-content {
    background: var(--dark);
    min-height: 100vh;
}

.content-section {
    padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 5vw, 3rem);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: #CAAC59;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
    text-align: center;
}

.section-text {
    color: var(--text-light);
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Introduction Section */
.intro-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
}

/* Features Section */
.features-section {
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-top: clamp(2rem, 4vh, 3rem);
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(202, 172, 89, 0.2);
    border-radius: 12px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(202, 172, 89, 0.5);
    box-shadow: 0 8px 24px rgba(202, 172, 89, 0.15);
}

.feature-icon {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(202, 172, 89, 0.1);
    border-radius: 50%;
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.feature-icon svg {
    width: clamp(32px, 4vw, 48px);
    height: clamp(32px, 4vw, 48px);
}

.feature-title {
    color: #CAAC59;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: clamp(0.8rem, 1.5vh, 1rem);
}

.feature-description {
    color: var(--text-gray);
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(2rem, 4vh, 3rem);
}

.token-info {
    background: linear-gradient(135deg, rgba(202, 172, 89, 0.1) 0%, rgba(10, 10, 10, 0.5) 100%);
    border: 1px solid rgba(202, 172, 89, 0.3);
    border-radius: 12px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    transition: all 0.3s ease;
}

.token-info:hover {
    transform: translateY(-5px);
    border-color: rgba(202, 172, 89, 0.6);
    box-shadow: 0 6px 20px rgba(202, 172, 89, 0.2);
}

.token-label {
    color: var(--text-gray);
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    margin-bottom: clamp(0.8rem, 1.5vh, 1rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.token-value {
    color: #CAAC59;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
}

/* Vision Section */
.vision-section {
    background: var(--dark);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(74, 56, 16, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
    text-align: center;
}

.cta-title {
    color: #CAAC59;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.cta-text {
    color: var(--text-light);
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: clamp(2rem, 4vh, 3rem);
}

.cta-buttons {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 3rem);
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #CAAC59 0%, #D4AF37 100%);
    color: var(--dark);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 172, 89, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #CAAC59;
    border: 2px solid #CAAC59;
}

.btn-secondary:hover {
    background: rgba(202, 172, 89, 0.1);
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faircoin-hero {
        min-height: clamp(250px, 35vh, 400px);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.token-info {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1),
.token-info:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2),
.token-info:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3),
.token-info:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4),
.token-info:nth-child(4) {
    animation-delay: 0.4s;
}
