/*
Theme Name: GeneratePress Child
Theme URI: https://yoursite.com
Description: Child theme for GeneratePress
Author: Your Name
Author URI: https://yoursite.com
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
*/



:root {
    --eggplant: #4a304d;
    --eggplant-dark: #352238;
    --gold: #d4af37;
    --gold-muted: #bda15a;
    --cream: #fdfaf6;
    --container-width: 1080px;
}

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

html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream); 
    color: var(--eggplant);
    scroll-behavior: smooth;
    margin: 0;
    line-height: 1.5;
	padding-top: 180px; 

}

.content-container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
}

.signature {
  font-family: "Mrs Saint Delafield", cursive;
  font-weight: 400;
  font-style: normal;
	  color: var(--gold-muted);
}


/* Header Styles */
header {
  position: fixed;
    top: 40px; /* must match announcement bar height */
    left: 0;
    right: 0;
    background-color: rgba(253, 250, 246, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem;
    gap: 2rem;
}

.nav-left {
    display: none;
    gap: 2rem;
    justify-content: flex-start;
}

.nav-right {
    display: none;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}

.logo-img {
    max-height: 150px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: none;
}

.cart-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--eggplant);
    cursor: pointer;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: var(--gold);
}

/* Navigation */
.nav-left,
.nav-right {
    display: none;
    gap: 2rem;
}

.nav-link {
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 400;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--eggplant);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--eggplant);
    justify-self: start;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background-color: var(--eggplant);
    z-index: 200;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
}

#mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}

.mobile-menu-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.5rem;
}

.mobile-menu-links .nav-link {
    color: white;
    font-size: 0.875rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-links .nav-link:hover {
    color: var(--gold);
}

/* Main Content */
main {
    padding-top: 50px;
}

.botanical-overlay {
    background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem;
    text-align: center;
    background-color: #f5f5f5;
}

.hero-content {
    max-width: 900px;
}

.hero-content .signature {
    font-size: 3rem;
    margin-bottom: -2rem;
    display: block;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    font-style: normal;
    color: var(--eggplant);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-content h2 .tradition {
    font-style: normal;
}

.hero-image-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    overflow: hidden;
    margin: 2rem auto;
    position: relative;
}

.hero-image-circle::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content .subtitle {
    font-size: 1.125rem;
    font-style: italic;
    color: #666;
    margin: 2rem auto;
    max-width: 700px;
    line-height: 1.8;
}

.hero-btn {
    background-color: var(--eggplant);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.hero-btn:hover,
.hero-btn:focus,
.hero-btn:visited {
     background-color: var(--eggplant-dark);
    transform: translateY(-2px);
	color: white;
}

/* Make sure content starts at the right position */
body.single-post main,
body.archive main,
body.blog main {
    padding-top: 170px !important;
}



/* Buttons */
.btn-primary {
    background-color: var(--eggplant);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--eggplant-dark);
    transform: translateY(-2px);
	color: white;
}

.btn-claim {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 9px;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-claim:hover {
    background-color: var(--gold) !important;
    color: white !important;
    border-color: var(--gold) !important;
}

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

.section-header .signature {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--eggplant);
    margin-bottom: 0.5rem;
}

.section-header .divider {
    width: 6rem;
    height: 1px;
    background-color: var(--gold);
    margin: 1.5rem auto 0;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Archive Gallery */
.archive-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    background-color: white;
    border: 1px solid #e5e5e5;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Product Cards */
.product-card {
    background-color: white;
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    margin-bottom: 1rem;
}

.product-card .item-number {
    color: var(--gold);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--eggplant);
    margin-bottom: 0.5rem;
}

.product-card .price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--eggplant);
    display: block;
    margin-bottom: 1rem;
}

/* Product Detail */
.product-detail {
    display: grid;
    gap: 3rem;
    padding: 5rem 1.5rem;
}

.product-detail img {
    width: 100%;
    height: auto;
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 1rem;
    background-color: white;
}

.product-detail .item-number {
    color: var(--gold);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.product-detail h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--eggplant);
    margin-bottom: 1rem;
}

.product-detail .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eggplant);
    display: block;
    margin-bottom: 1.5rem;
}

.product-detail .description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.product-detail .description p {
    margin-bottom: 1rem;
}

.product-detail ul {
    font-style: italic;
    list-style: none;
    padding: 0;
}

.product-detail ul li {
    margin-bottom: 0.25rem;
}

.product-detail .note {
    font-size: 0.625rem;
    text-align: center;
    margin-top: 1rem;
    color: #999;
    font-style: italic;
}

/* Blog Styles */
.blog-article {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.blog-article .content .category {
    color: var(--gold);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.blog-article .content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--eggplant);
}

.blog-article .content p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.blog-article .content .read-more {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.25rem;
    color: var(--eggplant);
    transition: color 0.3s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.blog-article .content .read-more:hover {
    color: var(--gold);
}

.blog-article .image-wrapper {
    background-color: white;
    padding: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.blog-article .image-wrapper img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Blog Post Detail */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.back-button {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.back-button svg {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.5rem;
}

.blog-post .post-meta {
    color: var(--gold);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin-bottom: 1rem;
}

.blog-post h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--eggplant);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.blog-post .featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0.5rem;
    background-color: white;
    margin-bottom: 3rem;
}

.blog-post .prose {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.7;
}

.blog-post .prose p {
    margin-bottom: 1.5rem;
}

.blog-post .prose .lead {
    font-size: 1.125rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--eggplant);
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.about-content .featured-image {
    margin-bottom: 4rem;
    border-radius: 0.25rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-content .featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content .text-content {
    display: grid;
    gap: 3rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #666;
}

/* Contact Page */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    text-align: center;
}

.contact-form {
    text-align: left;
    margin-top: 3rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: white;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.75rem;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    color: var(--eggplant);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-submit {
    text-align: center;
    padding-top: 1.5rem;
}

/* Footer */
footer {
    background-color: #4a304d;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

footer .watermark {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    opacity: 0.03;
    pointer-events: none;
}

footer .footer-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
}

footer .footer-logo {
    height: 6rem;
    margin: 0 auto 2.5rem;
    display: block;
}

footer .signature {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: rgba(212, 175, 55, 0.9);
}

footer .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

footer .footer-nav .nav-link {
    color: white;
}

footer .footer-nav .nav-link:hover {
    color: var(--gold);
}

footer .footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.4em;
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(74, 48, 77, 0.95);
    z-index: 200;
    cursor: zoom-out;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

#lightbox.open {
    display: flex;
}

#lightbox img {
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border: 4px solid white;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.w-full {
    width: 100%;
}

.announcement-bar {
    background-color: var(--eggplant);
    color: white;
    text-align: center;
    padding: 1rem 1rem;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3); /* soft gold hint */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--eggplant);
    color: white;
    z-index: 1100;
}
.announcement-bar .highlight {
    color: #d4af37; /* gold accent */
}

.legal-links {
  text-align: center;
}

.legal-links p {
  margin: 0;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
	 text-decoration: none;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
	 
}

.legal-links a:hover {
  text-decoration: none;
}

/* Privacy Policy, Terms, ADA pages */
.privacy-policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    padding-top: 170px;
}
.privacy-policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--eggplant);
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
}
.privacy-policy-content .effective-date,
.privacy-policy-content .location {
    text-align: center;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.privacy-policy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eggplant);
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.privacy-policy-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--eggplant);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.privacy-policy-content p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.privacy-policy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.privacy-policy-content li {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.privacy-policy-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.privacy-policy-content ol li {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.privacy-policy-content strong {
    color: var(--eggplant);
    font-weight: 600;
}
.privacy-policy-content a {
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.3s;
}
.privacy-policy-content a:hover {
    color: var(--eggplant);
}


/* Responsive Styles */
@media (min-width: 768px) {
    .nav-left,
    .nav-right {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h2 {
        font-size: 4.5rem;
    }
    
    .product-detail {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-article {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content .text-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    footer .footer-logo {
        height: 8rem;
    }
    
    footer .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-post h1 {
        font-size: 3rem;
    }
}

/* Mobile Responsive Styles for Cards */
@media (max-width: 767px) {
    /* Archive Gallery - stack on mobile */
    .archive-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Product Cards - stack on mobile */
    .grid-cols-2,
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    /* Product Detail - stack on mobile */
    .product-detail {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }
    
    /* Blog Articles - stack on mobile */
    .blog-article {
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
    }
    
    /* About Content - stack on mobile */
    .about-content .text-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Form Rows - stack on mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
