/* ============================================
   INDEX PAGE ONLY - Само за index.html
   ============================================ */

/* Hero Section - специфично за index */
.contact-hero {
    background-image: url('../images/index/index_1.jpg');
}

/* Overview Section */
.overview {
    padding: 100px 50px;
    background: #0f0f0f;
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.overview h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #d4a855;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.explore-btn {
    padding: 18px 45px;
    background: linear-gradient(135deg, #d4a855, #f5e6d3);
    color: #2a1f10;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.explore-btn:hover::before {
    width: 300px;
    height: 300px;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 168, 85, 0.4);
}

.features {
    padding: 100px 50px;
    min-height: 80vh;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.features > *:not(.hero-bg):not(.shape) {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(61, 48, 32, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 168, 85, 0.2);
}

.feature-item:hover {
    transform: scale(1.05);
    background: rgba(61, 48, 32, 0.5);
    border-color: rgba(212, 168, 85, 0.5);
}

.feature-item i {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
    color: #ccc
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4a855;
}

.feature-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Responsive за Index Page */
@media (max-width: 768px) {
    .overview {
        padding: 60px 20px;
    }
    
    .overview h2 {
        font-size: 36px;
    }
    
    .lead-text {
        font-size: 16px;
    }
    
    .features {
        padding: 60px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
