/* ScrollableCardRow.css */

/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1c1c1c;
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #1c1c1c; /* Fallback background color */
    color: #ffffff;
}

.profile-pic-container {
    margin-bottom: 20px; /* Space between the image and the text */
}

.profile-pic {
    width: 120px; /* Adjust size if needed */
    height: 120px; /* Adjust size if needed */
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.content-container {
    z-index: 1;
    padding-top: 0px;
    margin-top: 0px;
}

.name {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1s ease-in-out;
}

.tagline {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease-in-out;
}

.social-icons a {
    margin: 0 15px;
    font-size: 2em;
    color: #ffffff;
    transition: color 0.3s ease, transform 0.3s ease;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.social-icons a:hover {
    color: #ffd700;
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    margin-bottom: 5px;
    font-size: 1em;
}

.scroll-indicator i {
    font-size: 2em;
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the text */
    padding: 60px 10%;
    background-color: #292929;
    color: #ffffff;
    text-align: center; /* Center the text */
}

.about-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffd700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.about-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px; /* Space between paragraphs */
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1c1c1c;
    color: #ffd700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

/* Media Queries for Responsiveness */

/* Tablets */
@media (max-width: 992px) {
    .name {
        font-size: 3em;
    }
    .tagline {
        font-size: 1.2em;
    }
    .social-icons a {
        font-size: 1.5em;
        margin: 0 10px;
    }
    .about-section {
        padding: 40px 5%;
    }
}

/* Mobile Devices */
@media (max-width: 576px) {
    .hero-section {
        padding: 20px;
    }
    .name {
        font-size: 2.5em;
    }
    .tagline {
        font-size: 1em;
    }
    .social-icons a {
        font-size: 1.2em;
        margin: 0 8px;
    }
    .about-section {
        padding: 30px 10px;
    }
    .about-section h2 {
        font-size: 2em;
    }
    .about-section p {
        font-size: 1em;
    }
    .scroll-indicator {
        bottom: 10px; /* Adjust position for smaller screens */
        font-size: 0.8em; /* Smaller font size */
    }
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
