
@font-face {
    font-family: 'Retro Signature';
    src: url('../font/RetroSignature.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.rap-container {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.rap-retro-title {
    font-family: 'Retro Signature', cursive;
    font-size: 118px;
    font-weight: normal;
    margin: 0;
    line-height: 0.8;
    display: flex;
    align-items: center;
}

.rap-subtitle {
    max-width: 900px;
    font-size: 32px;
    font-weight: 500;
    margin: 20px auto;
    line-height: 1.3;
}

.rap-text-block {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
}

.rap-text-block p {
    margin-bottom: 20px;
}

.rap-text-white {
    color: #eee;
}

.rap-section {
    padding: 80px 0;
    position: relative;
}



.rap-inner-grid {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
}

.rap-grid-reverse {
    flex-direction: row-reverse;
}

.rap-text-side {
    flex: 1;
}

.rap-image-side {
    flex: 1;
    position: relative;
}

.rap-image-side img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.rap-intro {
    padding: 0;
    position: relative;
    z-index: 1;
}

.rap-intro-bg-top {
    
    
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    height: calc(100% - 50px);
    
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.rap-intro-bg-bottom {
    background: #f9f5ed;
    height: auto;
    width: 100%;
    position: absolute;
    top: calc(100% - 120px);
    bottom: 0;
    left: 0;
    z-index: -1;
}

.rap-intro-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.rap-intro-headers {
    text-align: center;
    margin-bottom: 60px;
}

.rap-intro-headers .rap-retro-title {
    justify-content: center;
}

.rap-intro-subtitle {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    margin-top: 20px;
}

.rap-intro-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.rap-intro-image-col {
    flex: 0 0 40%;
}

.rap-intro-image-col img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(50px);
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rap-intro-text-col {
    flex: 1;
}

.rap-text-white {
    color: #eee;
}


.rap-slider {
    position: relative;
    overflow: hidden;
}

.rap-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.rap-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.rap-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.rap-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.rap-dot.active {
    background: #fff;
}


.rap-culture-headers {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.rap-culture-headers .rap-retro-title {
    justify-content: center;
}


.rap-community .rap-inner-grid,
.rap-future .rap-inner-grid {
    padding: 0;
    max-width: 100%;
    margin: 0;
}

.rap-community .rap-text-side,
.rap-future .rap-text-side {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rap-community .rap-image-side,
.rap-future .rap-image-side {
    padding: 0;
}

.rap-community .rap-image-side img,
.rap-community .rap-slides,
.rap-community .rap-slide,
.rap-community .rap-image-side,
.rap-future .rap-image-side img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    min-height: 600px;
}

.rap-cta-button {
    display: inline-block;
    background-color: #baa287;
    color: #fff;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.rap-cta-button:hover {
    background-color: #947e65;
    color: #fff;
}

.rap-cta-subtitle {
    color: #5e728e;
    font-size: 32px;
    margin: 20px auto 40px;
    max-width: 890px;
    line-height: 1.6;
}


@media (max-width: 1024px) {
    .rap-retro-title {
        font-size: 80px;
    }

    .rap-subtitle {
        font-size: 26px;
    }

    .rap-inner-grid {
        flex-direction: column;
        gap: 40px;
    }

    .rap-grid-reverse {
        flex-direction: column;
    }

    .rap-intro-grid {
        flex-direction: column-reverse;
    }

    .rap-future {
        background: #4a231e !important;
    }

    .rap-future .rap-inner-grid {
        padding: 40px;
    }

    .rap-future .rap-text-side {
        padding: 0;
    }

    .rap-future .rap-image-side {
        padding: 0;
    }

    .rap-intro-image-col img {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .rap-retro-title {
        font-size: 60px;
    }

    .rap-subtitle {
        font-size: 22px;
    }

    .rap-cta-subtitle {
        font-size: 18px;
        margin: 10px auto 20px;
        line-height: 1.4;
    }

    .rap-text-block {
        font-size: 16px;
    }

    .rap-section {
        padding: 40px 0;
    }
}