/*!
Theme Name: brookesteinbacher
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: brookesteinbacher
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

brookesteinbacher is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

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

:root {
    --primary-color: #1a1a1a;
    --accent-color: #ff6b35;
    --light-bg: #f8f8f8;
    --dark-bg: #2a2a2a;
    --text-light: #666;
    --text-dark: #1a1a1a;
    --white: #ffffff;
    --gray-light: #e0e0e0;
}

body {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo .subtitle {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-light);
    display: block;
    margin-top: -5px;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    margin: 4px 0;
    transition: 0.3s;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255,107,53,0.1), rgba(26,26,26,0.05));
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    animation: slideIn 1s ease 0.8s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 2rem;
    position: relative;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(100px) rotate(5deg);
    animation: titleReveal 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    position: relative;
}

.title-line:nth-child(1) {
    animation-delay: 0.4s;
    color: var(--primary-color);
}

.title-line:nth-child(2) {
    animation-delay: 0.6s;
    color: var(--accent-color);
    text-shadow: 2px 2px 0px rgba(255,107,53,0.3);
}


.hero-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
    position: relative;
    padding-left: 30px;
}

.hero-description::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: 'Yanone Kaffeesatz', sans-serif;
    opacity: 0.5;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.btn-primary, .btn-secondary {
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255,107,53,0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--text-dark);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-3px);
}

/* Enhanced Hero Visual */
.hero-visual {
    position: relative;
    height: 650px;
    perspective: 1000px;
}

.hero-bg-text {
    position: absolute;
    font-size: clamp(8rem, 15vw, 18rem);
    font-weight: 900;
    color: rgba(0,0,0,0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    user-select: none;
    animation: textFloat 8s ease-in-out infinite;
}

.floating-elements {
    position: relative;
    height: 100%;
    z-index: 3;
}

.float-item {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    animation: complexFloat 8s ease-in-out infinite;
    animation-delay: var(--delay);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.float-item:hover {
    transform: scale(1.05) rotateY(10deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.float-item:nth-child(1) {
    top: 5%;
    left: 5%;
    width: 220px;
    height: 300px;
    animation-duration: 6s;
}

.float-item:nth-child(2) {
    top: 35%;
    right: 15%;
    width: 190px;
    height: 250px;
    animation-duration: 7s;
}

.float-item:nth-child(3) {
    bottom: 8%;
    left: 25%;
    width: 240px;
    height: 320px;
    animation-duration: 8s;
}

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

.float-item:hover img {
    transform: scale(1.1);
}

.float-item::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.float-item:hover::before {
    opacity: 0.3;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 100px;
    height: 100px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 15s linear infinite;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 40%;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    opacity: 0.2;
    animation: morph 6s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 3px;
    z-index: 3;
    animation: fadeInUp 1s ease 1.4s forwards;
    opacity: 0;
}

.scroll-text {
    position: relative;
}

.scroll-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-light);
    animation: scrollTextUnderline 2s ease-in-out infinite;
}

.scroll-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--text-light), var(--accent-color));
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    animation: scrollLineMove 2s ease-in-out infinite;
}

/* About Snippet Section */
.about-snippet {
    padding: 120px 0;
    padding-bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.about-snippet::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-header {
    margin-bottom: 3rem;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.label-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.label-line {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.about-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 2px;
}

.title-word {
    display: inline-block;
    margin-right: 1rem;
}

.title-word.accent {
    color: var(--accent-color);
    position: relative;
}

.title-word.accent::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0.3;
}

.quote-section {
    position: relative;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,107,53,0.05) 0%, rgba(255,107,53,0.02) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.quote-mark {
    font-size: 6rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 10px;
    line-height: 1;
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

.featured-quote {
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-left: 3rem;
    position: relative;
    z-index: 2;
}

.bio-text p {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 18px 30px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.4);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.about-visual {
    position: relative;
}

.artist-showcase {
    position: relative;
    height: 600px;
}

.main-image {
    position: relative;
    z-index: 3;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    background: var(--white);
    padding: 15px;
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.image-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.color-splash {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: splash 4s ease-in-out infinite;
}

.splash-1 {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.splash-2 {
    width: 60px;
    height: 60px;
    background: #ff8c5a;
    bottom: 30px;
    left: 30px;
    animation-delay: 1s;
}

.splash-3 {
    width: 50px;
    height: 50px;
    background: #ffab7a;
    top: 50%;
    right: 10px;
    animation-delay: 2s;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.float-artwork {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    animation: artworkFloat 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-artwork:nth-child(1) {
    top: 10%;
    right: -50px;
    width: 120px;
    height: 150px;
}

.float-artwork:nth-child(2) {
    bottom: 20%;
    left: -40px;
    width: 100px;
    height: 130px;
}

.float-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 5px;
    font-size: 0.7rem;
    text-align: center;
    letter-spacing: 1px;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    top: 30%;
    left: -30px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.deco-triangle {
    position: absolute;
    bottom: 10%;
    right: -20px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--accent-color);
    opacity: 0.2;
    animation: bounce 3s ease-in-out infinite;
}

.deco-line {
    position: absolute;
    top: 50%;
    right: -60px;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0.4;
}

/* Gallery Collections Section */
.gallery-collections {
    /* padding: 120px 0; */
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
}

.section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.collection-section {
    margin-bottom: 8rem;
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.collection-section:hover {
    transform: translateY(-5px);
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-light);
}

.collection-info h3 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.collection-info p {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.collection-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.work-count {
    color: var(--accent-color);
    font-weight: 600;
}

.year-range {
    color: var(--text-light);
}

.collection-link-btn {
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.collection-link-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.3);
}

.collection-gallery {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.main-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.main-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem;
}

.item-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.item-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-grid-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/4;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .item-overlay {
    transform: translateY(0);
}

.item-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
}

.gallery-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-top: 4rem;
}

.gallery-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.gallery-cta p {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.4);
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-left h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-left p {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animations */
@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes slideIn {
    to {
        transform: scaleX(1);
    }
}

@keyframes lineGrow {
    to {
        width: 150px;
    }
}

@keyframes complexFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotateZ(2deg) scale(1.02);
    }
    50% {
        transform: translateY(-10px) rotateZ(-1deg) scale(1.01);
    }
    75% {
        transform: translateY(-30px) rotateZ(1deg) scale(1.03);
    }
}

@keyframes textFloat {
    0%, 100% { transform: translate(-50%, -50%) rotateZ(0deg); }
    50% { transform: translate(-50%, -52%) rotateZ(1deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

@keyframes morph {
    0%, 100% { border-radius: 0; transform: rotate(0deg); }
    50% { border-radius: 50%; transform: rotate(180deg); }
}

@keyframes scrollLineMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes scrollTextUnderline {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0.5); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splash {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.3;
    }
}

@keyframes artworkFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .artist-showcase {
        height: 500px;
    }

    .collection-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .collection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .about-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .collection-section {
        padding: 2rem;
        margin-bottom: 4rem;
    }

    .collection-info h3 {
        font-size: 2.5rem;
    }

    .gallery-grid-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .main-item img {
        height: 300px;
    }

    .collection-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 2rem;
    }

    .float-artwork:nth-child(1) {
        right: -30px;
        width: 100px;
        height: 120px;
    }

    .float-artwork:nth-child(2) {
        left: -30px;
        width: 80px;
        height: 100px;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container, .nav-container, .hero-container {
        padding: 0 20px;
    }

    .about-snippet {
        padding: 80px 0;
    }

    .quote-section {
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .quote-mark {
        font-size: 4rem;
        top: -10px;
    }

    .featured-quote {
        font-size: 1.2rem;
        margin-left: 2rem;
    }

    .artist-showcase {
        height: 400px;
    }

    .image-frame img {
        height: 300px;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .collection-info h3 {
        font-size: 2rem;
    }

    .collection-section {
        padding: 1.5rem;
    }

    .item-info {
        padding: 1.5rem;
    }

    .item-info h4 {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Portfolio Grid Styles */
.portfolio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

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

.portfolio-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-thumbnail.no-image {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.portfolio-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.view-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
}

.view-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.placeholder-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-categories {
    margin-bottom: 10px;
}

.category-tag {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.entry-title {
    margin: 10px 0;
    font-size: 1.3rem;
    line-height: 1.3;
}

.entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #e74c3c;
}

.entry-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
}

.medium-tag {
    background: #f8f9fa;
    color: #555;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 4px;
}

/* Single Portfolio Styles */
.portfolio-single {
    padding: 0;
}

.portfolio-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
}

.portfolio-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
}

.portfolio-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    font-size: 1rem;
}

.portfolio-artwork {
    padding: 60px 0;
    background: #f8f9fa;
}

.artwork-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.artwork-main {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.artwork-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.zoom-icon {
    margin-right: 8px;
}

.artwork-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.image-details {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
}

.no-artwork {
    padding: 100px 0;
    text-align: center;
}

.no-artwork-placeholder {
    color: #999;
}

.no-artwork-placeholder .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.portfolio-content {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-description h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.portfolio-sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
}

.portfolio-sidebar h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.tag-link {
    background: #e9ecef;
    color: #555;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: #e74c3c;
    color: white;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-buttons a {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-twitter {
    background: #1da1f2;
    color: white;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-pinterest {
    background: #bd081c;
    color: white;
}

.share-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.related-portfolio {
    padding: 60px 0;
    background: #f8f9fa;
}

.related-portfolio h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.related-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-item a {
    display: block;
    text-decoration: none;
    color: #333;
}

.related-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.related-item h3 {
    padding: 20px;
    margin: 0;
    font-size: 1.1rem;
}

.portfolio-navigation {
    padding: 40px 0;
    background: #333;
    color: white;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-previous,
.nav-next {
    min-height: 60px;
    display: flex;
    align-items: center;
}

.nav-next {
    justify-content: flex-end;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e74c3c;
}

.nav-subtitle {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-weight: 600;
}

.back-to-portfolio {
    background: #e74c3c;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.back-to-portfolio:hover {
    background: #c0392b;
    color: white !important;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.modal-close:hover {
    color: #e74c3c;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-title {
        font-size: 2rem;
    }

    .portfolio-details {
        flex-direction: column;
        gap: 10px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

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

    .image-details {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .portfolio-hero {
        padding: 60px 0 40px;
    }

    .portfolio-title {
        font-size: 1.8rem;
    }

    .artwork-container {
        padding: 0 20px;
    }

    .zoom-btn {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Add this to your existing portfolio-collections style.css */

/* No Image Fallback Styles */
.gallery-collections .main-item.no-image {
    background: #f5f5f5;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.gallery-collections .placeholder-content {
    text-align: center;
    color: #666;
}

.gallery-collections .placeholder-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.gallery-collections .gallery-grid-items .gallery-item.no-image {
    background: #f5f5f5;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-collections .gallery-grid-items .gallery-item.no-image .item-overlay {
    opacity: 1;
    background: transparent;
    color: #666;
    position: static;
}

/* Add this to your portfolio-collections style.css */

/* Enhanced Link Styles */
.gallery-collections .title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gallery-collections .title-link:hover {
    color: #e74c3c;
}

.gallery-collections .view-artwork-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-collections .view-artwork-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.gallery-collections .no-image .view-artwork-btn {
    background: #e74c3c;
    color: white;
    border: 1px solid #e74c3c;
}

.gallery-collections .no-image .view-artwork-btn:hover {
    background: #c0392b;
    border-color: #c0392b;
}

/* Enhanced overlay styles */
.gallery-collections .item-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    padding: 20px;
}

.gallery-collections .artwork-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.gallery-collections .overlay-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 20;
    position: relative;
}

.gallery-collections .overlay-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Full overlay link */
.gallery-collections .item-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: block;
}

/* Ensure hover states work properly */
.gallery-collections .gallery-item {
    position: relative;
    cursor: pointer;
}

.gallery-collections .gallery-item:hover .item-info {
    transform: translateY(0);
}

.gallery-collections .gallery-grid-items .gallery-item:hover .item-overlay {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-collections .view-artwork-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .gallery-collections .overlay-btn {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .gallery-collections .artwork-title {
        font-size: 0.8rem;
    }
}
.logo a{
    text-decoration: none;
    color: #000;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0 40px;
    border-bottom: 1px solid #dee2e6;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23000" opacity="0.02"/><circle cx="40" cy="60" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 30px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 600;
}

.breadcrumb-separator {
    margin: 0 12px;
    color: #adb5bd;
    font-weight: 300;
}

/* Page Title Section */
.page-title-section {
    margin-bottom: 20px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 15px;
    letter-spacing: -1px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

.page-excerpt {
    font-size: 1.2rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    max-width: 800px;
}

.page-excerpt p {
    margin: 0;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
    max-width: 700px;
}

/* Page Meta */
.page-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    color: #6c757d;
}

.last-updated {
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 12px;
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-header {
        padding: 40px 0 30px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .breadcrumb-list {
        font-size: 0.85rem;
    }

    .breadcrumb-separator {
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0 25px;
    }

    .page-title {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .page-excerpt {
        font-size: 1.1rem;
    }

    .breadcrumb-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .breadcrumb-item {
        flex-direction: row;
    }

    .breadcrumb-separator {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .page-excerpt {
        font-size: 1rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .breadcrumb-list {
        font-size: 0.8rem;
    }
}

/* Special styling for portfolio pages */
.page-template-portfolio .page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.page-template-portfolio .page-title,
.page-template-portfolio .page-excerpt,
.page-template-portfolio .page-subtitle {
    color: white;
}

.page-template-portfolio .breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
}

.page-template-portfolio .breadcrumb-link:hover {
    color: white;
}

.page-template-portfolio .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.page-template-portfolio .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.page-template-portfolio .last-updated {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}