/* Main Section */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #05020e;
}

.first-section {
    margin-top: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    width: 100%;
    position: relative;
    background-color: #05020e;
    background-image: url('https://ai-tattoo-website-images.s3.us-east-1.amazonaws.com/newhomeBackground01_small_desktop.jpg');
    background-position: center;
    overflow: hidden;
    background-size: cover;
}

.first-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.section-children {
    z-index: 2;
    color: #fff;
    text-align: left;
    padding: 20px;
}

.section-content h1 {
    font-size: 2.5rem;
}

.main-section-benefits {
    list-style: none;
    padding: 0;
    font-size: 17px;
}

.get-started-button {
    background-color: #8a3ab9;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.new-user-note {
    font-size: 0.9rem;
    color: #f8f5f5;
    display: block;
    margin-top: 2px;
    margin-bottom: -17px;
}

.section-image-container {
    display: flex;
    justify-content: center;
    margin-top: -10px;
    position: relative;
    z-index: 2;
}

.section-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .first-section {
        flex-direction: column;
        background-image: url('https://ai-tattoo-website-images.s3.us-east-1.amazonaws.com/newhomeBackground02_small_mobile.jpg');
    }

    .section-children {
        text-align: center;
    }

    .main-section-title {
        font-size: 1.8rem;
    }

    .get-started-button {
        font-size: 1.2rem;
    }

    .section-image-container {
        margin-top: 10px;
        width: 100%;
    }
}

/* FAQ Section */
.shortFAQ-container {
    margin-top: 70px;
    padding: 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.shortFAQ-header {
    font-size: 28px;
    margin-bottom: 20px;
    color: #f39c12;
}

.shortFAQ-intro {
    font-size: 24px;
    margin-bottom: 40px;
    width: 40%;
    margin: 0 auto;
}

.shortFAQ-section {
    max-width: 800px;
    margin: 20px auto;
}

.shortFAQ-item {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.shortFAQ-item-title {
    font-size: 22px;
    color: #f39c12;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shortFAQ-item-content {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin-top: 10px;
    display: none;
}

.shortFAQ-item.open .shortFAQ-item-content {
    display: block;
}

.shortFAQ-arrow {
    transition: transform 0.3s ease;
}

.shortFAQ-arrow.open {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .shortFAQ-header {
        font-size: 24px;
    }

    .shortFAQ-intro {
        font-size: 20px;
        width: 80%;
    }

    .shortFAQ-item-title {
        font-size: 20px;
    }

    .shortFAQ-item-content {
        font-size: 16px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 40px;
    background-color: #111;
    color: #fff;
    text-align: center;
}

.gallery-header {
    font-size: 28px;
    color: #f39c12;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-image {
    width: 100%;
    border-radius: 10px;
}

/* Main styling for accessibility button */
.accessibility-button {
    position: fixed;
    top: 20px;
    right: 20px; /* This will place it on the right */
    background-color: #007bff; /* Blue color */
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Icon inside the button (can replace with any accessibility icon) */
.accessibility-button i {
    pointer-events: none;
}

/* For mobile and smaller screens */
@media (max-width: 768px) {
    .accessibility-button {
        top: 15px;
        right: 15px;
        padding: 10px;
    }
}

/* Style for the SEO Links Section */
.seo-links {
    background-color: #070606;
    padding: 20px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.seo-links h2 {
    font-size: 24px;
    font-weight: bold;
    color: #f39c12;
    margin-bottom: 15px;
    text-align: center;
}

.seo-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seo-links ul li {
    margin: 10px 0;
}

.seo-links ul li a {
    text-decoration: none;
    color: #5a75d5;
    font-size: 18px;
    transition: color 0.3s ease;
}

.seo-links ul li a:hover {
    color: #f39c12;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .seo-links ul {
        flex-direction: row;
        justify-content: center;
    }

    .seo-links ul li {
        margin: 0 15px;
    }
}
