/* Gift Section */
.gift {
    padding: 10vh 5vw; /* Adjusted vertical padding */
    color: var(--text-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    background-color: rgb(244, 242, 234);
}

@media (min-width: 768px) {
    .gift {
        height: 600px;
    }
}

.gift::before {
    display: none;
}

.gift .palm-tree {
    position: absolute;
    bottom: 10vh;
    left: 2vw;
    width: clamp(200px, 16vw, 240px);
    transform: rotate(5deg);
}

.gift .rocket {
    position: absolute;
    top: 5vh;
    right: 5vw;
    width: clamp(150px, 12vw, 180px);
    transform: rotate(30deg);
    z-index: 1;
}

.gift .lemon-1 {
    position: absolute;
    top: 5vh;
    left: 5vw;
    width: clamp(120px, 12vw, 190px);
    transform: rotate(-20deg);
    z-index: 1;
}

.gift .lemon-2 {
    position: absolute;
    top: 15vh;
    left: 15vw;
    width: clamp(120px, 12vw, 190px);
    transform: rotate(10deg);
    z-index: 1;
}

.gift .lemon-3 {
    position: absolute;
    top: 25vh;
    left: 5vw;
    width: clamp(120px, 12vw, 190px);
    transform: rotate(-5deg);
    z-index: 1;
}

.gift .orange-1 {
    position: absolute;
    bottom: 5vh;
    right: 5vw;
    width: clamp(120px, 12vw, 190px);
    transform: rotate(20deg);
    z-index: 1;
}

.gift .orange-2 {
    position: absolute;
    bottom: 15vh;
    right: 12vw;
    width: clamp(120px, 12vw, 190px);
    transform: rotate(-10deg);
    z-index: 1;
}

.gift .orange-3 {
    position: absolute;
    bottom: 25vh;
    right: 5vw;
    width: clamp(120px, 12vw, 190px);
    transform: rotate(5deg);
    z-index: 1;
}


.gift__container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px; /* Increased from 600px */
    margin: auto;
    text-align: center; /* Center text within the container */
    position: relative;
    z-index: 2;
}

.gift__title {
    font-size: 4rem;
}

.gift__text {
    font-size: 1.5rem; /* Reduced font size */
    max-width: 100%; /* Take full width of the container */
    margin: auto;
    line-height: 1.6;
}

.gift__account-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.gift__account {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    word-spacing: 0.5em;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.gift__copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift__copy-btn img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease-in-out;
}

.gift__copy-btn:hover img {
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .gift__container {
        padding: 0 20px;
    }

    .gift__title {
        font-size: 2.5rem;
    }

    .gift__text,
    .gift__account {
        font-size: 1.1rem;
    }

    .gift__account-container {
        flex-direction: column;
    }
}