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

/* Body and Container */
body {
    font-family: "Montserrat", sans-serif;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-top: 50px;
}

.title {
    font-size: 36px;
    font-weight: bold;
    min-width: 200px;
}

.buttons a {
    margin-left: 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.buttons a:hover {
    color: #555;
}

.buttons a.home {
    text-decoration: underline;
}

/* Headings */
h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}
.portfolio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 80%;  /* This will make the overall portfolio section smaller */
    margin: 0 auto;  /* This centers the grid */
}


/* Portfolio Layouts */
.portfolio-single-column {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 64px;
}

.portfolio-single-column .item {
    margin-bottom: 64px;
}

.portfolio-single-column img {
    width: 100%;
    height: auto;
}

.portfolio-grid {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 96px;
}

.portfolio-item img {
    width: 100%;
    height: auto;
}

.item-description {
    margin-top: 16px;
    font-size: 16px;
    color: #000;
    margin-left: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
    font-size: 48px;
}

.hero-text p {
    font-size: 24px;
}

html {
    overflow-y: scroll;
}

/* Shop Section */
.shop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.shop-item {
    width: 80%;
    padding: 20px;
    margin: auto;
}

.shop-item img {
    width: 100%;
    height: auto;
}

.shop-item p {
    margin-top: 10px;
    font-size: 16px;
}

.shop-item a {
    color: #555;
    text-decoration: underline;
}

.shop-item a:hover {
    text-decoration: none;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
}

.about-text {
    width: 45%;
    font-size: 18px;
    color: #333;
    text-align: left;
}

.about-text2 {
    width: 100%;  /* Take full width of parent */
    font-size: 18px;
    color: #333;
    text-align: right;
    margin-top: 20px;  /* Add some space between the text and signature */
}

.about-image {
    width: 45%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* View More Link */
.view-more a {
    color: #555;
    text-decoration: underline;
}

.view-more a:hover {
    text-decoration: none;
}

/* Socials and Contact Section */
.socials-contact {
    display: flex;
    justify-content: space-between;
    gap: 50%;
    margin-top: 50px;
}

.socials, .contact {
    width: 48%;
    padding: 20px;
}

.socials {
    text-align: left;
}

.contact {
    text-align: right;
}

.socials h3, .contact h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.socials ul, .contact ul {
    list-style: none;
}

.socials ul li, .contact ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.socials a {
    color: #555;
    text-decoration: underline;
}

.socials a:hover {
    text-decoration: none;
}

/* Artists Section */
.artists {
    font-size: 24px;
}

.artists a {
    color: #555;
    text-decoration: underline;
}

.artists a:hover {
    text-decoration: none;
}

.artists ul {
    list-style-type: none;
}

.artists li {
    margin: 40px 0px;
}

/* Shopify Component Styles */
#product-component-1739523154846 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#product-component-1739523154846 > div {
    display: flex;
    justify-content: center;
    width: 100%;
}

.shopify-buy-frame {
    margin: 0 auto !important;
    display: block !important;
}
