/* public/assets/css/home.css */

.hero-section-redesigned {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-content-redesigned {
    text-align: left;
}

.hero-content-redesigned .hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content-redesigned .hero-subtext {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.hero-actions-redesigned .btn {
    margin-right: 10px;
    padding: 12px 30px;
    font-size: 1.1rem;
}

.hero-image-collage {
    position: relative;
    height: 400px;
}

.hero-image-collage img {
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-image-collage img:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.hero-image-collage .img-1 {
    width: 60%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-image-collage .img-2 {
    width: 50%;
    top: 50%;
    left: 40%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-image-collage .img-3 {
    width: 40%;
    bottom: 0;
    right: 0;
    z-index: 3;
}

/* Redesigned Ticketing Highlight Section */
.ticketing-highlight-section-redesigned {
    padding: 80px 0;
    background-color: #ffffff;
}

.ticketing-content-redesigned .ticketing-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ticketing-content-redesigned .ticketing-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.ticketing-content-redesigned .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.ticketing-content-redesigned .benefit-item {
    display: flex;
    align-items: center;
}

.ticketing-content-redesigned .benefit-icon {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 15px;
}

.ticketing-visual-redesigned img {
    max-width: 100%;
    height: auto;
}

/* Redesigned How It Works Section */
.how-it-works-section-redesigned {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.step-card-redesigned {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.step-card-redesigned:hover {
    transform: translateY(-5px);
}

.step-icon-redesigned {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

/* Redesigned User Types Section */
.user-types-section-redesigned {
    padding: 80px 0;
    background-color: #ffffff;
}

.user-type-card-redesigned {
    text-align: center;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.user-type-card-redesigned:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.user-type-icon-redesigned {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

/* Redesigned Features Section */
.features-section-redesigned {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-card-redesigned {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card-redesigned:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon-redesigned {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}