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

body {
    font-family: 'EB Garamond', serif;
    line-height: 1.6;
    color: #333;
    font-size: 18px;
}

/* Navigation */
header {
    background-color: #f4f4f4;
    padding: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.2rem;
}

nav a:hover {
    color: #666;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    color: #e7afb6;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

/* Contact Form */
.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea {
    height: 150px;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #e7afb6;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.button:hover {
    background-color: #444;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #f4f4f4;
    margin-top: 2rem;
}

/* Header and Logo */
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.logo {
    margin-bottom: 1rem;
}

.logo-image {
    max-height: 80px;
    width: auto;
}

/* Social Media Icons */
.social-links {
    margin-bottom: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    color: #333;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #666;
}

/* Specific colors for each social platform */
.fa-instagram:hover {
    color: #E1306C;
}

.fa-tiktok:hover {
    color: #000000;
}

.fa-pinterest:hover {
    color: #E60023;
}

.fa-facebook:hover {
    color: #1877F2;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    main {
        padding: 1rem;
    }
    
    .header-content {
        padding: 0.5rem;
    }
    
    .logo-image {
        max-height: 60px;
    }
} 

/* Add to existing CSS */
img {
    border-radius: 5px;
}

/* Update service card images to match */
.service-card img {
    border-radius: 5px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* Product Section Styles */
.product {
    margin-bottom: 2rem;
    text-align: center;
}

.product img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 1rem 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Add grid container for products */
.products-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Make it single column on mobile */
@media (max-width: 768px) {
    .products-container {
        grid-template-columns: 1fr;
    }
}

/* Add paragraph styling */
p {
    padding-bottom: 7%;
}

/* Override padding for footer paragraph */
footer p {
    padding-bottom: 0;
}

/* Override padding for service cards and products to maintain layout */
.service-card p, .product p {
    padding-bottom: 1rem;
} 

/* Masonry Gallery */
.masonry-gallery {
    columns: 4;
    column-gap: 1rem;
    padding: 1rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .masonry-gallery {
        columns: 3;
    }
}

@media (max-width: 900px) {
    .masonry-gallery {
        columns: 2;
    }
}

@media (max-width: 600px) {
    .masonry-gallery {
        columns: 1;
    }
} 

/* Thumbnail Grid */
.thumbnail-grid {
    display: none;
}

.thumbnail {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.thumbnail:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} 

.thumbnail.active {
    border: 2px solid #e7afb6;
    transform: scale(1.1);
}

.main-image {
    transition: opacity 0.3s ease;
} 

/* Contact Page Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-text {
    padding-left: 2rem;
}

.contact-text a {
    color: #e7afb6;
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Responsive contact layout */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-text {
        padding-left: 0;
    }
} 

.social-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.social-list li {
    margin-bottom: 0.5rem;
}

.social-list a {
    color: #e7afb6;
    text-decoration: none;
}

.social-list a:hover {
    text-decoration: underline;
} 

/* Examples Section */
.examples-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.examples-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Adjust spacing for mobile */
@media (max-width: 768px) {
    .examples-section {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
} 

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    padding: 1rem;
} 

/* Navigation buttons in lightbox */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.prev-button {
    left: 1rem;
}

.next-button {
    right: 1rem;
}

/* Make navigation buttons more visible on mobile */
@media (max-width: 768px) {
    .nav-button {
        padding: 0.8rem 1rem;
        font-size: 1.2rem;
    }
} 

/* Size selector styles */
.size-selector {
    margin: 1rem 0;
}

.size-selector select {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: 0.5rem;
    cursor: pointer;
}

.stripe-button {
    display: none;
}

.stripe-button.active {
    display: block;
} 

/* Temporarily hide physical people portrait */
.product:has(h3:contains("Physical People Portrait")) {
    display: none;
} 

/* Temporarily hide products */
.hidden-product {
    display: none;
} 