@media all and (min-width:1100px) {

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #f9f9f9;
    z-index: 1000; 
}

.logo img {
    width: auto; /* Adjust the width as needed */
    height: 40px; /* Maintain aspect ratio */
    top: 0; /* Adjust the top position as needed */
    left: 0; /* Adjust the left position as needed */
}

.nav-links {
    list-style: none;
    display: flex;
}

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

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 50;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust as needed */
    background-color: #333; /* Gray background */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 50px; /* Space from the left edge */
}

.main-image img {
    margin-top: 50px; /* Adjust vertical positioning */
    margin-left: 100px;
    max-width: 575px; /* Adjust size */
    height: auto;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.7); /* Optional: add shadow */
    z-index: 1; /* Ensure it's above the background */
}

.overlay-image {
    position: absolute;
    left: 600px; /* Adjust based on your layout */
    bottom: 50px; /* Adjust for vertical positioning */
    z-index: 2; /* Ensure it's above the main image */
}

.overlay-image img {
    max-width: 200px; /* Adjust size */
    height: auto;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.7); /* Optional: add shadow */
    transform: translate(-10%, 10%); /* Slight offset */
}
.large-letters {
    position: absolute; /* Allows precise positioning */
    right: 10%; /* Distance from the left edge */
    top: 50%; /* Vertically center the letters */
    transform: translateY(-50%); /* Adjust for proper centering */
    text-align: left; /* Align text to the left */
    z-index: 10; /* Ensure it's visible above other content */
}
.large-letters img {
    height: 175px; /* Adjust the size of the letters */
    width: auto; /* Maintain aspect ratio */
    margin-left: 15%;
    z-index: 10; /* Ensure it's visible above other content */
}

/* Portfolio Section */
.gallery-header h1{
    margin-top: 5%;
    text-align: center;
    color: black;
    z-index: 1000;

}
.gallery-section {
    padding: 50px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery-section h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* About Section */
.artist-header h1{
    margin-top: 5%;
    text-align: center;
    color: black;
    z-index: 1000;
}

.theartist-content {
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center;
    text-align: left;
    height: 69.3vh;
    padding: 10%;
}

.theartist-content img {
    width: 350px; /* Adjust image size */
    height: auto; /* Maintain aspect ratio */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-right: 20px; /* Space between image and text */
    padding: 10;
    margin-top: 5%;
}

.theartist-content p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    width: auto;
    display: block; /* Ensure paragraphs stack vertically */
    margin-bottom: 20px; /* Add space between paragraphs */
}

.theprocess-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: center;
    text-align: center;
    height: 69.3vh;
    padding: 10%;
}

.theprocess-content h2 {
    font-size: 2em; /* Optional: Adjust the size of the h2 */
    font-weight: bold; /* Optional: Make the heading bold */
}

.theprocess-content p {
    margin-bottom: 20px; /* Add space between each step */
    padding: 10px; /* Add padding inside each step */
    width: 80%; /* Ensure the steps don’t stretch too wide */
    font-size: 1.1em;
}

.theprocess-content .step {
    font-weight: bold; /* Make the step number bold */
}

/* Optional: Add specific styling for step numbers (like 1, 2, 3) */
.theprocess-content .step-number {
    font-weight: bold;
    margin-right: 10px;
}
/* Product Grid */
.drawing-header{
    margin-top: 5%;
    margin-left: 1%;
    color: black;
    z-index: 1000;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #fff;
}

.product-card {
    text-align: center;
    border: 1px solid #ddd;

    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    margin: 5px;
    width: auto;
    height: 200px;
    display: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.product-name {
    font-size: 1.2rem;
    margin: 10px 0;
}

.product-price {
    font-size: 1rem;
    color: #888;
    margin-bottom: 20px;
}

/* Modal container */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
    align-items: center;
    justify-content: center;
}

/* Modal content (image) */
.modal-content {
    max-width: 55%; /* Scale image to 50% of page width */
    max-height: 55%; /* Scale image to 50% of page height */
    margin: auto;
    display: block;
    border: 3px solid white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}
/* Contact Section */
.contact-section {
    padding: 50px 10%;
    text-align: center;
    background-color: #f9f9f9;
}

.contact-section h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.contact-section p {
    font-size: 1.2em;
    color: #555;
}

.contact-button {
    display: inline-block;
    margin: 3%;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #555;
}
}

.contactb-section{
    margin-top: 2%;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* Close button */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.ig-image{
    position: relative;
    float:left;
}

.ig-image img{
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.link-image{
    position: relative;
    float:right;
}

.link-image img{
    width: 50px;
    height: 50px;
    cursor: pointer;
}



/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
    font-size: 0.9em;
}






.burger-nav img{
    display: none;
}
.nav-linksb{
    display: none;
}
    

/* Media Queries 


iphone screen sizes

*/
@media all and (max-width:1099px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Hero Section */
    
    
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px;
        position: absolute;
        top: 0;
        width: 100%;
        background-color: #f9f9f9;
        z-index: 1000; 
    }
    
    .logo img {
        width: auto; /* Adjust the width as needed */
        height: 40px; /* Maintain aspect ratio */
        top: 0; /* Adjust the top position as needed */
        left: 0; /* Adjust the left position as needed */
    }

.nav-links{
    display: none;
}

.burger-nav img{
    display: block;
    height: 30px;
    width: auto;
    padding-right: 20px;
    cursor: pointer;
}


.logo img {
    width: auto; /* Adjust the width as needed */
    height: 40px; /* Maintain aspect ratio */
    top: 0; /* Adjust the top position as needed */
    left: 0; /* Adjust the left position as needed */
}

.nav-linksb li {
    overflow: hidden;
    background-color: white;
    height:0;
}

.nav-linksb {
    background-color: white;
    list-style: none;
    display: block;
    text-align: center;
}

.nav-linksb a {
    text-decoration: none;
    color: black;
    font-weight: 50;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.nav-linksb li {
    border-bottom: solid 1px black;
}

.nav-linksb li a{
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: black;
    font-weight: 50;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.nav-linksb li.open {
    height: auto;
}

.image-container {
    position: relative;
    width: 100%;
    height: 95vh; /* Adjust as needed */
    background-color: #333; /* Gray background */
    align-items: center;
    padding: 10%;
}

.main-image{
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    min-width: 300px; /* Adjust size */
    max-height: 500px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.7); /* Optional: add shadow */
    z-index: 1; /* Ensure it's above the background */
    margin-top: 15%;
}

.overlay-image{
    display: none;
}

.large-letters{
    top: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.large-letters img {
    height: 100px; /* Adjust the size of the letters */
    width: auto; /* Maintain aspect ratio */
    z-index: 10; /* Ensure it's visible above other content */
}

/* Portfolio Section */
.gallery-header h1{
    margin-top: 5%;
    text-align: center;
    color: black;
    z-index: 1000;

}
.gallery-section {
    padding: 50px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery-section h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* About Section */
.artist-header h1{
    margin-top: 5%;
    text-align: center;
    color: black;
    z-index: 1000;
}

.theartist-content {
    display: block;
    justify-content: center; /* Center content horizontally */
    align-items: center;
    text-align: center;
}

.theartist-content img {
    width: 100px; /* Adjust image size */
    height: auto; /* Maintain aspect ratio */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-left: 40%;
    margin-top: 7%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theartist-content p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    width: auto;
    display: block; /* Ensure paragraphs stack vertically */
    margin-bottom: 20px; /* Add space between paragraphs */
    padding: 10px;
}






.theprocess-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: center;
    text-align: center;
    padding: 10%;
}

.theprocess-content h2 {
    font-size: 2em; /* Optional: Adjust the size of the h2 */
    font-weight: bold; /* Optional: Make the heading bold */
}

.theprocess-content p {
    margin-bottom: 20px; /* Add space between each step */
    padding-top: 10px; /* Add padding inside each step */
    width: 85%; /* Ensure the steps don’t stretch too wide */
    font-size: 1.1em;
}

.theprocess-content .step {
    font-weight: bold; /* Make the step number bold */
}

.theprocess-content .step-number {
    font-weight: bold;
    margin-right: 10px;
}



/* Contact Section */
.contact-section {
    padding: 50px 10%;
    text-align: center;
    background-color: #f9f9f9;
}

.contact-section h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.contact-section p {
    font-size: 1.2em;
    color: #555;
}

.contact-button {
    display: inline-block;
    margin: 3%;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #555;
}

/* Product Grid */
.drawing-header{
    margin-top: 5%;
    margin-left: 1%;
    color: black;
    z-index: 1000;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(170px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #fff;
}

.product-card {
    text-align: center;
    border: 1px solid #ddd;

    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    margin: 5px;
    width: auto;
    height: 95px;
    display: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.product-name {
    font-size: 1.2rem;
    margin: 10px 0;
}

.product-price {
    font-size: 1rem;
    color: #888;
    margin-bottom: 20px;
}

/* Modal container */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
    align-items: center;
    justify-content: center;
}

/* Modal content (image) */
.modal-content {
    max-width: 80%; /* Scale image to 50% of page width */
    max-height: 80%; /* Scale image to 50% of page height */
    margin: 0;
    display: block;
    border: 3px solid white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}


/* Close button */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.contactb-section{
    margin-top: 2%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.ig-image{
    position: relative;
    float:left;
}

.ig-image img{
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.link-image{
    position: relative;
    float:right;
}

.link-image img{
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
    font-size: 0.9em;
}
    
}