/* Background Styling */
body {
    background: url('../img/black.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-align: center;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Title & Subtitle */
.page-title {
    font-size: 3rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.0rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Testimonies Container */
.testimonies-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* Individual Testimony Effect */
.floating-testimony {
    font-size: 1.4rem;
    opacity: 0; /* Initially hidden */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    transition: opacity 1.5s ease-in-out, transform 0.5s ease-in-out;
    cursor: pointer;
}

/* Hover Effect: Testimonies Brighten */
.floating-testimony:hover {
    opacity: 1 !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Increased Spacing Between Quotes - Uses More of the Screen */
.floating-testimony:nth-child(1) { top: 3%; left: 12%; }
.floating-testimony:nth-child(2) { top: 15%; right: 15%; }
.floating-testimony:nth-child(3) { top: 30%; left: 25%; }
.floating-testimony:nth-child(4) { top: 45%; right: 22%; }  
.floating-testimony:nth-child(5) { top: 60%; left: 12%; }   
.floating-testimony:nth-child(6) { top: 20%; right: 5%; }
.floating-testimony:nth-child(7) { top: 38%; left: 50%; }
.floating-testimony:nth-child(8) { top: 72%; left: 30%; }  
.floating-testimony:nth-child(9) { top: 72%; right: 30%; } 


/* Lightbox Pop-up */
.lightbox {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    box-sizing: border-box;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    color: #000;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 2px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #880808;
    background: none;
    border: none;
    outline: none;
    padding: 10px;
}

/* Move Buttons Lower */
.navigation {
    margin-top: 80px; /* ⬆ Increased spacing to push buttons down */
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 40px; /* Keeps some space below */
}


.btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    border: 1px solid white;
    border-radius: 0;
    transition: background 0.3s;
    color: #fff;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

