
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.92), rgba(26, 37, 47, 0.92)), url('../p/index_head_01.jpg');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(22, 160, 133, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(26, 188, 156, 0.1) 0%, transparent 25%);
    opacity: 0.6;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    animation: fadeIn 1.2s ease;
    padding: 3rem;
    position: relative;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h2 span {
    color: var(--accent-light);
    position: relative;
}

.hero h2 span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-light);
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.featured-crystal {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    padding: 5rem;
    margin: 6rem 0;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.featured-content {
    flex: 1;
    padding-right: 4rem;
    z-index: 2;
}

.featured-image {
    flex: 1;
    z-index: 2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: rotate(3deg);
    transition: var(--transition);
}

.featured-image:hover { transform: rotate(0) scale(1.03); }
.featured-image img { width: 100%; display: block; transition: var(--transition); }
.featured-image:hover img { transform: scale(1.05); }

.featured-crystal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 20%),
        radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 25%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.featured-crystal h3 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.featured-crystal p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.category-section { margin: 7rem 0 5rem; }

.crystal {
    position: absolute;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    animation: float 8s infinite ease-in-out;
    z-index: 1;
    filter: drop-shadow(0 0 8px rgba(26, 188, 156, 0.4));
}

.crystal:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; color: rgba(52, 152, 219, 0.8); }
.crystal:nth-child(2) { top: 65%; left: 85%; animation-delay: 1s; color: rgba(26, 188, 156, 0.8); }
.crystal:nth-child(3) { top: 40%; left: 25%; animation-delay: 2s; color: rgba(155, 89, 182, 0.8); }
.crystal:nth-child(4) { top: 75%; left: 35%; animation-delay: 3s; color: rgba(231, 76, 60, 0.8); }
.crystal:nth-child(5) { top: 30%; left: 75%; animation-delay: 4s; color: rgba(241, 196, 15, 0.8); }
.crystal:nth-child(6) { top: 60%; left: 20%; animation-delay: 5s; color: rgba(230, 126, 34, 0.8); }

.featured-btn {
    display: inline-block;
    background: var(--btn-gradient);
    color: white;
    text-decoration: none;
    padding: 1.3rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.2rem;
    letter-spacing: 0.8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.3);
    min-width: 200px;
    text-align: center;
}

.featured-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.featured-btn:hover::before {
    left: 100%;
}

.featured-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 188, 156, 0.5);
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
}

@media (max-width: 768px) {
    .hero { height: 85vh; clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); }
    .hero h2 { font-size: 2.4rem; }
    .hero p { font-size: 1.2rem; }
    .featured-btn { padding: 1rem 2rem; min-width: 150px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .featured-btn { padding: 0.9rem 1.6rem; min-width: 140px; font-size: 1rem; }
}
@media (max-width: 768px) {
    .hero { height: 85vh; clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); }
    .hero h2 { font-size: 2.4rem; }
    .hero p { font-size: 1.2rem; }
    .featured-btn { padding: 1rem 2rem; min-width: 150px; font-size: 1rem; }
}
@media (max-width: 480px) {
    .featured-btn { padding: 0.9rem 1.6rem; min-width: 140px; font-size: 1rem; }
}
@media (max-width: 768px) {
    .featured-crystal {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        margin: 4rem 0;
        position: static;
        overflow: visible;
    }
    
    .featured-crystal::before {
        display: none;
    }
    
    .featured-content {
        padding-right: 0;
        padding-bottom: 2.5rem;
        text-align: center;
        width: 100%;
        position: static;
        z-index: 2;
    }
    
    .featured-image {
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        position: static;
        z-index: 2;
    }
    
    .featured-image:hover {
        transform: scale(1.03);
    }
    
    .featured-crystal h3 {
        font-size: 2rem;
        text-align: center;
    }
    
    .featured-crystal p {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .featured-crystal {
        padding: 2rem 1rem;
        margin: 3rem 0;
        border-radius: 18px;
    }
    
    .featured-content {
        padding-bottom: 2rem;
    }
    
    .featured-crystal h3 {
        font-size: 1.7rem;
    }
    
    .featured-crystal p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h2 { 
        font-size: 2rem; 
        line-height: 1.3;  
        margin-bottom: 1rem;
    }

    .hero p { 
        font-size: 1.1rem;   
        padding: 0 10px;   
        line-height: 1.6;
    }
}