/* 
 * Hero Section Styles - Home Page
 * ARISE Landing Page
 */

.hero-section {
    padding: 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    align-content: center;
}

.hero-section .wraper {
    width: calc(100% + 234px);
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.hero-section .row {
    margin: 0;
    min-height: 712px;
    position: relative;
    flex-wrap: nowrap;
}

.hero-section .col-lg-4 {
    padding: 0;
    display: flex;
    align-items: stretch;
    position: relative;
}

.hero-content {
    text-align: center;
    position: relative;
    padding: 20px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-shrink: 1;
    align-items: center;
}

.hero-decorative-dot {
    position: absolute;
    width: 65px;
    height: 65px;
    background-color: var(--primary-dark-blue);
    border-radius: 50%;
    z-index: 3;
}

.hero-content .hero-decorative-dot.top-right {
    top: 20px;
    right: 20px;
}

.hero-image-left .hero-decorative-dot.bottom-left {
    bottom: 0px;
    transform: translateY(50%);
    right: 100px;
    z-index: 3;
}

.hero-title {
    font-size: 7.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 62px;
    line-height: 1.1;
    position: relative;
}

.hero-title-text {
    display: inline-block;
}

.audio-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    border-radius: 50%;
    padding: 0.2rem;
}

.audio-play-btn:hover {
    opacity: 0.8;
    transform: translateY(-50%) scale(1.1);
}

.audio-play-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.audio-play-btn.playing {
    background-color: var(--teal);
    opacity: 1;
}

.audio-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
}

.hero-cta-button-container {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.hero-cta-button {
    display: inline-block;
    background-color: var(--teal);
    color: black;
    border: 2px solid var(--primary-dark-blue);
    padding: 40px 60px;
    border-radius: 100px;
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    transform: rotate(-1.13deg);
    width: fit-content;
    position: relative;
    z-index: 2;
}

.hero-cta-button-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-dark-blue);
    border-radius: 100px;
    z-index: 1;
    transform: rotate(0deg);
}

.hero-description {
    font-size: 1.5625rem;
    color: var(--text-dark);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero {
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 1.5625rem;
    white-space: nowrap;
    height: 77px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-primary {
    background-color: var(--primary-dark-blue);
    color: #ffffff;
}

.btn-hero-light-blue {
    background-color: var(--light-blue);
    color: #ffffff;
}

.btn-hero-secondary {
    background-color: var(--teal);
    color: #ffffff;
}

.hero-image-left {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 496px;
    height: 631px;
    transform: rotate(3.83deg);
    transform-origin: top left;
}

.hero-image-left img {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    display: block;
    object-fit: cover;
    opacity: 1;
}

.hero-image-right {
    position: relative;
    width: 527px;
    height: 649px;
    transform: rotate(-4.4deg);
    transform-origin: top right;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    display: block;
    object-fit: cover;
    opacity: 1;
}
