/* Overview Page Styles */

/* Breadcrumb */
.breadcrumb-section {
    background: #f9fafb;
}

.breadcrumb-section a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

/* Page Title Underline Animation */
.overview-title .w-16 {
    animation: expandWidth 0.8s ease;
}

/* Overview Content */
.overview-content p {
    line-height: 1.8;
    font-size: 1rem;
}

/* Download Brochure Card */
.brochure-card {
    transition: all 0.3s ease;
}

.brochure-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.brochure-card .w-12 {
    transition: all 0.3s ease;
}

.brochure-card:hover .w-12 {
    transform: scale(1.1);
}

/* Sticky Image */
.sticky {
    position: sticky;
    top: 6rem;
}

.overview-image {
    transition: transform 0.3s ease;
}

.overview-image:hover {
    transform: scale(1.02);
}

/* Contact Information Bar */
.contact-info-section {
    background: #f9fafb;
}

.contact-info-item {
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
}

.contact-info-item .w-12 {
    transition: all 0.3s ease;
}

.contact-info-item:hover .w-12 {
    transform: scale(1.1);
    background: #dbeafe;
}

/* Social Media Icons */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* App Store Badges */
.app-badge {
    transition: transform 0.3s ease;
}

.app-badge:hover {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .sticky {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .overview-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .contact-info-section .grid {
        grid-template-columns: 1fr;
    }
    
    .social-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Animation for Content */
.overview-content {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
