/* Section container */
.section-quote {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff, #cbe2f1);
    color: #000000;
    min-height: 60vh; /* Full viewport height */
    text-align: center;
    box-sizing: border-box;
}

/* Decorative overlay circle */
.section-quote::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1); /* brighter circle */
    border-radius: 50%;
    z-index: 0;
}

/* Inner content wrapper */
.quote-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Headline */
.quote-title {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222222; /* dark for contrast */
}

/* Subtitle / description */
.quote-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #555555; /* medium dark for readability */
}

/* Button */
.quote-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #989696, #0e0e0f);
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(13, 221, 9, 0.25);
    transition: all 0.3s ease;
}
.quote-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(13, 221, 9, 0.25);
}
/* Headline - optional extra lift */
.quote-title {
    font-size: 3rem;
    margin-top: -60px; /* closer to subtitle */
    font-weight: 700;
    letter-spacing: 1px;
    color: #222222;
    font-family: "Cinzel", serif;
}

/* Subtitle / description - optional adjustment */
.quote-subtitle {
    font-size: 2rem;
    margin-bottom: 30px; /* closer to button */
    color: #555555;
    font-family: "Montserrat Alternates", sans-serif;
}
/* GIF container */
.quote-gif {
    position: absolute; /* position relative to section */
    bottom: -30px; /* adjust vertical position */
    right: 555px; /* adjust horizontal position */
    max-width: 350px; /* control size */
    z-index: 0; /* behind text if needed */
}

/* Make sure content stays on top */
.section-quote .quote-content {
    position: relative;
    z-index: 1;
}
