/* Modern Home Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('public/bg_mountain.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 49%, white 50%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background-color: #0000004d;
    padding: 20px;
    border-radius: 20px;
    
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    
}

.hero-content .highlight {
    color: #fff;
    font-weight: 700;
}

/* Search Form */
.search-form {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.search-form .form-group {
    position: relative;
    margin-bottom: 0;
}

.search-form .form-control {
    height: 54px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px 10px 45px;
    font-size: 1rem;
}

.search-form .form-control:focus {
    border-color: #bc8220;
    box-shadow: 0 0 0 0.2rem rgba(188, 130, 32, 0.25);
}

.search-form .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bc8220;
    font-size: 1.2rem;
}

.search-form .btn-search {
    height: 54px;
    background-color: #bc8220;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-form .btn-search:hover {
    background-color: #a06c1b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(188, 130, 32, 0.3);
}

/* Active Filters */
.active-filters {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.active-filters ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.active-filters ul li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.active-filters ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #bc8220;
    font-weight: bold;
}

.active-filters .btn-clear {
    background-color: transparent;
    color: #bc8220;
    border: 1px solid #bc8220;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.active-filters .btn-clear:hover {
    background-color: #bc8220;
    color: white;
}

/* Counter Section */
.counter-section {
    margin-top: 30px;
}

.counter-item {
    display: inline-block;
    margin: 0 15px;
    text-align: center;
}

.counter-item span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.counter-item span i {
    margin-right: 10px;
    font-size: 1.8rem;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    text-align: center;
}

.info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.info-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.info-section .flag-image {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.cta-section .coin-image {
    width: 400px;
    height: 400px;
    margin-bottom: 20px;
}

.cta-section .btn-cta {
    background-color: #bc8220;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.cta-section .btn-cta:hover {
    background-color: #a06c1b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(188, 130, 32, 0.3);
}

.cta-section p {
    font-size: 1.5rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .highlight {
    font-weight: 700;
    color: #333;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: #fff;
}

.categories-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.category-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-card i {
    font-size: 3rem;
    color: #bc8220;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-card p {
    color: #777;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .search-form {
        padding: 20px;
    }
    
    .search-form .form-control {
        height: 50px;
    }
    
    .search-form .btn-search {
        height: 50px;
        margin-top: 15px;
    }
    
    .counter-item {
        margin: 0 10px;
    }
    
    .counter-item span {
        font-size: 1.2rem;
    }
    
    .info-section h2,
    .cta-section h2,
    .categories-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 500px;
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .counter-item {
        display: block;
        margin: 10px 0;
    }
    
    .info-section,
    .cta-section,
    .categories-section {
        padding: 50px 0;
    }
    
    .info-section h2,
    .cta-section h2,
    .categories-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1.2rem;
    }
    
    .category-card {
        margin-bottom: 20px;
    }
}
