/* ASHIVA Index Page Styles */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   FEATURED COLLECTIONS SECTION
   ======================================== */

.featured-collections {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hero-description {
    font-size: 1.6rem;
}

.collection-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.collection-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 80, 32, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.collection-link:hover {
    background: white;
    color: #215020;
}

.collection-info {
    padding: 1.5rem;
    text-align: center;
}

.collection-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215020;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.collection-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* ========================================
   BRAND PHILOSOPHY SECTION
   ======================================== */

.brand-philosophy {
    padding: 100px 0;
    background: white;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.philosophy-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.philosophy-features {
    display: grid;
    gap: 1.5rem;
}

.philosophy-features .feature-item {
    padding: 1.5rem;
    background: rgba(33, 80, 32, 0.03);
    border-left: 4px solid #215020;
    border-radius: 0 8px 8px 0;
}

.philosophy-features .feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #215020;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.philosophy-features .feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.visual-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.visual-card:hover img {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    text-align: center;
}

.visual-overlay p {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

/* ========================================
   SERVICES OVERVIEW SECTION
   ======================================== */

.services-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215020;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   ABOUT PREVIEW SECTION
   ======================================== */

.about-preview {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: #215020;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-link:hover {
    color: #333;
    transform: translateX(8px);
}

.btn-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.btn-link:hover::after {
    margin-left: 1rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(33, 80, 32, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(33, 80, 32, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #215020;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   CREATIVE LOUNGE CTA SECTION
   ======================================== */

.lounge-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #215020 0%, #1a3d1a 100%);
    color: white;
}

.lounge-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.lounge-visual {
    display: flex;
    justify-content: center;
}

.coffee-cup-icon {
    animation: gentle-bounce 3s infinite ease-in-out;
}

@keyframes gentle-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.lounge-text h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.lounge-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: white;
    color: #215020;
}

/* ========================================
   CONTACT CTA SECTION
   ======================================== */

.contact-cta {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #215020;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #1a3d1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 80, 32, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #215020;
    text-decoration: none;
    border: 2px solid #215020;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: #215020;
    color: white;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet and Below */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .lounge-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .philosophy-text h2,
    .about-text h2,
    .lounge-text h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .featured-collections,
    .brand-philosophy,
    .services-overview,
    .about-preview,
    .lounge-cta,
    .contact-cta {
        padding: 60px 0;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .philosophy-text h2,
    .about-text h2,
    .lounge-text h2,
    .cta-content h2 {
        font-size: 1.6rem;
    }
}