/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: black;
    /* Fallback for video loading issue */
}

/* Logo */
.logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo img {
    width: 130px;
    height: auto;
}

/* Navigation Dots */
.scroll-nav {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 100;
}

.scroll-nav ul {
    list-style: none;
    padding: 0;
}

.scroll-nav ul li {
    margin: 10px 0;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.scroll-nav ul li.active {
    opacity: 1;
}

/* Pages */
.page {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.page1 {
    position: relative;
    text-align: center;
    z-index: 0;
}

.page1 .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page1 .content {
    color: white;
    text-align: center;
}

.page1 h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

.page1 p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Page 2 Styles */
.page2 {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    /* Reduced height for rectangular layout */
    padding: 20px;
}

/* Appointment Button */
.appointment-btn {
    background-color: white;
    color: black;
    font-size: 1.5rem;
    /* Increased font size */
    padding: 20px 40px;
    /* Increased padding */
    border: 2px solid white;
    cursor: pointer;
    margin-bottom: 40px;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: underline;
    text-decoration-color: black;
    /* Added black underline */
}

.appointment-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .appointment-btn {
        font-size: 1rem;  /* Reduce font size on mobile */
        padding: 12px 24px;  /* Adjust padding to fit mobile screens */
    }
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Ensure it's on top */
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    position: relative;
    /* Important for positioning the close button */
}

/* Close Button (Cross) */
.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: black;
    z-index: 1050;
    /* Ensure the cross button is above all other elements in the popup */
}

/* Buttons */
.call-btn,
.whatsapp-btn {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    color: white;
    text-align: center;
    border-radius: 5px;
}

.call-btn {
    background-color: black;
}

.whatsapp-btn {
    background-color: #25d366;
    /* WhatsApp green */
}

.call-btn:hover,
.whatsapp-btn:hover {
    opacity: 0.9;
}


.info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #000; /* Pure black background for the container */
    color: #fff; /* White font */
}

.info-block {
    text-align: center;
    border: 1px solid #000; /* Black border/frame */
    padding: 15px;
    border-radius: 5px;
    background-color: #000; /* Pure black background for blocks */
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1); /* Subtle white shadow */
}

.info-block h3 {
    margin-bottom: 10px;
    color: #fff; /* White font for headings */
}

.info-block p {
    margin: 0;
    color: #ccc; /* Light gray for better readability */
    line-height: 1.6;
}

.info-block a {
    color: #1e90ff; /* Bright blue for links */
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-container {
    margin-bottom: 40px; /* Add space below the info container,edit both */
}

.video-container {
    margin-top: 20px; /* Additional space above the video if needed,edit both */
    position: relative;
    z-index: 1;
}


@media screen and (min-width: 768px) {
    .info-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .info-block {
        flex: 1;
        max-width: 300px;
    }
}


/* Footer video container */
/* Video container */
.video-container {
    width: 100%;
    /* Full width of the page */
    display: flex;
    justify-content: center;
    /* Center the video horizontally */
    margin-top: auto;
    /* Push video container to the bottom */
    margin-bottom: 40px;
    /* Extra margin at the bottom to push it further down */
}

/* Video Styling */
.background-video {
    width: 100%;
    /* Make it take the full width of the page */
    height: 200px;
    /* Set video height */
    object-fit: cover;
    /* Maintain aspect ratio */
    border-radius: 8px;
    /* Optional: Add rounded corners */
}

/* Additional Pages */
.page3,
.page4,
.page5 {
    background-color: black;
    color: white;
    text-align: center;
}

.page3 h1,
.page4 h1,
.page5 h1 {
    font-size: 3rem;
    text-transform: uppercase;
}

/* Page 2 Video Container */
.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 60px; /* Added space between bottom video and Page 3 artist image */
    /* Extra margin at the bottom */
}

/* Artist Section on Page 3 */
.artist-section {
    text-align: center;
    margin-top: 60px; /* Space between video and artist image */
    margin-bottom: 40px; /* Space between sections */
    display: inline-block;
}

.artist-section {
    text-align: center;
    /* Center the heading and image horizontally */
}


.artist-section {
    margin-right: 40px;
    /* Increased space between sections */
    margin-bottom: 40px;
    /* Increased space between rows */
    display: inline-block;
    /* Align sections side by side */
}

.artist-image {
    display: block;
    /* Ensures images do not have extra space below */
    width: 100%;
    /* Adjust based on your image size preference */
    height: auto;
}

.view-gallery-btn {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    /* Adjust margin as needed */
    transition: background-color 0.3s ease-in-out;
}

.view-gallery-btn {
    font-size: 1.5rem;
    /* Increase the font size for a larger button */
    padding: 20px 40px;
    /* Increase padding for a more prominent button */
    background-color: transparent;
    /* Make the background transparent */
    color: white;
    /* Set the text color to white */
    border: 2px solid white;
    /* White border around the button */
    border-radius: 8px;
    /* Rounded corners for the button */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
    /* Smooth hover effect */
}

.view-gallery-btn:hover {
    background-color: white;
    /* Background turns white on hover */
    color: black;
    /* Text turns black on hover */
    transform: scale(1.1);
    /* Enlarge slightly on hover */
}



.view-gallery-btn:hover {
    background-color: #555;
}

.artist-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    color: white;
    text-align: center;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    max-width: 350px;
    transition: transform 0.3s ease-in-out;
}

.artist-section:hover {
    transform: scale(1.05);
    /* Hover effect */
}

/* Image styling */
.artist-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* View Gallery button styling */
.view-gallery-btn {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 1rem;
    margin-bottom: 20px;
    /* Adds space between the button and the artist name */
    cursor: pointer;
    text-transform: uppercase;
}

.view-gallery-btn:hover {
    background-color: #555;
}

/* Artist name styling */
.artist-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    /* Space between name and specialty */
}

/* Specialty text styling */
.specialty {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 15px;
}

/* Description text styling */
.description {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
}

/* FAQ Section */
.page4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    padding: 20px;
    font-size: 1rem;
}

.page4 h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* FAQ Section */
/* FAQ Section */
.page4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    padding: 20px;
    font-size: 1rem;
}

.page4 h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.faq-container {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid white;
    /* Add white border to all tabs */
    margin-bottom: 10px;
    border-radius: 5px;
    /* Optional: Rounded corners */
    overflow: hidden;
    /* Ensures clean visuals when content expands */
}

.faq-question {
    width: 100%;
    background-color: black;
    /* Default background color */
    color: white;
    text-align: left;
    font-size: 1.2rem;
    padding: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question.expanded {
    background-color: grey;
    /* Change background to grey when expanded */
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    /* Initially collapsed */
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 1rem;
    padding: 0 10px;
    /* Padding only applies when expanded */
    color: #f0f0f0;
    background-color: #1a1a1a;
    /* Optional: Different background for content */
    border-top: 1px solid white;
    /* White line between question and answer */
}

.faq-answer.expanded {
    padding: 10px;
    /* Add padding when expanded */
}

.page5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    padding: 20px;
}

.page5 h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page5 p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.map-container {
    width: 100%;
    max-width: 800px;
    /* Limit the width for larger screens */
    margin: 20px auto;
    border: 2px solid white;
    /* Optional: Add a border */
    border-radius: 10px;
    /* Optional: Rounded corners */
    overflow: hidden;
    /* Ensures no overflow issues with rounded corners */
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Gallery Section */
.page3 {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Gallery Page Heading */
.page3 h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    /* Ensure the text is centered */
    margin-top: 0;
    /* Optional: Removes any top margin if needed */
}



/* Gallery Grid */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

/* Footer Section */
.page5 .footer {
    background-color: black;
    /* Black background */
    color: white;
    /* White text */
    text-align: center;
    padding: 40px 0;
    font-size: 1.2rem;
    position: relative;
}

/* Heading "FOLLOW" */
.page5 .footer h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    text-transform: uppercase;
}

/* Social Media Icons */
.page5 .footer .social-icons a {
    color: white;
    /* Icon color */
    margin: 0 15px;
    /* Space between icons */
    font-size: 2rem;
    /* Icon size */
    text-decoration: none;
    /* Remove underline */
}

.page5 .footer .social-icons a:hover {
    color: #f0f0f0;
    /* Change color when hovered */
}

/* Footer Section */
.gallery-page .footer {
    background-color: black;
    /* Black background */
    color: white;
    /* White text */
    text-align: center;
    padding: 40px 0;
    font-size: 1.2rem;
    position: relative;
}

/* Heading "FOLLOW" */
.gallery-page .footer h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    text-transform: uppercase;
}

/* Social Media Icons */
.gallery-page .footer .social-icons a {
    color: white;
    /* Icon color */
    margin: 0 15px;
    /* Space between icons */
    font-size: 2rem;
    /* Icon size */
    text-decoration: none;
    /* Remove underline */
}

.gallery-page .footer .social-icons a:hover {
    color: #f0f0f0;
    /* Change color when hovered */
}

/* Footer Section for GALLERY and GALLERY2 */
.footer {
    background-color: black;
    /* Black background */
    color: white;
    /* White text */
    text-align: center;
    padding: 40px 0;
    font-size: 1.2rem;
    position: relative;
}

/* Heading "FOLLOW" */
.footer h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    text-transform: uppercase;
}

/* Social Media Icons */
.footer .social-icons a {
    color: white;
    /* Icon color */
    margin: 0 15px;
    /* Space between icons */
    font-size: 2rem;
    /* Icon size */
    text-decoration: none;
    /* Remove underline */
}

.footer .social-icons a:hover {
    color: #f0f0f0;
    /* Change color when hovered */
}

@media only screen and (max-width: 600px) {

    /* #faq_section{height: 50vh;} */
    .page {
        height: 100%;
    }

    .page1 h1 {
        font-size: 3rem
    }

    .page1 p {
        font-size: 1rem
    }

    .page3 {
        padding: 0px 40px;
        display: block;


        margin-top: -28%;
    }

 /* General Styles */
.artist-section {
    margin: 20px 0; /* Adds vertical margin between sections */
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page4 h1 {
    margin-bottom: 8px;
    margin-top: 16px;
}

.info-container {
    margin-top: 20px;
    padding: 0 10px; /* Padding to ensure the content inside the container doesn't touch the sides */
}

.info-block {
    margin: 10px 0; /* Adds margin between the info blocks */
}

.info-block p {
    font-size: 14px;
    line-height: 1.4;
}

.appointment-btn {
    margin-bottom: 18px;
}

/* Video Container */
.video-container {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 40px; /* Adds spacing before video */
}

.background-video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mobile View Adjustments */
@media only screen and (max-width: 375px) {
    .page {
        height: auto;
        overflow: auto;
    }

    .page4 h1 {
        padding-top: 15%;
        font-size: 1.6rem;
    }

    .artist-section {
        margin: 10px 0; /* Increased margin to create space between sections */
        padding: 6px;
    }

    .info-container, .info-block {
        padding-left: 4px;
        padding-right: 4px;
    }

    .page4 {
        overflow-x: hidden;
        overflow-y: auto;
    }
}

/* Tablet Screen (600px to 800px) Adjustments */
@media (min-width: 600px) and (max-width: 800px) {
    .page {
        height: auto;
    }

    .page3 {
        margin-top: 10%;
    }

    .artist-section {
        margin: 10px 0; /* Adds spacing between sections */
        padding: 8px;
    }
}

/* Box Sizing for Better Layout */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Ensuring .artist-section stays separate from the video */
.page3 {
    margin-bottom: 60px; /* Ensure enough space below the artist section */
}

/* Flexbox Layout for .artist-section to make sure content doesn't overlap */
.artist-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px; /* Adds space between sections */
}

}