body {

    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures full height */
    width: 100%;
    max-width: 100%;
    min-width: 100vw;
    min-height: 100vh;
    min-width: 320px;
    overflow-x: hidden; /* Prevents horizontal scrolling issues */
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
}

/* Use Cormorant Garamond for artistic, elegant headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #2c2c2c;
}

/* About Section */

.about {
    max-width: 800px; /* Keeps content nicely contained */
    margin: 50px auto; /* Centers the section */
    padding: 40px;
    background-color: #f8f8f8; /* Soft, neutral background */
    border-left: 5px solid #625045; /* Adds a subtle accent */
    border-radius: 10px; /* Soft rounded corners */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    text-align: center; /* Centers text */
}

.about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.about p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

/* Decorative Quote Styling */
.about blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #625045;
    margin: 20px 0;
    padding: 10px;
    border-left: 4px solid #625045;
}

/* Adjust navigation for consistency */
nav ul li a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Ensure header, main, and footer expand fully */
header, main, footer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box; /* Ensures padding doesn’t shrink elements */
    max-width: 100vw; /* Prevents Safari from shrinking */
}

/* Header and Navigation */
header {
    background-color: #CBDACB;
    color: white;
    padding: 15px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.banner img {
    max-width: 90%;
    height: auto;
    padding: 20px;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 5px;
    position: relative; /* For underline effect */
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
nav ul li a:hover {
    color: #ffcc80; /* Light orange on hover */
}

/* Fancy Underline Effect */
nav ul li::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #ffcc80;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

nav ul li:hover::after {
    width: 100%;
    left: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 0; /* Ensures Safari respects max-width */
}

/*  Hero Section */

.hero {
    background-color: #d7ccc8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    width: 100%; /* Ensures it spans full width */
 /*   max-width: 100vw;  Prevents Safari from shrinking */
    box-sizing: border-box;
 /*   min-width: 100vw; */
}

.hero img {
    width: auto; /* Allow flexible width */
    max-width: 90%; /* Ensures it doesn't overflow */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
    object-fit: contain; /* Ensures the full image is visible without cropping */
}

/* Featured */
.featured {
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    width: 100%; /* Ensures it spans full width */
    max-width: 100%; 
    box-sizing: border-box; /* Ensures padding doesn’t cause overflow */
 /*   max-width: 100vw;  Prevents Safari from shrinking */
 /*   min-width: 100vw; */
}


/* Gallery Section */
.gallery {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

/* Create a 2-column grid for gallery items */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    gap: 20px; /* Space between images */
    justify-items: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
}

/* Gallery Image Styling */
.gallery img {
    width: 100%; /* Ensures the image takes up full width of the container */
    max-width: 300px; /* Limit image width to 300px */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

/* Gallery Image Hover Effects */
.gallery img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}



/*   Shop */
 .shop {
    text-align: center;
    padding: 20px;
}

.shop-items .item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Image hover effect */
 .shop-items .item img:hover {
    transform: scale(1.05);
}

/Shop Layout */
 .shop-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.item {
    margin: 10px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}


main {
    flex: 1; /* Pushes the footer down */
    min-height: 50vh;
}

footer {
    background-color: #625045;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: auto;
    width: 100%;
}

footer a {
    color: #ffcc80;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: #ff9800;
}

/* Social media icon styling */
.social-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.fa-instagram {
    margin-right: 5px;
    font-size: 18px;
}




 

.artwork img {
    width: 100%; /* Makes sure the images scale within their container */
    max-width: 700px; /* Limits image width to 300px */
    height: auto;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    margin: 15px 0; /* Add some spacing vertically */
}

.large-image {
    width: 100%;
    max-width: 700px; /* Limits width on larger screens */
    height: auto; /* Maintains aspect ratio */
    margin: 0 auto; /* Centers image */
}


@media (max-width: 600px) {
    .gallery-grid, .shop-items {
        flex-direction: column;
        align-items: center;
    }

    .large-image {
        max-width: 90%; /* Shrinks large images on smaller screens */
        height: auto;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    .hero img {
        max-width: 90%;
        height: auto;
	max-height: 60vh; /* Prevents it from being too tall */
    }


    .artwork img {
        max-width: 90%; /* Shrink images on mobile devices */
        margin: 10px 0; /* Add some spacing vertically */


    .about {
        padding: 20px;
        margin: 30px 15px;
    }
    .about h2 {
        font-size: 2rem;
    }
    .about p {
        font-size: 1rem;
    }
}




/* Safari fix */
@supports (-webkit-touch-callout: none) {
    body {
        min-width: 100vw; /* Forces full viewport width */
    }
}

@supports (-webkit-overflow-scrolling: touch) {
	img {
		image-rendering: -webkit-optimize-contrast;
		}
	}
