body {
    font-family: "Roboto", sans-serif;
    background-color: rgb(239, 240, 242);
    margin: 0;
}

.fullpage {
    height: 100vh;
}

@media (max-width: 768px) {
    .fullpage {
        height: auto;
    }
}


/* Navigation Bar */
.navbar {
    background-color: transparent;
    margin-top: 12px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
}

.navbar-brand-image {
    max-width: 72px;
    max-height: 72px;
    width: auto;
    height: auto;
}

.navbar-brand-text {
    font-size: 1.25rem;
    margin-left: 12px;
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 0px;
}

.navbar a {
    /* color: #333; */
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.nav-link.launch {
    background-color: #212121 !important;
    color: white;
}

.launch:hover {
    color: #FFC107 !important;
}

@media (max-width: 768px) {
    .navbar-brand-image {
        max-width: 50px;
        max-height: 50px;
    }
    
    .navbar-brand-text {
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        border: 1px solid #ccc;
        margin: 2px 0;
        padding: 8px 15px;
        border-radius: 0px;
        background-color: rgb(239, 240, 242);
    }
    
    .section {
        padding: 20% 0% !important;
    }

    #navbarNavDropdown {
        background-color: rgb(239, 240, 242);
    }
}

.section {
    padding: 5% 0%;
}

/* Styles for Section 1 Content */
.section1 h1 {
    font-size: 2.5rem;
}

.section1 h2 {
    font-size: 1.5rem;
}

.section1 p {
    font-size: 1rem;
}

.section1 {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.align-self-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.launch {
    color: #212121;
}
.launch:hover {
    color: #FFC107;
}

.play-store-link {
    margin-left: -16px;
    display: inline-block;
}

.demo-video {
    width: 100%;
    max-height: 70vh;
}

@media (max-width: 768px) {
    .section1 {
        height: auto;
        min-height: 50vh;
        justify-content: flex-start;
        margin-top: 48px;
    }

    .section1 p,h1 {
        text-align: center;
    }

    .main-screenshot {
        margin-top: 2em;
        margin-bottom: 2em;
    }

    .demo-video {
        margin: 10% 0%;
    }
}


/* CSS for Section 2 (Make It Yours) */
.img-section {
    padding: 15vh 0%;
}

.img-section h1 {
    text-align: center;
    margin-bottom: 5vh;
    color: #212121;
}

.image-container {
    padding: 0px 24px;
    text-align: center;
    max-height: 60vh;
}

.image-caption {
    text-align: center;
    margin-top: 8px; /* Space between the image and the text */
    font-size: 0.9em; /* Smaller font size for captions */
    color: #666; /* Dark grey color for text */
}

.carousel {
    margin: 0
}

.carousel-inner {
    position: relative;
}

.carousel-image {
    width: 70%; /* Set the image width to 70% of the carousel container */
    margin-left: 15%; /* Center the image and allow space for controls */
    display: block;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 0;
    filter: invert(100%);
}

.carousel-control-next {
    right: 0;
    filter: invert(100%);
}

@media (min-width: 992px) {
    #section2Carousel {
        display: none;
    }
    #section3Carousel {
        display: none;
    }
    #section4Carousel {
        display: none;
    }
}



/* CSS for Section 3 (Made by Sully and Social Links) */
table, tbody, tr, th, td {
    background-color: rgba(0, 0, 0, 0.0) !important;
}

.social-table {
    width: 100px;
}

.social-icon {
    width: 24px;
}

.social-text {
    width: calc(100% - 24px); /* Adjust the width of the text column */
}

.social-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.social-link i {
    font-size: 24px; /* Adjust the size of the icons as needed */
    margin-right: 10px; /* Add spacing between icon and text */
}

.social-link:hover {
    color: #555;
}

@media (max-width: 768px) {
    /* Hide QR code on mobile */
    .qrcode {
        display: none;
    }
    
    /* Adjust text and social links columns to stack and center content */
    .section5 .col-md-8, .section5 .col-md-2.mr-auto {
        flex: 0 0 100%; /* Ensure each takes full width */
        max-width: 100%; /* Remove any max-width constraints */
        text-align: center; /* Center text and content */
        display: block; /* Override any flex-end alignments */
    }

    .section5 .social-table {
        width: auto; /* Adjust table width to fit content */
        margin: 5vh auto 0 auto; /* Center table in its container */
    }
    
    .section5 .d-flex {
        justify-content: center; /* Center flex items when stacking */
    }
}