* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  body {
    background-color: #f8f5f2;
    color: #333;
    line-height: 1.6;
  }
.vintage-abouthome-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    
}

.vintage-abouthome-header {
    padding: 20px 0;
}

.vintage-abouthome-logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.vintage-abouthome-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0;
    border-radius: 20px;
    margin-bottom: 40px;
}

.vintage-abouthome-hero-content {
    flex: 1;
    padding: 20px;
}

.vintage-abouthome-hero-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.vintage-abouthome-hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.vintage-abouthome-button {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.vintage-abouthome-button:hover {
    background-color: #333;
    text-decoration: none !important;
    color: white;
}

.vintage-abouthome-button-icon {
    margin-left: 10px;
    font-size: 20px;
}

.vintage-abouthome-hero-image {
    flex: 1;
    max-width: 50%;
}

.vintage-abouthome-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.vintage-abouthome-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    
}

.vintage-abouthome-back-to-top:hover {
    background-color: #f9f9f9;
}

.vintage-abouthome-back-to-top svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .vintage-abouthome-hero {
        flex-direction: column;
        gap: 30px;
    }

    .vintage-abouthome-hero-content, 
    .vintage-abouthome-hero-image {
        max-width: 100%;
    }

    .vintage-abouthome-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .vintage-abouthome-hero-title {
        font-size: 36px;
    }

    .vintage-abouthome-back-to-top {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .vintage-abouthome-hero {
        padding: 20px 0;
    }

    .vintage-abouthome-hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .vintage-abouthome-hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .vintage-abouthome-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}




/* band */

 
.vintage-bandhomeslide-container {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
    background-color: #3e2d94;
    /* margin-bottom: 50px; */
    padding-top: 10px;
    z-index: -20;
}

.vintage-bandhomeslide-track {
    display: flex;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
}

.vintage-bandhomeslide-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.vintage-bandhomeslide-star {
    color: white;
    font-size: 24px;
    margin: 0 15px;
}

.vintage-bandhomeslide-text {
    font-size: 20px;
    color: white;
    font-weight: 400;
    padding: 0 15px;
}

/* Make the stars look like 4-pointed stars */
.vintage-bandhomeslide-star::before {
    content: "✦";
}

/* //////////////////////////// */
.about-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
    background-color: rgb(234, 227, 227);
}

.hero {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.tagline {
    font-size: 1.5rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 1rem;
}

.brand-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #3e2d94;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: #3e2d94;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #8db026;
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .brand-name {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}



/* About */
.coreimpact-abouthome-container {
    width: 100%;
    padding: 30px 40px;
    /* max-width: 1150px; */
    background: white;
    margin: 0 auto; /* FIX: Centers the entire section */
}

.coreimpact-abouthome-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.coreimpact-abouthome-title-section {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.coreimpact-abouthome-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3e2d94;
    margin-bottom: 1px;
    position: relative;
    display: inline-block;
}

.coreimpact-abouthome-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3e2d94;
    border-radius: 2px;
}

.coreimpact-abouthome-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    margin-top: 20px;
}

.coreimpact-abouthome-content-section {
    display: grid;
    grid-template-columns: 1fr ;
    /* gap: 60px; */
    align-items: center;
    justify-content: center; /* FIX: aligns grid content properly */
    border-radius: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.coreimpact-abouthome-text-content {
    animation: slideInLeft 0.8s ease-out;
}

.coreimpact-abouthome-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #3e2d94;
    margin-bottom: 25px;
    line-height: 1.3;
}

.coreimpact-abouthome-description {
    font-size: 15px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.coreimpact-abouthome-highlights {
    margin-bottom: 35px;
}

.coreimpact-abouthome-highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 7px;
    padding: 6px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreimpact-abouthome-highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(215, 49, 34, 0.1);
}

.coreimpact-abouthome-highlight-icon {
    color: #3e2d94;
    font-size: 15px;
    margin-right: 12px;
    margin-top: 2px;
    font-weight: bold;
}

.coreimpact-abouthome-highlight-text {
    color: #495057;
    font-size: 12px;
    line-height: 1.6;
}

.coreimpact-abouthome-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #3e2d94;
    color: white;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: .8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 49, 34, 0.3);
}

.coreimpact-abouthome-button:hover {
    background: #b82818;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 49, 34, 0.4);
    color: white;
}

.coreimpact-abouthome-button-icon {
    margin-left: 10px;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.coreimpact-abouthome-button:hover .coreimpact-abouthome-button-icon {
    transform: translateX(5px);
}

.coreimpact-abouthome-image-content {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.coreimpact-abouthome-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.coreimpact-abouthome-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 3px solid #3e2d94;
    border-radius: 20px;
    z-index: -1;
}

.coreimpact-abouthome-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.coreimpact-abouthome-image:hover {
    transform: scale(1.03);
}

.coreimpact-abouthome-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    animation: fadeInUp 1s ease-out;
}

.coreimpact-abouthome-stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreimpact-abouthome-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(62, 45, 148, 0.15);
}

.coreimpact-abouthome-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3e2d94;
    margin-bottom: 10px;
}

.coreimpact-abouthome-stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.coreimpact-abouthome-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #3e2d94;
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(62, 45, 148, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.coreimpact-abouthome-back-to-top:hover {
    background: #3e2d94;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(215, 49, 34, 0.4);
}

.coreimpact-abouthome-back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .coreimpact-abouthome-content-section {
        gap: 40px;
        padding: 40px;
    }

    .coreimpact-abouthome-main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .coreimpact-abouthome-container {
        padding: 20px 15px;
    }

    .coreimpact-abouthome-main-title {
        font-size: 2.2rem;
    }

    .coreimpact-abouthome-subtitle {
        font-size: 1rem;
    }

    .coreimpact-abouthome-content-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 10px 5px;
    }

    .coreimpact-abouthome-section-title {
        font-size: 1.6rem;
    }

    .coreimpact-abouthome-description {
        font-size: 13px;
        margin-top: -60px;
    }

    .coreimpact-abouthome-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .coreimpact-abouthome-stat-number {
        font-size: 2rem;
    }

    .coreimpact-abouthome-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    .connect-band h2 {
    font-size: 16px;
    margin: 0;
    font-weight: bold;
}

.connect-band p {
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
}

}

@media (max-width: 480px) {
    .coreimpact-abouthome-main-title {
        font-size: 1.8rem;
    }

    .coreimpact-abouthome-content-section {
        padding: 25px 20px;
    }

    .coreimpact-abouthome-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
