/* ==========================================
   ERITEACH.COM STYLESHEET
   Modern, clean design inspired by dielenka.com
   ========================================== */

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Based on Eriteach Logo */
    --primary-green: #00A651;
    --primary-green-dark: #008542;
    --accent-orange: #FDB913;
    --accent-red: #E63946;
    --gradient-start: #FDB913;
    --gradient-end: #E63946;
    --accent-dark: #1a1a2e;
    --text-white: #ffffff;
    --text-dark: #333333;
    --text-muted: #666666;
    --background-light: #f8f9fa;
    
    /* Social Media Brand Colors */
    --linkedin: #0077B5;
    --tiktok: #000000;
    --youtube: #FF0000;
    --facebook: #1877F2;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    /* Green background matching Eriteach logo - bold and energetic */
    background: linear-gradient(135deg, #00A651 0%, #006B3D 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    color: var(--text-white);
}

/* Profile Picture */
.profile-picture {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.profile-picture img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(253, 185, 19, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Name */
.name {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Profession Line */
.profession {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
    padding: 0 1rem;
    line-height: 1.5;
}

/* Partner Button */
.btn-partner {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--accent-dark);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(253, 185, 19, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(253, 185, 19, 0.6);
    background: #FFC933;
}

.btn-partner i {
    margin-right: 0.5rem;
}

/* ==========================================
   STATS ROW
   Horizontal scrollable on mobile, no boxes
   ========================================== */
.stats-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    animation: fadeInUp 1s ease-out 0.8s both;
    
    /* Enable horizontal scroll on mobile if needed */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

/* Hide scrollbar but keep functionality */
.stats-row::-webkit-scrollbar {
    height: 0;
}

.stat-item {
    text-align: center;
    min-width: 90px;
    flex-shrink: 0;
    /* No background boxes - clean minimal style */
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    display: block;
    margin-bottom: 0.3rem;
    white-space: nowrap;
}

.stat-label {
    font-size: clamp(0.75rem, 2vw, 1.1rem);
    opacity: 0.9;
    font-weight: 400;
    white-space: nowrap;
}

/* ==========================================
   CONNECT WITH ME SECTION
   ========================================== */
.connect {
    background: var(--background-light);
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Social Media Grid (2x2 layout like dielenka.com) */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-btn {
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Individual social button colors */
.social-btn.linkedin {
    background: var(--linkedin);
}

.social-btn.tiktok {
    background: var(--tiktok);
}

.social-btn.youtube {
    background: var(--youtube);
}

.social-btn.facebook {
    background: var(--facebook);
}

.social-btn i {
    font-size: 1.5rem;
}

/* ==========================================
   PARTNER BRANDS SECTION
   ========================================== */
.partners {
    padding: 5rem 0;
    background: var(--text-white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.partner-card img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

.partner-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.partner-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Placeholder styling for partner cards */
.partner-card.placeholder {
    border: 2px dashed #cccccc;
    background: #f8f9fa;
}

.placeholder-logo {
    width: 100px;
    height: 100px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.placeholder-logo i {
    font-size: 2.5rem;
    color: #999999;
}

.placeholder-logo.small {
    width: 80px;
    height: 80px;
}

.placeholder-logo.small i {
    font-size: 2rem;
}

/* ==========================================
   EXCLUSIVE DISCOUNTS SECTION
   ========================================== */
.discounts {
    padding: 5rem 0;
    background: var(--background-light);
}

/* Filter Dropdown */
.filter-container {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-container label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-right: 1rem;
    color: var(--text-dark);
}

.category-dropdown {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--accent-orange);
    background: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-dropdown:hover {
    background: var(--accent-orange);
    color: var(--accent-dark);
}

.category-dropdown:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(253, 185, 19, 0.3);
}

/* Discounts Grid */
.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.discount-card {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.discount-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.discount-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
}

.discount-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.discount-code {
    background: linear-gradient(135deg, #FDB913, #FFA500);
    color: var(--accent-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    display: inline-block;
}

.discount-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-shop {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--accent-dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background: #FFC933;
    transform: translateX(5px);
}

.btn-shop i {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Coming Soon Box */
.coming-soon-box {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px dashed rgba(253, 185, 19, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.coming-soon-box h3 {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.coming-soon-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: var(--accent-dark);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets and below */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero .container {
        padding: 0 1rem;
    }

    /* Profession line - ensure it doesn't overflow */
    .profession {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
    }

    /* Social grid goes to single column on mobile */
    .social-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* Stats row stays horizontal but with tighter spacing */
    .stats-row {
        gap: 0.8rem;
        padding: 2rem 0.5rem;
        justify-content: space-between;
    }

    .stat-item {
        min-width: 65px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Discounts grid adjusts */
    .discounts-grid {
        grid-template-columns: 1fr;
    }

    .filter-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .filter-container label {
        margin-right: 0;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .hero .container {
        padding: 0 0.75rem;
    }

    .name {
        font-size: 2.2rem;
    }

    .profession {
        font-size: 0.85rem;
        padding: 0 0.25rem;
    }

    .btn-partner {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .social-btn {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .stats-row {
        gap: 0.3rem;
        padding: 2rem 0.25rem;
    }

    .stat-item {
        min-width: 60px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}

/* ==========================================
   SMOOTH SCROLLING
   ========================================== */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--accent-orange);
    color: var(--accent-dark);
}