/*
Theme Name: Peach
Description: A warm, stylish WordPress theme for Peach. - a lifestyle shop in the heart of Surrey. Features a modern, boutique design with support for galleries, contact forms, and lifestyle imagery.
Version: 1.0
Author: Peach. Theme
Text Domain: peach
*/

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for Brand Colors */
:root {
    --primary-slate: #68906d;
    --snow-white: #fcfbf9;
    --burly-wood: #e6c894;
    --muted-green-1: #859f84;
    --muted-green-2: #99ad98;
    --muted-green-3: #b2c0b2;
    --blush-pink-1: #fe8e98;
    --blush-pink-2: #ff838e;
    --blush-coral: #ffa683;
    --sage-green: #91a58a;
    --warm-beige: #d6bfad;
    --soft-mauve: #dcd1d0;
    --text-dark: #2c2c2c;
    --text-light: #666;
}

/* Typography */

body {
    font-family: 'Lora', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--snow-white);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary-slate);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--muted-green-1);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    padding: 0 15px;
}

.col-12 { flex: 0 0 100%; }
.col-6 { flex: 0 0 50%; padding: 10px;}
.col-4 { flex: 0 0 33.333%; }
.col-3 { flex: 0 0 25%; }

/* Header Styles */
.site-header {
    background: var(--snow-white);
    border-bottom: 1px solid var(--soft-mauve);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-slate);
    display: flex;
    align-items: center;
}

/* Logo Image Styling */
.site-logo img,
.custom-logo-link img {
    max-height: 75px;
    width: auto;
    height: auto;
    border-radius: 50%; /* For circular logos */
    transition: background 0.3s ease;
}

.site-logo img:hover,
.custom-logo-link img:hover {
    transform: scale(1.05);
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(104, 144, 109, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem;
    background-color: #68906dd9;
    border-radius: 50px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--primary-slate);
    background: transparent;
    color: var(--primary-slate);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background: var(--primary-slate);
    color: white;
}

.btn-primary {
    background: var(--primary-slate);
    color: white;
}

.btn-primary:hover {
    background: var(--muted-green-1);
    border-color: var(--muted-green-1);
}

.btn-light {
    border-color: white;
    color: white;
}

.btn-light:hover {
    background: white;
    color: var(--primary-slate);
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
    transform: translateY(0);
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.gallery-overlay h3 { 
    color: var(--snow-white);
}
\r
/* Handle empty titles and descriptions gracefully */
.gallery-overlay h3:empty,
.gallery-overlay p:empty {
    display: none;
}

.gallery-overlay h3:last-child {
    margin-bottom: 0;
}






/* Journal Magazine Layout */
.journal-magazine-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.journal-magazine-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal-magazine-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Featured Entry (First Post) */
.journal-magazine-item.featured-entry {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-slate);
}

.featured-entry .journal-magazine-image {
    aspect-ratio: 16/9;
}

.featured-entry .journal-magazine-content {
    padding: 2rem;
}

.featured-entry .journal-magazine-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Regular Entries */
.journal-magazine-item:not(.featured-entry) .journal-magazine-image {
    aspect-ratio: 4/3;
}

.journal-magazine-item:not(.featured-entry) .journal-magazine-content {
    padding: 1.5rem;
}

/* Image Container */
.journal-magazine-image {
    position: relative;
    overflow: hidden;
}

.journal-magazine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: background 0.3s ease;
}

.journal-magazine-item:hover .journal-magazine-image img {
    transform: scale(1.02);
}

/* Read Time Badge */
.read-time-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(104, 144, 109, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Content Styling */
.journal-magazine-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journal-category {
    color: var(--primary-slate);
    font-weight: 500;
}

.journal-magazine-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.journal-magazine-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.journal-magazine-title a:hover {
    color: var(--primary-slate);
}

/* Featured Quote */
.journal-featured-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-slate);
    border-left: 4px solid var(--primary-slate);
    padding-left: 1rem;
    margin: 1.5rem 0;
    line-height: 1.5;
}

/* Excerpt */
.journal-magazine-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Styling Tip */
.styling-tip {
    background: var(--soft-mauve);
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary-slate);
}

/* Footer */
.journal-magazine-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--soft-mauve);
}

.read-more-link {
    color: var(--primary-slate);
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--muted-green-1);
}

.author-byline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* CTA Section */
.journal-cta-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--soft-mauve) 0%, var(--warm-beige) 100%);
    border-radius: 12px;
    text-align: center;
}

.journal-cta-section .row {
    align-items: center;
}

.journal-cta-section h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.journal-cta-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Responsive Design for Magazine Layout */
@media (max-width: 768px) {
    .journal-magazine-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .journal-magazine-item:not(.featured-entry) .journal-magazine-image {
        aspect-ratio: 16/9;
    }
    
    .featured-entry .journal-magazine-title {
        font-size: 1.6rem;
    }
    
    .journal-magazine-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .journal-cta-section .col-6 {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .journal-magazine-layout {
        gap: 2rem;
    }
    
    .journal-magazine-item {
        gap: 1rem;
    }
    
    .journal-magazine-content {
        padding: 1rem !important;
    }
    
    .featured-entry .journal-magazine-content {
        padding: 1.5rem !important;
    }
    
    .journal-cta-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
}

/* Keep Gallery Grid for Brands Page Distinct */
.gallery-grid .gallery-item {
    /* Ensure brands page maintains its overlay gallery style */
    background: transparent;
    box-shadow: none;
}

.gallery-grid .gallery-item:hover {
    transform: none; /* Different hover effect than magazine */
}








/* Refined Brands Gallery Layout */
.brands-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.brand-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    background: var(--snow-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}


.brand-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.brand-gallery-link:hover {
    text-decoration: none;
    color: inherit;
}

.brand-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.brand-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brand-gallery-item:hover .brand-image-container img {
    transform: scale(1.1);
}




.brand-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.brand-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brand-gallery-item:hover .brand-image-container img {
    transform: scale(1.1);
}

/* Brand Overlay */
.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-gallery-item:hover .brand-overlay {
    opacity: 1;
}

.brand-info {
    color: white;
    width: 100%;
}

.brand-info h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.brand-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

/* Brand Links */
.brand-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.brand-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: white;
}

.website-link:hover {
    background: rgba(104, 144, 109, 0.8);
}

.instagram-link:hover {
    background: rgba(254, 142, 152, 0.8);
}




.content-section .col-6 img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}



/* Brands Philosophy Section */
.brands-philosophy-section {
    margin: 5rem 0;
    padding: 4rem;
    background: linear-gradient(135deg, var(--snow-white) 0%, var(--soft-mauve) 100%);
    border-radius: 16px;
}

.brands-philosophy-section .row {
    align-items: center;
}

.brands-philosophy-section h2 {
    color: var(--primary-slate);
    margin-bottom: 1.5rem;
}

.philosophy-points {
    margin-top: 2rem;
}

.philosophy-point {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.philosophy-point::before {
    content: "âœ¦";
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--primary-slate);
    font-size: 1.2rem;
}

.philosophy-point h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.philosophy-point p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.brands-highlight-image {
    position: relative;
}

.brands-highlight-image::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: -1rem;
    bottom: -1rem;
    border: 2px solid var(--primary-slate);
    border-radius: 8px;
    z-index: -1;
}

/* Maker Application CTA */
.maker-application-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: var(--primary-slate);
    color: white;
    border-radius: 12px;
}

.maker-application-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.maker-application-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.maker-application-cta .btn {
    background: white;
    color: var(--primary-slate);
    border-color: white;
}

.maker-application-cta .btn:hover {
    background: var(--snow-white);
    transform: translateY(-2px);
}






.single-brands .entry-header h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.single-brands .entry-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Brand connection section styling */
.brand-connection-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--soft-mauve);
    border-radius: 8px;
}

.brand-connection-section h3 {
    color: var(--primary-slate);
    margin-bottom: 1.5rem;
}

.brand-links-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.brand-links-container .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 12px 20px;
    white-space: nowrap;
}

/* Brand navigation improvements */
.brand-post-navigation {
    margin: 4rem 0;
    text-align: center;
}

.brand-post-navigation .row {
    gap: 1rem;
}

.brand-post-navigation .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}








/* Responsive Design for Brands */
@media (max-width: 768px) {
    .brands-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .brand-gallery-item {
        aspect-ratio: 3/2;
    }
    
    .brand-overlay {
        padding: 1.5rem;
    }
    
    .brand-info h3 {
        font-size: 1.2rem;
    }
    
    .brand-links {
        gap: 0.5rem;
    }
    
    .brand-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .content-section .col-6 img {
        max-width: 80%;
    }
    
    .brands-philosophy-section .col-6 {
        flex: 0 0 100%;
    }
    
    .brands-philosophy-section .col-6:first-child {
        margin-bottom: 2rem;
    }
    
    .maker-application-cta {
        padding: 2rem 1rem;
        margin: 3rem 0;
    }


    .brand-connection-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .brand-links-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .brand-links-container .btn {
        flex: none;
        min-width: 100%;
        margin: 0;
    }
    


    .single-brands .row {
        flex-direction: column;
    }
    
    .single-brands .col-6 {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
    
    /* Adjust image order and sizing */
    .single-brands .col-6:first-child {
        order: 1;
    }
    
    .single-brands .col-6:last-child {
        order: 2;
    }
    
    /* Image improvements on mobile */
    .single-brands .col-6 img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 1rem;
    }
    
    /* Content spacing adjustments */
    .single-brands .entry-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .single-brands .entry-content {
        font-size: 1rem;
        margin-bottom: 2rem;
    }


    /* Navigation improvements */
    .brand-post-navigation .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-post-navigation .col-6 {
        flex: 0 0 100%;
        text-align: center !important;
    }
    
    .brand-post-navigation .btn {
        display: block;
        width: 100%;
        margin: 0;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    /* Back to all brands button */
    .single-brands .btn-primary {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }


}

@media (max-width: 480px) {
    .brands-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .brand-gallery-item {
        aspect-ratio: 4/3;
    }
    
    .brand-overlay {
        padding: 1rem;
    }
    
    .brand-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .brand-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .content-section .col-6 img {
        max-width: 90%;
    }


    .single-brands .entry-header h1 {
        font-size: 1.6rem;
    }
    
    .single-brands .entry-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .brand-connection-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .brand-connection-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .brand-links-container .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .brand-post-navigation {
        margin: 3rem 0;
    }
    
    .brand-post-navigation .btn {
        font-size: 0.8rem;
        padding: 10px 12px;
    }


}














/* Journal Grid */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.journal-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

.journal-item:hover {
    transform: translateY(-5px);
}

.journal-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-content {
    padding: 1.5rem;
}

.journal-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.journal-item h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.journal-item h2 a {
    color: var(--text-dark);
}

.journal-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--soft-mauve);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-slate);
}

/* Map Container */
.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin: 2rem 0;
}

/* Footer */
.site-footer {
    background: var(--primary-slate);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--muted-green-3);
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--muted-green-1);
    color: var(--muted-green-3);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        /* flex-direction: column; */
        gap: 1rem;
    }
    
    .main-navigation ul {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .col-6, .col-4, .col-3 {
        flex: 0 0 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .journal-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .site-logo img,
    .custom-logo-link img {
        max-height: 60px; /* Slightly smaller on mobile */
    }
}

/* WordPress Specific Styles */
.wp-block-group {
    margin: 2rem 0;
}

.wp-block-image {
    margin: 1rem 0;
}

.wp-block-image img {
    border-radius: 8px;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-slate);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .content-section h3 {
        margin-top: 3rem;
    }

    .brands-philosophy-section {
        padding: 2rem;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--snow-white);
        border-top: 1px solid var(--soft-mauve);
        z-index: 1000;
    }
    
    .main-navigation.mobile-menu-open {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
}

/* Animations */
.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Form Enhancements */
.form-group {
    position: relative;
}

.form-group.focused label {
    transform: translateY(-20px);
    font-size: 0.9rem;
    color: var(--primary-slate);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--blush-pink-1);
}

.error-message {
    color: var(--blush-pink-1);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

/* Header Effects */
.site-header.scrolled {
    background: rgba(252, 251, 249, 0.85);
    backdrop-filter: blur(10px);
}

.site-header.header-hidden {
    transform: translateY(-100%);
    transition: background 0.3s ease;
}

.site-header {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Contact Success Message */
.contact-success {
    background: var(--muted-green-3);
    color: var(--text-dark);
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    transition: opacity 0.5s ease;
}

/* Lazy Loading */
img.lazy {
    filter: blur(5px);
    transition: filter 0.3s;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 3rem 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid var(--soft-mauve);
    color: var(--text-dark);
    text-decoration: none;
}

.pagination a:hover {
    background: var(--primary-slate);
    color: white;
    border-color: var(--primary-slate);
}

.pagination .current {
    background: var(--primary-slate);
    color: white;
    border-color: var(--primary-slate);
}





/* ========================================
   GALLERY TILE GRID & LIGHTBOX STYLES
   ======================================== */

/* Gallery Tile Grid */
.gallery-tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-tile-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.gallery-tile-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-tile-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.gallery-tile-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-tile-item:hover img {
    transform: scale(1.05);
    
}

.gallery-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: background 0.3s ease;
}

.gallery-tile-item:hover .gallery-tile-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.92));
}

/* Hide overlay if both title and description are empty */
.gallery-tile-overlay:empty {
    display: none;
}

.gallery-tile-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-tile-overlay h3:last-child {
    margin-bottom: 0;
}

.gallery-tile-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.gallery-tile-overlay p:empty {
    display: none;
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 90vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
    max-width: 600px;
    text-align: center;
}

.lightbox-title {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.lightbox-description {
    color: var(--text-light);
    margin: 0;
}

/* Lightbox Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-dark);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Gallery Styles */
@media (max-width: 768px) {
    .gallery-tile-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-tile-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-tile-overlay h3 {
        font-size: 1.1rem;
    }
    
    .gallery-tile-overlay p {
        font-size: 0.85rem;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-info {
        padding: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .lightbox-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-tile-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-image {
        max-height: 60vh;
    }
    
    .lightbox-info {
        padding: 1rem;
    }
    
    .lightbox-title {
        font-size: 1.1rem;
    }
    
    .lightbox-description {
        font-size: 0.9rem;
    }
}