/* About Section Styling */
.about-over {
    position: relative;
    text-align: center;
    display: flex;
    bottom: 0;
    justify-content: center;
    align-items: center;
    height: 50vh;
    overflow: hidden;
    padding: 1rem; /* Add padding for smaller screens */
}

/* Background Title Text */
.about-title {
    font-size: clamp(10rem, 20vw, 25rem);
    color: rgba(128, 128, 128, 0.5);
    user-select: none;
    position: relative;
    z-index: 0;
    white-space: nowrap;
}

/* Foreground Subtitle Text - Placed on top of the title */
.about-subtitle {
    font-size: clamp(1rem, 3vw, 2rem);
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    white-space: nowrap;
    padding: 0 1rem;
}

.hiddenR {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease-out;
}

.showR {
  opacity: 1;
  transform: translateX(0);
}

.hiddenL {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease-out;
}

.showL {
  opacity: 1;
  transform: translateX(0);
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .about-title {
        font-size: clamp(5rem, 15vw, 10rem); /* Smaller font size for smaller screens */
    }

    .about-subtitle {
        font-size: clamp(0.8rem, 2.5vw, 1.5rem); /* Adjust subtitle size */
    }

    .about-over {
        height: 40vh; /* Reduce height for smaller screens */
    }
}


