/* ============================================
   HOMEPAGE SPECIFIC STYLES
   Women-Centered Color Theme: Mauve & Pink
   ============================================ */

/* Variables - Consistent with Global Theme */
.homepage {
    --hp-primary: #6b4c7c;
    --hp-primary-dark: #4a2b5e;
    --hp-primary-light: #8b6b9c;
    --hp-secondary: #e67e8f;
    --hp-secondary-dark: #c96b7c;
    --hp-secondary-light: #f7b3b3;
    --hp-accent-rose: #b5838d;
    --hp-accent-blush: #ffd9d9;
    --hp-gray-50: #fef7f5;
    --hp-gray-100: #fdf2ef;
    --hp-gray-200: #fae6e3;
    --hp-gray-300: #f5d5d0;
    --hp-gray-600: #9b8680;
    --hp-gray-700: #6b5a5a;
    --hp-gray-800: #4a3a3a;
    --hp-gray-900: #2a1f1f;
}

/* ============================================
   HERO SECTION WITH CAROUSEL
   ============================================ */

/* Carousel Container */
#heroCarousel {
    position: relative;
}

/* Carousel Items */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.6s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

/* Hero Section */
.hp-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 43, 94, 0.92) 0%, rgba(107, 76, 124, 0.88) 100%);
}

.hp-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hp-hero-badge {
    display: inline-block;
    background: rgba(230, 126, 143, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--hp-secondary-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(230, 126, 143, 0.4);
}

.hp-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hp-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 550px;
}

/* Hero Buttons */
.hp-btn-primary {
    background: var(--hp-secondary);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hp-btn-primary:hover {
    background: var(--hp-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 143, 0.3);
    color: white;
}

.hp-btn-outline {
    background: transparent;
    border: 2px solid var(--hp-secondary);
    color: var(--hp-secondary);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.hp-btn-outline:hover {
    background: var(--hp-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 143, 0.2);
}

/* Carousel Controls */
.hp-carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
    cursor: pointer;
}

.hp-carousel-control:hover {
    opacity: 1;
}

.hp-carousel-control-prev {
    left: 0;
}

.hp-carousel-control-next {
    right: 0;
}

.hp-carousel-control-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.hp-carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.hp-carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Carousel Indicators */
.hp-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hp-carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hp-carousel-indicators button.active {
    background-color: var(--hp-secondary);
    transform: scale(1.2);
    width: 12px;
    height: 12px;
}

/* Carousel Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item .hp-hero-badge {
    animation: slideInUp 0.6s ease-out forwards;
}

.carousel-item .hp-hero-title {
    animation: slideInUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.carousel-item .hp-hero-subtitle {
    animation: slideInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.carousel-item .hp-hero-buttons {
    animation: fadeIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.hp-stats-section {
    margin-top: -3rem;
    position: relative;
    z-index: 3;
}

.hp-stat-card {
    background: white;
    padding: 1.75rem 1rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 126, 143, 0.1);
}

.hp-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(230, 126, 143, 0.3);
}

.hp-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hp-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hp-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hp-gray-700);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.hp-stat-sub {
    font-size: 0.75rem;
    color: var(--hp-gray-600);
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */
.hp-mv-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--hp-gray-50) 0%, var(--hp-gray-100) 100%);
}

.hp-mv-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--hp-gray-200);
}

.hp-mv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(230, 126, 143, 0.2);
}

.hp-mv-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(230, 126, 143, 0.1) 0%, rgba(230, 126, 143, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hp-mv-icon i {
    font-size: 1.75rem;
    color: var(--hp-secondary);
}

.hp-mv-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-primary);
    margin-bottom: 1rem;
}

.hp-mv-text {
    color: var(--hp-gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hp-mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-mv-list li {
    margin-bottom: 0.75rem;
    color: var(--hp-gray-600);
    font-size: 0.875rem;
}

.hp-mv-list li i {
    color: var(--hp-secondary);
    margin-right: 0.75rem;
    font-size: 0.75rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.hp-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hp-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hp-primary);
    margin-bottom: 0.75rem;
}

.hp-section-header p {
    font-size: 1.125rem;
    color: var(--hp-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.hp-section-divider {
    width: 60px;
    height: 3px;
    background: var(--hp-secondary);
    margin: 1rem auto 0;
    border-radius: 3px;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.hp-feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--hp-gray-200);
    transition: all 0.3s ease;
    height: 100%;
}

.hp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 126, 143, 0.2);
}

.hp-feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(230, 126, 143, 0.1) 0%, rgba(230, 126, 143, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.hp-feature-icon i {
    font-size: 2rem;
    color: var(--hp-secondary);
}

.hp-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    margin-bottom: 0.75rem;
}

.hp-feature-text {
    font-size: 0.875rem;
    color: var(--hp-gray-600);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.hp-feature-link {
    color: var(--hp-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

.hp-feature-link:hover {
    color: var(--hp-secondary-dark);
    text-decoration: underline;
}

/* ============================================
   PROJECT CARDS
   ============================================ */
.hp-project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--hp-gray-200);
    transition: all 0.3s ease;
    height: 100%;
}

.hp-project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 126, 143, 0.2);
}

.hp-project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hp-project-content {
    padding: 1.25rem;
}

.hp-project-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hp-gray-900);
    margin-bottom: 0.5rem;
}

.hp-project-description {
    font-size: 0.875rem;
    color: var(--hp-gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hp-project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--hp-gray-200);
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.hp-testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--hp-gray-200);
    transition: all 0.3s ease;
    height: 100%;
}

.hp-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hp-testimonial-quote {
    font-size: 2rem;
    color: var(--hp-secondary);
    opacity: 0.3;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hp-testimonial-text {
    font-size: 0.875rem;
    color: var(--hp-gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ============================================
   EVENT CARDS
   ============================================ */
.hp-event-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--hp-gray-200);
    transition: all 0.3s ease;
    height: 100%;
}

.hp-event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 126, 143, 0.2);
}

.hp-event-date {
    background: var(--hp-gray-100);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.hp-event-date-day {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hp-secondary);
    line-height: 1;
}

.hp-event-date-month {
    font-size: 0.75rem;
    color: var(--hp-gray-700);
    text-transform: uppercase;
}

/* ============================================
   CTA SECTION
   ============================================ */
.hp-cta-section {
    background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-light) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hp-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 126, 143, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: subtleMove 20s linear infinite;
}

@keyframes subtleMove {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(40px, 40px);
    }
}

.hp-btn-light {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.hp-btn-light:hover {
    background: white;
    color: var(--hp-primary);
    transform: translateY(-2px);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.hp-partner-logo {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    max-height: 50px;
    width: auto;
}

.hp-partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hp-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hp-hero-title {
        font-size: 2.5rem;
    }
    
    .hp-hero-subtitle {
        font-size: 1rem;
    }
    
    .hp-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hp-hero {
        min-height: 70vh;
    }
    
    .hp-hero-title {
        font-size: 2rem;
    }
    
    .hp-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hp-stat-card {
        padding: 1rem;
    }
    
    .hp-stat-number {
        font-size: 1.5rem;
    }
    
    .hp-stat-label {
        font-size: 0.75rem;
    }
    
    .hp-section-header h2 {
        font-size: 1.5rem;
    }
    
    .hp-section-header p {
        font-size: 1rem;
    }
    
    .hp-mv-section {
        padding: 3rem 0;
    }
    
    .hp-mv-title {
        font-size: 1.25rem;
    }
    
    .hp-carousel-indicators {
        bottom: 15px;
    }
    
    .hp-carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

@media (max-width: 576px) {
    .hp-hero-title {
        font-size: 1.75rem;
    }
    
    .hp-hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .hp-btn-primary,
    .hp-btn-outline,
    .hp-btn-light {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .hp-stat-card {
        padding: 0.75rem;
    }
    
    .hp-stat-number {
        font-size: 1.25rem;
    }
    
    .hp-stat-label {
        font-size: 0.7rem;
    }
    
    .hp-stat-sub {
        font-size: 0.65rem;
    }
}