/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.alert {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    margin: 10px auto;
    width: 80%;
    max-width: 600px;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 180px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #ff5a5f;
}

/* Desktop Navigation */
.desktop-menu {
    list-style: none;
    display: flex;
}

.desktop-menu li {
    margin: 0 15px;
}

.desktop-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
}

.desktop-menu li a:hover {
    color: #ff5a5f;
}

/* Mobile Navigation */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 50px;
    background: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    z-index: 2000;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 18px;
}

.mobile-menu ul li a:hover {
    background: #ff5a5f;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .mobile-menu.show {
        display: block;
    }
}

/* Styling for clickable email */
.email-link {
    color: #ff5a5f; /* Change to any color you like */
    font-weight: bold;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: none; /* Ensure no underline appears */
    color: #d43f45; /* Slightly darker red on hover */
}

.nav-links {
    display: flex;
    flex-direction: column; /* Makes links stack vertically */
    gap: 5px; /* Adds spacing between links */
}

.nav-links a {
    color: #ff5a5f; /* Matches email link color */
    font-weight: bold;
    text-decoration: none;
    display: block; /* Ensures links take full width if needed */
}

.nav-links a:hover {
    color: #d43f45; /* Darker red on hover */
    text-decoration: none;
}



/* Hero Section / Slider */
.hero {
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 70%;
    margin-top: -80px;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* Translucent Text Box */
.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6); /* Dark translucent background */
    padding: 1vw 1vw; /* Responsive padding based on viewport */
    text-align: center;
    border-radius: 8px;
    color: white;
    width: max(30%, min-content); /* Adjusts width dynamically */
    max-width: 60%; /* Prevents it from becoming too wide */
    z-index: 100;
}

@media (max-width: 768px) {
    .slider-text {
        top: 65%; /* Moves text slightly lower */
        transform: translate(-50%, -50%); /* Centers it better */
        z-index: 100;
        font-size: 10px; /* Decrease text size */
        max-width: 80%; /* Limit width for smaller screens */
        text-align: center; /* Ensure centered alignment */
        padding: 10px; /* Reduce padding */
    }

    .slider-text h2 {
        font-size: 10px; /* Shrink heading */
        line-height: 1.3; /* Reduce spacing */
    }
}


@font-face {
    font-family: 'Permanent Marker';
    src: url('fonts/PermanentMarker-Regular.woff2') format('woff2'),
         url('fonts/PermanentMarker-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply the font */
.slider-text h2 {
    font-size: clamp(16px, 4vw, 32px); /* Responsive font size */
    margin-bottom: 10px;
    color: white;
    font-family: 'Permanent Marker', cursive;
}

.slider-text h3 {
    font-size: clamp(16px, 4vw, 32px); /* Responsive font size */
    margin-bottom: 10px;
    color: white;
    font-family: 'Permanent Marker', cursive;
}

.about-midheader h1 {
    font-family: 'Permanent Marker', cursive;
}


.slider-text p {
    font-size: clamp(12px, 2vw, 18px); /* Responsive font size */
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slider-text {
        max-width: 80%; /* Allows it to take more space on small screens */
        padding: 5vw; /* Adjust padding */
    }

    .slider-text h2 {
        font-size: 20px; /* Smaller text */
    }

    .slider-text p {
        font-size: 14px; /* Smaller text */
    }
}




.slide.active {
    display: block;
}

/* Navigation Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1000;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Sections */
section {
    padding: 40px 0px;
    text-align: center;
    background-color: #fff;
    margin-bottom: 30px;
}

h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

        .about {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 0px;
            text-align: justify;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 20px; /* Adds line spacing between paragraphs */S

        }

.about-header {
    width: 100%;
    height: 200px; /* Adjust as needed */
    background: url('images/AboutUsHeader.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    z-index: 1; /* Ensure text stays above */
}

.portfolio-header {
    width: 100%;
    height: 200px; /* Adjust as needed */
    background: url('images/PortfolioHeader.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    z-index: 1; /* Ensure text stays above */
}

.portfolio-header h1 {
    font-family: 'Permanent Marker', cursive;
}

.contact-header h1 {
    font-family: 'Permanent Marker', cursive;
}

.services-header h1 {
    font-family: 'Permanent Marker', cursive;
}

.about-header h1 {
    font-family: 'Permanent Marker', cursive;
}

.contact-header {
    width: 100%;
    height: 200px; /* Adjust as needed */
    background: url('images/ContactHeader.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    z-index: 1; /* Ensure text stays above */
}

.services-header {
    width: 100%;
    height: 200px; /* Adjust as needed */
    background: url('images/OurProcess.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    z-index: 1; /* Ensure text stays above */
}

.about-midheader {
    width: 100%;
    height: 200px; /* Adjust as needed */
    background: url('images/image5.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    z-index: 1; /* Ensure text stays above */
    margin-bottom: 20px; /* Adds line spacing between paragraphs */S
}


/* Dark overlay, positioned behind the text */
.about-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness */
    z-index: -1; /* Moves the overlay behind everything */
}

/* Dark overlay, positioned behind the text */
.services-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness */
    z-index: -1; /* Moves the overlay behind everything */
}

/* Dark overlay, positioned behind the text */
.contact-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness */
    z-index: -1; /* Moves the overlay behind everything */
}

/* Dark overlay, positioned behind the text */
.portfolio-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness */
    z-index: -1; /* Moves the overlay behind everything */
}

/* Dark overlay, positioned behind the text */
.about-midheader::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness */
    z-index: -1; /* Moves the overlay behind everything */
}





        .about p {
            margin-bottom: 20px; /* Adds line spacing between paragraphs */
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            text-align: justify;
        }

        .about h1 {
            margin-bottom: 20px; /* Adds line spacing between paragraphs */S
        }

.services h2 {
    margin-bottom: -40px; /* Reduces space below the title */
}

.services p {
    margin-top: 0px; /* Moves the paragraph closer to the title */
            font-size: 14px;
    font-style: italic;
    margin-bottom: 10px; /* Moves the paragraph closer to the title */
            text-align: justify;
}

        .services {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 80%;
margin: 0 auto; 
        }
        .service-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 20px 0;
    border-bottom: 1px solid black; /* Thin black line between sections */
        }

        .service-mainitem {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 20px 0;
        }

    .view-artists-btn {
        display: inline-block;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: bold;
        color: white;
        background-color: #ff5a5f;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        transition: background 0.3s ease-in-out;
        text-decoration: none;
        margin-top: 15px;
    }
    .view-artists-btn:hover {
        background-color: #d43f45;
    }

        .service-text {
            flex: 1;
            font-size: 14px;
            line-height: 1.6;
            padding: 10px;
            max-width: 50%;
        }
        .service-image {
            flex: 1;
            max-width: 50%;
        }
        .service-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .service-text ul {
            list-style: none;
            padding: 0;
        }
        .service-text ul li {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 0px;
            text-align: justify;
        }
        .service-text ul li::before {
            content: '\2022'; /* Bullet point */
            font-size: 14px;
            color: #ff5a5f; /* Accent color */
        }




        .portfolio {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 20px;
            padding: 40px;
            max-width: 2000px;
            margin: 0 auto;
        }
        .portfolio img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            transition: transform 0.3s ease-in-out;
            cursor: pointer; /* Makes cursor a hand on hover */
        }
        .portfolio img:hover {
            transform: scale(1.05);
        }
    .portfolio-item {
        position: relative;
    }
    .portfolio-text {
        position: absolute;
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%);
        background: rgba(0, 0, 0, 0.4);
        color: white;
        padding: 10px 0px;
        border-radius: 20px;
        text-align: center;
    font-family: 'Permanent Marker', cursive;
        width: 40%;
        pointer-events: none;
    }
    
    @media (max-width: 768px) {
    .service-item {
        flex-direction: column; /* Stack text and image vertically on smaller screens */
        align-items: center;
    }

    .service-mainitem {
        flex-direction: column; /* Stack text and image vertically on smaller screens */
        align-items: center;
    }
    .service-image, .service-text {
        max-width: 100%; /* Allow full width for better visibility */
        text-align: center;
    }
    
        .portfolio {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Now applies on mobile */
        max-width: 100%; /* Prevents shifting */
        margin: 0 auto;
        padding: 20px;
    }
    

}


/* Services Section */
#services ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
}

#services li {
    background-color: #ff5a5f;
    color: #fff;
    padding: 15px 25px;
    font-size: 20px;
    border-radius: 5px;
    transition: 0.3s;
}

#services li:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column !important; /* Force text above image */
        align-items: center;
        text-align: center;
    }

    .service-image {
        order: 2; /* Ensures image stays below */
    }

    .service-text {
        order: 1; /* Ensures text stays above */
    }
}

/* Portfolio */
#portfolio {
    background-color: #fff;
}

.portfolio-item {
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-item img {
    width: 100%;
    border-radius: 10px;
}

/* Center the form */
.google-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Make iframe responsive and remove scroll */
.google-form {
    width: 100%;
    max-width: 640px; /* Match form width */
    height: 2100px; /* Adjust height to avoid scrollbar */
    border: none;
    overflow: hidden; /* Ensures no scrollbars */
}


/* Contact Form */
/* Contact Section - Add spacing after the paragraph */
#contact p {
    margin-bottom: 20px; /* Adjust value to increase or decrease spacing */
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form label {
    font-size: 16px;
    color: #333;
    margin-bottom: -15px; /* Reduce space between label and input field */
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #ff5a5f;
    color: white;
    padding: 15px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background-color: #333;
}

/* Footer */
footer {
    background: url('images/footer.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 0;
}

/* Flex container for three sections */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 0px;
    padding-top: 200px; /* Moves text further down */
}

footer * {
    position: relative;
    z-index: 1;
}

/* Equal width sections */
.footer-navigation, .social-media, .contact-info {
    flex: 1; /* Makes all sections equal width */
    padding: 10px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.newsletter-form input {
    padding: 10px;
    width: 200px;
    border: none;
    border-radius: 5px 5px 5px 5px;
    outline: none;
}

.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background-color: #ff5a5f;
    color: white;
    font-weight: bold;
    border-radius: 5px 5px 5px 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background-color: #d43f45;
}

/* Social Media Section */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between icons */
    margin-top: 10px;
}

/* Icon Container */
.icon {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Hand cursor on hover */
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Ensure images stay the same size */
.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures image fits within the box */
    filter: invert(100%); /* Invert colors by default */
}

/* Hover Effect - Changes color and slightly enlarges */
.icon:hover {
    transform: scale(1.2); /* Slight zoom effect */
    filter: brightness(0) saturate(100%) invert(48%) sepia(92%) saturate(288%) hue-rotate(328deg) brightness(95%) contrast(95%);
}

.popup-overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.popup-overlay.show {
    visibility: visible;
    opacity: 1;
}



    .popup-overlay.show {
        display: flex;
        opacity: 1;
    }

    .popup-content {
        display: flex;
        background: white;
        padding: 20px;
        border-radius: 10px;
        max-width: 80%;
        text-align: left;
        gap: 20px;

    }
.popup-content img {
        width: 400px; /* Fixed width */
        height: 200px; /* Fixed height */
        object-fit: cover; /* Ensures consistent size without distortion */
        border-radius: 10px;
    }
    .popup-text {
        max-width: 400px;
        font-size: 12px;
    }

.popup-text p {
        font-size: 14px; /* Reduce font size for better readability */
        line-height: 1.5;
        margin-bottom: 15px; /* Adds spacing between paragraphs */
    }

@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 90%;
    }
    .popup-content img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    .popup-text {
        max-width: 100%;
        padding: 15px;
    }
}

    .close-btn {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
        color: white;
    }



footer p {
    margin-top: 10px;
    font-size: 14px;
}

main {
    margin-top: -320px; /* Adjust the value to move it higher */
    position: relative; /* Ensures it can be layered */
    z-index: 100; /* Higher number makes it appear in front */
}

@media (max-width: 768px) {
    main {
        margin-top: -220px; /* Moves up less on smaller screens */
    position: relative; /* Ensures it can be layered */
    z-index: 100; /* Higher number makes it appear in front */
    }
}

/* Responsive Layout */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack items on small screens */
        text-align: center;
        padding-top: 20px; /* Moves text further down */
    }
    
        footer {
        background: url('images/footermob3.jpg') no-repeat center center/cover;

    }

    .newsletter, .social-media, .contact-info {
        padding: 15px 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    nav ul {
        margin-top: 10px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero {
        height: 60vh;
    }

    .hero h1 {
        font-size: 32px;
    }

    section {
        padding: 50px 20px;
    }
    
}

/* Bio Page Styling */
.bio-container {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.bio-image img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.bio-text {
    max-width: 700px;
}

.bio-text h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 32px;
    margin-bottom: 15px;
}

.bio-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0px;
}

/* Hero Section / Slider */
.biohero {
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bioslider {
    position: relative;
    width: 80%; /* Adjusts slider width to 80% of the page */
    height: auto;
    margin: auto;
    max-height: 80vh; /* Ensures it doesn't take up full height */
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.bioslides {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.bioslide {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain; /* Maintains aspect ratio without cropping */
    display: none;
}

.bioslide.active {
    display: block;
}

/* Navigation Arrows */
.bio-prev, .bio-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1000;
}

.bio-prev:hover, .bio-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.bio-prev {
    left: 10px;
}

.bio-next {
    right: 10px;
}
