

@font-face {
    font-family: 'Miroles';
    src: url('recources/fonts/miroles-webfont.woff2') format('woff2'),
         url('recources/fonts/miroles-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
  
@font-face {
font-family: 'MIROLES';
src: url('recources/fonts/MIROLES.otf') format('opentype'),
        url('recources/fonts/MIROLES.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Stalysta';
src: url('recources/fonts/Stalysta.woff2') format('woff2'),
        url('recources/fonts/Stalysta.woff') format('woff'),
        url('recources/fonts/Stalysta.otf') format('opentype'),
        url('recources/fonts/Stalysta.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

@font-face {
    font-family: 'GeosansLight';
    font-style: normal;
    font-weight: normal;
    src:  url('recources/fonts/GeosansLight.woff') format('woff');
    }
    

    @font-face {
    font-family: 'GeosansLight-Oblique';
    font-style: normal;
    font-weight: normal;
    src: url('recources/fonts/GeosansLight-Oblique.woff') format('woff');
    }

.burger-menu {
    display: none; /* Hide by default */
    font-size: 30px; /* Adjust size as needed */
    background: none; /* Remove background */
    border: none; /* Remove border */
    cursor: pointer; /* Pointer cursor */
    width: 50px;
    margin-right: 20px;
}

/* Allgemeine Popup-Stile */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Halbtransparenter Hintergrund */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Sicherstellen, dass es oben bleibt */
}

/* Popup Content */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
}

/* Close Button */
.close-popup {
    background: none;
    border: none;
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

/* Media Queries */

/* Für Bildschirme kleiner als 400px */
@media screen and (max-width: 400px) {
    .popup-content {
        width: 90%; /* Popup nimmt 90% der Breite ein */
        padding: 15px; /* Weniger Padding auf kleinen Geräten */
        max-height: 80%; /* Popup wird nicht zu groß */
    }

    .close-popup {
        font-size: 25px; /* Kleinere Schaltfläche für den Close-Button */
        top: 5px; /* Weniger Abstand oben */
        right: 10px; /* Weniger Abstand rechts */
    }
}

/* Für Bildschirme zwischen 400px und 950px */
@media screen and (min-width: 400px) and (max-width: 950px) {
    .popup-content {
        width: 80%; /* Popup nimmt 80% der Breite ein */
        padding: 20px; /* Normales Padding */
        max-height: 85%; /* Leicht größere Höhe */
    }

    .close-popup {
        font-size: 28px; /* Etwas größere Schaltfläche für den Close-Button */
        top: 10px;
        right: 15px;
    }
}

/* Für Bildschirme größer als 950px */
@media screen and (min-width: 950px) {
    .popup-content {
        width: 50%; /* Popup nimmt 50% der Breite ein */
        padding: 30px; /* Mehr Padding für größere Bildschirme */
        max-height: 70%; /* Große Bildschirme erlauben ein höheres Popup */
    }

    .close-popup {
        font-size: 35px; /* Größere Schaltfläche für den Close-Button */
        top: 10px;
        right: 20px;
    }
}


/* General Styles */
@media screen and (max-width: 400px) {
    body {
        font-size: 16px; /* Adjust base font size for smaller screens */
        font-family: 'MIROLES', 'GeosansLight', 'Stalysta';
        font-weight: lighter;
        margin: 0;
        padding: 0;
    }

    h1 {
        font-size: 40px; /* Adjust font size for larger screens */
        font-weight: lighter;
    }

    h2 {
        font-size: 40px; /* Adjust font size for larger screens */
        font-weight: lighter;
    }

    h3 {
        font-size: 16px;
        font-family: 'GeosansLight';
        font-weight: lighter;
    }

    p {
        font-size: 16px;
        font-family: 'GeosansLight';
        font-weight: lighter;
    }

    header {
        display: flex; /* Use flexbox for layout */
        justify-content: space-between; /* Space between logo and nav */
        align-items: center; /* Center items vertically */
        padding: 20px 0px; /* Adjust padding for spacing */
        background: rgba(255, 255, 255, 0.0); /* Set a semi-transparent background color */
        position: fixed; /* Keep the header fixed at the top */
        width: 100%; /* Ensure the header spans the full width */
        top: 0; /* Position it at the top */
        z-index: 1000; /* Ensure it is above other content */
    }

    .header-scrolled {
        background: white; /* Set background color to white */
        opacity: 1;
    }

    .header-scrolled nav ul li a {
        color: black; /* Set link color to black when header is scrolled */
    }

    .logo img {
        width: auto; 
        height: 20px;  
        margin-left: 20px;
    }

    .get-in-touch {
        color: white; /* Set text color to white */
        text-decoration: none; /* Remove underline */
        font-size: 30px;
    }

    /* Hero Section */
    .hero {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .hero img {
        width: 100%;
        height: auto;
    }

    .hero-text {
        position: absolute;
        bottom: 30px;
        left: 50%;
    }

    .hero-text {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translate(-50%, 0); /* Center the text */
        color: white;
        font-size: 40px;
    }

    .tattoo-gallery {
        margin: 0px 0;
        padding: 10px;
        border: 1px solid #ffffff; /* Optional: Add a border */
        background-color: #ffffff; /* Optional: Add a background color */
        position: relative; /* Position relative for absolute positioning of arrows */
    }

    .gallery-container {
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping to ensure all images are in a row */
        justify-content: flex-start; /* Align images to the start */
        max-width: 1200px; /* Set a max width */
        margin: auto; /* Center the container */
        overflow-x: auto; /* Enable horizontal scrolling */
    }

    .gallery-container img {
        width: 280px; /* Set width */
        height: 380px; /* Set height */
        object-fit: cover; /* Ensure images cover the area without distortion */
        margin: 10px; /* Space between images */
    }
    /* Arrow Styles */
    .arrow {
        pointer-events: none;
        opacity: 0;
    }
    /* Wanna Dos Section */
    .wanna-dos {
        padding: 20px;
        text-align: center; 
    }

    .wanna-dos .gallery-container {
        display: flex; /* Use flexbox for layout */
        justify-content: flex-start; /* Center the images */
        align-items: center; /* Center items vertically */
    }

    .wanna-dos .gallery-image {
        width: 288px; /* Set width to 288 pixels */
        height: 288px; /* Set height to 288 pixels */
    }

    .studio {
        width: 100%; /* Make studio section responsive */
        margin: auto;
    }

    .artist img {
        width: 300px; /* Make artist images responsive */
        height: 420px; /* Maintain aspect ratio */
        margin: 0 auto;
        display: block;
        padding-top: 30px;
        order: 2;
    }
    .artist {
        display: flex; /* Use flexbox for horizontal alignment */
        flex-direction: column; /* Change to column for vertical alignment on small screens */
        align-items: center; /* Center items vertically */
        justify-content: center; /* Center items horizontally */
        margin: 0 auto; /* Adjust margin for vertical spacing */
    }
    .artist-text{
        text-align: center;
        max-width: 350px;
        min-width: 250px;
        margin: auto;
        width: auto;
        order: 1;
    }

    nav ul {
        display: none; /* Hide the menu by default */
        flex-direction: column; /* Stack items vertically */
        width: 100%; /* Full width */
        position: absolute; /* Position it absolutely */
        top: 60px; /* Adjust based on header height */
        list-style: none;
        left: 60%;
    }

    nav ul.show {
        display: flex; /* Show the menu when toggled */
        background-color: #ffffff;
        border-radius: 4px;
        width: 110px;
        text-align: right;
        padding: 15px;
    }

    .burger-menu {
        display: block; /* Show burger menu on small screens */
    }
    
    nav ul li a {
        text-decoration: none; /* Remove underline from links */
        color: #000000; /* Set link color */
        font-weight: lighter; /* Make links bold */
        font-size: 20px;
        text-align: right;
    }

    /* Studio Section */
    .studio {
        padding: 30px;
        text-align: center; /* Center the studio section text */
        max-width: 320px;
        min-width: 250px;
        margin: auto;
        width: auto;
    }

    /* Green Banner */
    .green-banner {
        background-color: #5B6431;
        height: 334px;
    }

    /* Golden Banner */
    .golden-banner {
        background-color: #BB9739; /* Corrected color value */

        height: 334px;
    }

    /* Contact Section */
    .contact {
        padding: 20px;
        display: flex;
        justify-content: center; /* Center the contact section */
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center items horizontally */
    }

    html {
        scroll-behavior: smooth; /* Enable smooth scrolling for navigation */
    }

    footer {
        display: flex;
        justify-content: flex-start; /* Aligns logo to the left */
        align-items: center; /* Vertically centers items */
        padding: 20px; /* Adds padding */
        background-color: black; /* Set background color for the footer */
        color: white; /* Set text color for the footer */
    }

    .footer-content{
        margin: auto;
    }

    .footer-text {
        flex-grow: 1; /* Allows the text to take up remaining space */
        text-align: center; /* Centers the text */
    }

    .footer-logo {
        max-width: 200px; /* Adjust size as needed */
    }

    .footer-text {
        text-align: center; /* Centers the text */
        flex-grow: 1; /* Allows the text to take up remaining space */
        color: #BB9739;
    }

    .bottom-banner {
        height: 334px;
    }



}

@media screen and (min-width: 400px) and (max-width: 950px){
    body {
        font-size: 16px; /* Adjust base font size for smaller screens */
        font-family: 'MIROLES', 'GeosansLight', 'Stalysta';
        font-weight: lighter;
        margin: 0;
        padding: 0;
    }

    h1 {
        font-size: 40px; /* Adjust font size for larger screens */
        font-weight: lighter;
    }

    h2 {
        font-size: 40px; /* Adjust font size for larger screens */
        font-weight: lighter;
    }

    h3 {
        font-size: 16px;
        font-family: 'GeosansLight';
        font-weight: lighter;
    }

    p {
        font-size: 16px;
        font-family: 'GeosansLight';
        font-weight: lighter;
    }

    header {
        display: flex; /* Use flexbox for layout */
        justify-content: space-between; /* Space between logo and nav */
        align-items: center; /* Center items vertically */
        padding: 20px 0px; /* Adjust padding for spacing */
        background: rgba(255, 255, 255, 0.0); /* Set a semi-transparent background color */
        position: fixed; /* Keep the header fixed at the top */
        width: 100%; /* Ensure the header spans the full width */
        top: 0; /* Position it at the top */
        z-index: 1000; /* Ensure it is above other content */
    }

    .header-scrolled  {
        background: white; /* Set background color to white */
    }

    .header-scrolled nav ul li a {
        color: black; /* Set link color to black when header is scrolled */
    }

    .logo img {
        width: auto; 
        height: 50px;  
        margin-left: 20px;
    }

    .get-in-touch {
        color: white; /* Set text color to white */
        text-decoration: none; /* Remove underline */
        font-size: 30px;
    }

    /* Hero Section */
    .hero {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .hero img {
        width: 100%;
        height: auto;
    }

    .hero-text {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translate(-50%, 0); /* Center the text */
        color: white;
        font-size: 40px;
    }

    .tattoo-gallery {
        margin: 0px 0;
        padding: 0px;
        background-color: #ffffff; /* Optional: Add a background color */
        position: relative; /* Position relative for absolute positioning of arrows */
        width: 100%;
    }

    .gallery-container {
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping to ensure all images are in a row */
        justify-content: flex-start; /* Align images to the start */
        margin: auto; /* Center the container */
        overflow-x: auto; /* Enable horizontal scrolling */
        width: 100%;
    }

    .gallery-container img {
        width: 280px; /* Set width */
        height: 380px; /* Set height */
        object-fit: cover; /* Ensure images cover the area without distortion */
        margin: 10px; /* Space between images */
    }
    /* Arrow Styles */
    .arrow {
        pointer-events: none;
        opacity: 0;
    }
    /* Wanna Dos Section */
    .wanna-dos {
        padding: 20px;
        text-align: center; /* Center the text in the Wanna Dos section */
    }

    .wanna-dos .gallery-container {
        display: flex; 
        justify-content: flex-start; 
        align-items: center; 
        width: auto;
    }

    .wanna-dos .gallery-image {
        width: auto; /* Set width to 288 pixels */
        height: 100%;
        max-height: 288px; /* Set height to 288 pixels */
    }

    .artist img {
        max-width: 300px; /* Make artist images responsive */
        height: auto; /* Maintain aspect ratio */
        margin: 0 auto;
        display: block;
        order: 2;
    }
    .artist {
        display: flex; /* Use flexbox for horizontal alignment */
        flex-direction: column; /* Change to column for vertical alignment on small screens */
        align-items: center; /* Center items vertically */
        justify-content: center; /* Center items horizontally */
        margin: 20px 0; /* Adjust margin for vertical spacing */
    }
    .artist-text{
        padding: 30px;
        text-align: center; /* Center the studio section text */
        max-width: 350px;
        min-width: 250px;
        margin: auto;
        width: auto;
        order: 1;
    }

    nav ul {
        display: none; /* Hide the menu by default */
        flex-direction: column; /* Stack items vertically */
        width: 100%; /* Full width */
        position: absolute; /* Position it absolutely */
        top: 60px; /* Adjust based on header height */
        list-style: none;
        left: 60%;
    }

    nav ul.show {
        display: flex; /* Show the menu when toggled */
        background-color: #ffffff;
        border-radius: 4px;
        width: 110px;
        text-align: right;
        padding: 15px;
    }

    .burger-menu {
        display: block; /* Show burger menu on small screens */
    }
    
    nav ul li a {
        text-decoration: none; /* Remove underline from links */
        color: #000000; /* Set link color */
        font-weight: lighter; /* Make links bold */
        font-size: 20px;
    }

    /* Studio Section */
    .studio {
        padding: 30px;
        text-align: center; /* Center the studio section text */
        max-width: 750px;
        min-width: 250px;
        margin: auto;
        width: auto;
    }

    /* Green Banner */
    .green-banner {
        background-color: #5B6431;
        height: 334px;
    }

    /* Golden Banner */
    .golden-banner {
        background-color: #BB9739; /* Corrected color value */

        height: 334px;
    }

    /* Contact Section */
    .contact {
        padding: 20px;
        display: flex;
        justify-content: center; /* Center the contact section */
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center items horizontally */
    }

    html {
        scroll-behavior: smooth; /* Enable smooth scrolling for navigation */
    }

    footer {
        display: flex;
        justify-content: flex-start; /* Aligns logo to the left */
        align-items: center; /* Vertically centers items */
        padding: 20px; /* Adds padding */
        background-color: black; /* Set background color for the footer */
        color: white; /* Set text color for the footer */
    }

    .footer-content{
        margin: auto;
    }

    .footer-text {
        flex-grow: 1; /* Allows the text to take up remaining space */
        text-align: center; /* Centers the text */
    }

    .footer-logo {
        max-width: 200px; /* Adjust size as needed */
    }

    .footer-text {
        text-align: center; /* Centers the text */
        flex-grow: 1; /* Allows the text to take up remaining space */
        color: #BB9739;
    }

    .bottom-banner {
        height: 334px;
    }

    



}


@media screen and (min-width: 950px) {
    

    body {
        font-family: 'MIROLES', 'GeosansLight', 'Stalysta';
        margin: 0;
        padding: 0;
    }

    h1 {
        font-size: 70px;
        font-family: 'MIROLES';
        font-weight: lighter;
    }

    h2 {
        font-size: 70px;
        font-family: 'MIROLES';
        font-weight: lighter;
    }

    h3 {
        font-size: 20px;
        font-family: 'GeosansLight';
        font-weight: lighter;
    }

    p {
        font-size: 20px;
        font-family: 'GeosansLight';
    }

    /* SVG Styles */
    .logo img {
        width: auto; 
        height: 80px; 
        max-width: 100%; 
        max-height: 180px; 
        margin-left: 20px;
    }

    /* Instagram Icon Style */
    .instagram-icon {
        width: 45px; 
        height: 45px; 
    }

    /* Header Styles */
    header {
        display: flex; /* Use flexbox for layout */
        justify-content: space-between; /* Space between logo and nav */
        align-items: center; /* Center items vertically */
        padding: 20px 0px; /* Adjust padding for spacing */
        background: rgba(255, 255, 255, 0.0); /* Set a semi-transparent background color */
        position: fixed; /* Keep the header fixed at the top */
        width: 100%; /* Ensure the header spans the full width */
        top: 0; /* Position it at the top */
        z-index: 1000; /* Ensure it is above other content */
    }

    .header-scrolled {
        background: white; /* Set background color to white */
    }

    .header-scrolled nav ul li a {
        color: black; /* Set link color to black when header is scrolled */
    }

    nav ul li a {
        color: #ffffff; /* Set link color */
    }

    nav ul {
        list-style: none; /* Remove default list styling */
        padding: 40px; /* Remove padding */
        margin: 0; /* Remove margin */
        display: flex; /* Use flexbox for horizontal layout */
    }

    nav ul li {
        margin-left: 30px; /* Adjust space between menu items */
    }

    nav ul li a {
        text-decoration: none; /* Remove underline from links */
        color: #ffffff; /* Set link color */
        font-weight: lighter; /* Make links bold */
        font-size: 40px;
    }

    .get-in-touch {
        color: white; /* Set text color to white */
        text-decoration: none; /* Remove underline */
    }

    /* Hero Section */
    .hero {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .hero img {
        width: 100%;
        height: auto;
    }

    .hero-text {
        position: absolute;
        bottom: 230px;
        left: 50%;
        transform: translate(-50%, 0); /* Center the text */
        color: white;
        font-size: 70px;
    }

    /* Studio Section */
    .studio {
        padding: 20px;
        text-align: center; /* Center the studio section text */
        max-width: 1332px;
        min-width: 380px;
        margin: auto;
    }

    /* Green Banner */
    .green-banner {
        background-color: #5B6431;
        height: 334px;
    }

    /* Artist Section */
    .artists {
        display: block; /* Change to block for vertical alignment */
        padding: 20px;
        text-align: center; /* Center the artist sections */
    }

    .artist {
        display: flex; /* Use flexbox for horizontal alignment */
        align-items: center; /* Center items vertically */
        justify-content: center; /* Center items horizontally */
        margin: 20px 0; /* Adjust margin for vertical spacing */
    }

    .artist img {
        width: 469px; /* Set width */
        height: 643px; /* Set height */
        object-fit: cover; /* Ensure the image covers the area without distortion */
        margin-right: 20px; /* Add space between image and text */
    }

    .artist-text {
        width: 480px;
        text-align: left;
        margin-left: 20px;
        margin-right: 20px;
    }

    .tattoo-gallery {
        margin: 20px 0;
        padding: 10px;
        background-color: #ffffff; /* Optional: Add a background color */
        position: relative; /* Position relative for absolute positioning of arrows */
    }

    .gallery-container {
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping to ensure all images are in a row */
        justify-content: flex-start; /* Align images to the start */
        max-width: 100%;
        margin: auto; /* Center the container */
        overflow-x: auto; /* Enable horizontal scrolling */
        padding-bottom: 50px;
    }

    .gallery-container img {
        width: 469px; /* Set width */
        height: 643px; /* Set height */
        object-fit: cover; /* Ensure images cover the area without distortion */
        margin: 10px; /* Space between images */
    }
    /* Arrow Styles */
    .arrow {
        position: absolute; /* Position arrows absolutely */
        top: 50%; /* Center vertically */
        transform: translateY(-50%); /* Adjust for vertical centering */
        background-color: rgba(255, 255, 255, 0.8); /* Background color for visibility */
        border: 1px solid #ccc; /* Border for the arrows */
        border-radius: 5px; /* Rounded corners */
        padding: 10px; /* Padding for the arrows */
        cursor: pointer; /* Pointer cursor on hover */
        z-index: 10; /* Ensure arrows are above other content */
    }

    .left-arrow {
        left: 10px; /* Position left arrow */
    }

    .right-arrow {
        right: 10px; /* Position right arrow */
    }

    /* Wanna Dos Section */
    .wanna-dos {
        padding: 20px;
        text-align: center; /* Center the text in the Wanna Dos section */
    }

    .wanna-dos .gallery-container {
        display: flex; /* Use flexbox for layout */
        justify-content: flex-start; /* Center the images */
        align-items: center; /* Center items vertically */
    }

    .wanna-dos .gallery-image {
        width: 288px; /* Set width to 288 pixels */
        height: 288px; /* Set height to 288 pixels */
    }

    /* Golden Banner */
    .golden-banner {
        background-color: #BB9739; /* Corrected color value */

        height: 334px;
    }

    /* Contact Section */
    .contact {
        padding: 20px;
        display: flex;
        justify-content: center; /* Center the contact section */
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center items horizontally */
    }

    .map {
        width: 50%; /* Adjust as needed */
    }

    html {
        scroll-behavior: smooth; /* Enable smooth scrolling for navigation */
    }

    footer {
        display: flex;
        justify-content: flex-start; /* Aligns logo to the left */
        align-items: center; /* Vertically centers items */
        padding: 20px; /* Adds padding */
        background-color: black; /* Set background color for the footer */
        color: white; /* Set text color for the footer */
    }

    .footer-content{
        margin: auto;
    }

    .footer-text {
        flex-grow: 1; /* Allows the text to take up remaining space */
        text-align: center; /* Centers the text */
    }

    .footer-logo {
        max-width: 200px; /* Adjust size as needed */
    }

    .footer-text {
        text-align: center; /* Centers the text */
        flex-grow: 1; /* Allows the text to take up remaining space */
        color: #BB9739;
    }

    .bottom-banner {
        height: 334px;
    }
}


