.center-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

#home .center-content {
    background-color: transparent;
    padding: 30px;
    box-shadow: none;
    z-index: 5;
}

.center-content h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.trc-text, .address-text {
    display: inline-block;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 5;
}

.btn {
    padding: 12px 30px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    position: relative;
}

.btn:hover {
    background-color: #555;
}

.shop-btn {
    background-color: #4CAF50;
    position: relative;
    overflow: hidden;
}

.shop-btn:hover {
    background-color: #3e8e41;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.8), 0 0 30px rgba(231, 76, 60, 0.5);
    transform: translateY(-3px);
}

.rent-btn {
    background-color: white;
    color: #333;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.rent-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@media (min-width: 1130px) {
    .center-content h1 {
        flex-direction: column;
        line-height: 1.2;
    }

    .trc-text, .address-text {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .center-content h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .buttons {
        gap: 15px;
    }

    .btn {
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .center-content h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
