@charset "utf-8";
/* CSS Document 

Tooplate 2151 Winter Gallery

https://www.tooplate.com/view/2151-winter-gallery

*/

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

:root {
	--color-snow: #fafbfc;
	--color-ice: #e8f4f8;
	--color-frost: #d4e9f2;
	--color-winter-blue: #7ba8bd;
	--color-slate: #4a5f6d;
	--color-charcoal: #2c3e50;
	--color-white: #ffffff;
	--font-serif: 'Cormorant Garamond', serif;
	--font-sans: 'Montserrat', sans-serif;
}

body {
	font-family: var(--font-sans);
	background: linear-gradient(135deg, var(--color-snow) 0%, var(--color-ice) 100%);
	color: var(--color-charcoal);
	line-height: 1.6;
	min-height: 100vh;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 1.5rem 2rem;
	z-index: 1000;
	border-bottom: 1px solid rgba(123, 168, 189, 0.1);
}

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

.logo {
	font-family: var(--font-serif);
	font-size: 1.8rem;
	font-weight: 300;
	letter-spacing: 2px;
	color: var(--color-slate);
	display: flex;
	align-items: center;
	gap: 0.8rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.logo:hover {
	color: var(--color-winter-blue);
}

.logo:hover .logo-icon {
	opacity: 1;
}

.logo-icon {
	width: 24px;
	height: 24px;
	opacity: 0.6;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-slate);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: none;
    transition: color 0.3s ease;
    position: relative;

    padding-top: 1.5rem;
    display: inline-block;   /* ← ADD THIS */
    line-height: 1;          /* ← ADD THIS */
}
.nav-links a::before {
	content: '❄❄';
	position: absolute;
	 top: 2px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.85rem;
	color: var(--color-winter-blue);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.nav-links a.active::before,
.nav-links a:hover::before {
	opacity: 1;
}

.nav-links a:hover {
	color: var(--color-winter-blue);
}

/* Hero Section */
.hero {
	margin-top: 80px;
	padding: 12rem 2rem 10rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(rgba(250, 251, 252, 0.001), rgba(232, 244, 248, 0.0001));
	z-index: 1;
}

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.001) 0%, rgba(123, 168, 189, 0.0001) 100%);
	z-index: 2;
	pointer-events: none;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	animation: heroSlide 18s infinite;
	opacity: 0;
}




@keyframes heroSlide {
	0% {
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	33% {
		opacity: 1;
	}

	38% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}

.hero h1 {
	font-family: var(--font-serif);
	font-size: 4.5rem;
	font-weight: 300;
	color: #ffffff; /* white text */
	margin-bottom: 1.5rem;
	letter-spacing: 3px;
	line-height: 1.2;
	position: relative;
	z-index: 1;
}

.hero p {
	font-size: 1.1rem;
	color: #ffffff; /* white text */
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}

/* Filter Section */
.filter-container {
	display: none;
	padding: 3rem 2rem;
	text-align: center;
}

.filter-buttons {
	display: inline-flex;
	gap: 2.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.filter-btn {
	background: none;
	border: none;
	font-family: var(--font-sans);
	font-size: 0.95rem;
	color: var(--color-slate);
	cursor: pointer;
	padding: 0.5rem 0;
	position: relative;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 300;
	transition: color 0.3s ease;
}

.filter-btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 100%;
	height: 1px;
	background: var(--color-winter-blue);
	transition: transform 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	color: var(--color-winter-blue);
}

.filter-btn.active::after {
	transform: translateX(-50%) scaleX(1);
}

.hero-description-text {
    max-width: 800px;
    margin: 2rem auto; /* spacing from hero above and filter below */
    text-align: center;
}

.hero-description-text p {
    color: #7a7a7a; /* grey text */
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--font-sans);
}



/* Gallery Section */
.gallery-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 2rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
	grid-auto-flow: dense;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 2px;
	cursor: pointer;
	background: var(--color-white);
	box-shadow: 0 4px 20px rgba(123, 168, 189, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

.gallery-item:nth-child(1) {
	animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
	animation-delay: 0.15s;
}

.gallery-item:nth-child(3) {
	animation-delay: 0.2s;
}

.gallery-item:nth-child(4) {
	animation-delay: 0.25s;
}

.gallery-item:nth-child(5) {
	animation-delay: 0.3s;
}

.gallery-item:nth-child(6) {
	animation-delay: 0.35s;
}

.gallery-item:nth-child(7) {
	animation-delay: 0.4s;
}

.gallery-item:nth-child(8) {
	animation-delay: 0.45s;
}

.gallery-item:nth-child(9) {
	animation-delay: 0.5s;
}

.gallery-item.tall {
	grid-row: span 2;
}

/* Featured big painting (4x size) */
.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

/* Wide landscape painting (2x width) */
.gallery-item.wide {
    grid-column: span 2;
}




.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(123, 168, 189, 0.15);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(44, 62, 80, 0.8), transparent);
	padding: 2rem 1.5rem 1.5rem;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-title {
	font-family: var(--font-serif);
	font-size: 1.3rem;
	color: var(--color-white);
	font-weight: 300;
	margin-bottom: 0.3rem;
}

.gallery-category {
	font-size: 0.75rem;
	color: var(--color-frost);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 300;
}

/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(250, 251, 252, 0.98);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.lightbox.active {
	display: flex;
	opacity: 1;
}

.lightbox-content {
	max-width: 90%;
	max-height: 85vh;
	position: relative;
	animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
	from {
		transform: scale(0.9);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.lightbox-content img {
	max-width: 100%;
	max-height: 85vh;
	display: block;
	box-shadow: 0 20px 60px rgba(123, 168, 189, 0.2);
}

.lightbox-info {
	text-align: center;
	margin-top: 2rem;
}

.lightbox-info h3 {
	font-family: var(--font-serif);
	font-size: 2rem;
	color: var(--color-slate);
	font-weight: 300;
	margin-bottom: 0.5rem;
}

.lightbox-info p {
	font-size: 0.85rem;
	color: var(--color-winter-blue);
	text-transform: none;
	letter-spacing: 1px;
	font-weight: 300;
}

.lightbox-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: none;
	border: none;
	font-size: 3rem;
	color: var(--color-slate);
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	font-weight: 200;
}

.lightbox-close:hover {
	color: var(--color-winter-blue);
	transform: rotate(90deg);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	cursor: pointer;
	font-size: 1.5rem;
	color: var(--color-slate);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-nav:hover {
	background: var(--color-white);
	color: var(--color-winter-blue);
}

.lightbox-prev {
	left: 2rem;
}

.lightbox-next {
	right: 2rem;
}

/* Footer */
footer {
	text-align: center;
	padding: 4rem 2rem 3rem;
	margin-top: 4rem;
	border-top: 1px solid rgba(123, 168, 189, 0.1);
}

footer p {
	color: var(--color-winter-blue);
	font-size: 0.85rem;
	letter-spacing: 1.5px;
	font-weight: 300;
}

footer a {
	color: var(--color-winter-blue);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

footer a:hover {
	opacity: 0.7;
}



.stat-box {
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(123, 168, 189, 0.15);
	border-radius: 2px;
	text-align: center;
	transition: all 0.3s ease;
}

.stat-box:hover {
	background: rgba(255, 255, 255, 0.9);
	border-color: var(--color-winter-blue);
	transform: translateY(-3px);
}

.stat-number {
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 400;
	color: var(--color-winter-blue);
	margin-bottom: 0.3rem;
}

.stat-label {
	font-size: 0.75rem;
	color: var(--color-slate);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 300;
}

/* Contact Section */
.contact-section {
	max-width: 700px;
	margin: 8rem auto 0;
	padding: 0 2rem;
	text-align: center;
}

.contact-section h2 {
	font-family: var(--font-serif);
	font-size: 3rem;
	font-weight: 300;
	color: var(--color-slate);
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.contact-section p {
	font-size: 1rem;
	color: var(--color-winter-blue);
	margin-bottom: 3rem;
	font-weight: 300;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.form-group label {
	font-size: 0.85rem;
	color: var(--color-slate);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 300;
}

.form-group input,
.form-group textarea {
	padding: 1rem;
	border: 1px solid rgba(123, 168, 189, 0.2);
	background: var(--color-white);
	font-family: var(--font-sans);
	font-size: 0.95rem;
	color: var(--color-charcoal);
	border-radius: 2px;
	transition: border-color 0.3s ease;
}

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

.form-group textarea {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	padding: 1rem 3rem;
	background: var(--color-slate);
	color: var(--color-white);
	border: none;
	font-family: var(--font-sans);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 300;
	border-radius: 2px;
}

.submit-btn:hover {
	background: var(--color-winter-blue);
	transform: translateY(-2px);
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-slate);
	font-size: 0.9rem;
	font-weight: 300;
}

.contact-item a {
	color: var(--color-slate);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: var(--color-winter-blue);
}

/* Mobile Menu */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--color-slate);
	cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
	.hero {
		padding: 8rem 2rem 6rem;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 1rem;
	}

	.mobile-menu-btn {
		display: block;
	}

	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--color-white);
		flex-direction: column;
		padding: 2rem;
		gap: 1.5rem;
		display: none;
		box-shadow: 0 10px 30px rgba(123, 168, 189, 0.1);
	}

	.nav-links a {
		padding-top: 0;
	}

	.nav-links a::before {
		display: none;
	}

	.nav-links.active {
		display: flex;
	}

	.lightbox-nav {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}

	.lightbox-prev {
		left: 1rem;
	}

	.lightbox-next {
		right: 1rem;
	}

	.lightbox-close {
		top: 1rem;
		right: 1rem;
		font-size: 2rem;
	}

    /* Reset featured painting on tablets & phones */
    .gallery-item.featured 
	.gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

	

	.contact-info {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 6rem 1.5rem 5rem;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero p {
		font-size: 0.95rem;
	}

	.filter-buttons {
		gap: 1.5rem;
	}

	.filter-btn {
		font-size: 0.85rem;
	}

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

	.about-stats {
		gap: 0.75rem;
	}

	.stat-box {
		padding: 1rem;
	}

	.stat-number {
		font-size: 1.5rem;
	}

	.stat-label {
		font-size: 0.7rem;
	}
}
#lightboxCategory {
    display: none;
}
.gallery-category {
    display: none;
}
.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    overflow-y: auto; /* allows scrolling if image/text too tall */
    position: relative;
}

/* Subtle status badge on top-left corner */
.gallery-item::before {
    content: attr(data-status);
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 2px 6px;
    font-size: 0.6rem;         /* smaller font */
    font-weight: 400;          /* lighter weight */
    color: #fff;
    border-radius: 2px;        /* slightly less rounded */
    z-index: 10;
    pointer-events: none;
    opacity: 0.5;             /* more transparent */
    text-transform: uppercase;
    box-shadow: none;         /* remove shadow */
    background-color: rgba(0, 0, 0, 0.5); /* neutral dark background */
}

/* Badge colors - more subtle */
.gallery-item[data-status="Sold"]::before {
    background-color: rgba(192, 57, 43, 0.6); /* less saturated red */
}

.gallery-item[data-status="Available"]::before {
    background-color: rgba(39, 174, 96, 0.6); /* less saturated green */
}


#lightboxDimensions {
    font-size: 0.85rem;
    opacity: 0.75;
    margin: 4px 0;
    font-style: italic;
}

/* =========================
   ABOUT PAGE
   ========================= */

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 140px 40px 80px;
}

/* Reuse existing typography feel */
.about-container h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-container p {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.2em;
}



/* Text block */
.about-text {
    max-width: 520px;
}

/* Image block */
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Slight visual calm */
.about-section:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 120px;
}

/* Active nav link (optional but nice) */
.nav-links a.active {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 900px) {
    .about-container {
        padding: 120px 24px 60px;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 80px 0;
    }

    .about-section:not(:first-child) {
        padding-top: 80px;
    }

    .about-container h2 {
        font-size: 1.8rem;
    }
}

.about-section {
    display: flex;
    align-items: center;  /* vertically centers text and image */
    gap: 2rem;            /* space between text and image */
    flex-wrap: wrap;       /* allows stacking on smaller screens */
    margin: 4rem 0;
}

.about-section.reverse {
    flex-direction: row-reverse; /* swaps text and image */
}

.about-text {
    flex: 1 1 50%; /* takes half the width, can shrink if needed */
    max-width: 520px; /* optional: limits width for readability */
}

.about-image {
    flex: 1 1 50%;
    max-width: 600px; /* optional: limits image size */
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}


/* =========================
   SHOP PAGE
   ========================= */

.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 2rem 4rem; /* space for fixed nav */
}

.shop-title {
    font-family: var(--font-serif);
    font-weight: 400;       /* match About h2 */
    font-size: 2.2rem;      /* same as About h2 */
    text-align: left;       /* optional, match About text alignment */
    margin-bottom: 1.2rem;
    letter-spacing: normal;
}


.shop-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--color-winter-blue);
    font-weight: 300;
    margin-bottom: 3rem;
}


/* First About Section - image smaller, text beside it */
.about-section:first-of-type {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
}

.about-section:first-of-type .about-image {
    flex: 0 0 45%; /* image takes 45% */
    max-width: 45%; /* ensures it never grows beyond 45% */
}

.about-section:first-of-type .about-text {
    flex: 1 1 50%; /* text takes remaining space */
}

.about-section:first-of-type .about-image img {
    width: 100%; 
    height: auto; 
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 900px) {
    .about-section:first-of-type .about-image,
    .about-section:first-of-type .about-text {
        flex: 1 1 100%; /* stack vertically on smaller screens */
        max-width: 100%;
    }
}


.shop-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
    font-size: 1.1rem;
}

.shop-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.shop-option {
    text-decoration: none;
    color: inherit;
    text-align: center;
    max-width: 360px;
}

.shop-option img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-option:hover img {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.shop-option span {
    display: block;
    margin-top: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.portrait-image {
    max-width: 420px;   /* adjust to taste */
    margin: 2rem auto;  /* center it */
}

.portrait-image img {
    width: 100%;
    height: auto;
}

.shop-option .shop-title {
    display: block;
    margin-top: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.03em;
    font-size: 1rem;
}

.shop-option .shop-action {
    display: inline-block;
    margin-top: 0.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--color-winter-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .about-section {
        flex-direction: column; /* stack text above image */
        gap: 2rem;
    }

    .about-text,
    .about-image {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
.about-images-wrapper {
    display: flex;
    gap: 1rem;           /* space between the two images */
    flex-wrap: wrap;      /* allows wrapping on small screens */
}

.about-images-wrapper .about-image {
    flex: 1 1 300px;     /* grow, shrink, minimum width 300px */
    max-width: 100%;     /* prevents overflow */
}

.about-images-wrapper .about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Force stacking on smaller screens */
@media (max-width: 640px) {
    .about-images-wrapper {
        flex-direction: column;  /* stack vertically */
    }

    .about-images-wrapper .about-image {
        flex: 1 1 100%;
    }
}
.contact-section {
    padding: 60px 10%;
    text-align: center;
}

.contact-container-single {
    max-width: 800px;
    margin: auto;
}

.contact-email a {
    font-size: 1.4rem;
    text-decoration: none;
    color: black;
}

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

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    font-size: 2rem;
    margin: 0 15px;
    color: black;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.7;
}

.inactive-social {
    color: #aaa !important;
    opacity: 0.4;
    filter: grayscale(100%);
    pointer-events: none;
    transition: 0.3s ease;
}

.status-link {
    color: #2e7d32;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

.status-link:hover {
    opacity: 0.7;
}

.latest-painting {
  margin: 6rem auto;
  max-width: 1200px;
  padding: 0 2rem;
}

.painting-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap; /* allows stacking on mobile */
  align-items: flex-start;
}

.painting-main {
  flex: 1 1 55%;
}

.painting-large {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
}

.painting-thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.painting-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.painting-thumb:hover {
  transform: scale(1.05);
}

.painting-info {
  flex: 1 1 40%;
}

.painting-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.painting-description {
  margin-bottom: 1rem;
}

.painting-dimensions {
  margin-bottom: 0.5rem;
}

.painting-price {
  margin-bottom: 1rem;
}

.original-price {
  text-decoration: line-through;
  margin-right: 1rem;
  color: #aaa;
}

.discount-price {
  font-weight: bold;
  color: var(--color-winter-blue);
}

.enquire-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--color-slate);
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.enquire-btn:hover {
  background: var(--color-winter-blue);
  transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 900px){
  .painting-container {
    flex-direction: column;
  }
  .painting-info, .painting-main {
    flex: 1 1 100%;
  }
}

.photographer-thanks {
  max-width: 1000px;
  margin: 80px auto;
  padding: 20px;
}

.photographer-thanks h2 {
  text-align: center;
  margin-bottom: 20px;
}

.photographer-thanks p {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}

.photographer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.photographer-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.photographer-card:hover {
  transform: translateY(-5px);
}

.photographer-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.photographer-card h3 {
  margin-bottom: 10px;
}

.photographer-card a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #2a6db0;
  font-weight: 500;
}

.section-title{
    font-family:'Cormorant Garamond', serif;
    font-size:2.2rem;
    text-align:center;
    margin:80px 0 40px;
    position:relative;
}

.section-title::after{
    content:"";
    display:block;
    width:80px;
    height:1px;
    background:#aaa;
    margin:14px auto 0;
}

/* Section intro under titles */
.section-intro {
    max-width:700px;       /* keeps line length readable */
    margin:0 auto 60px auto; /* spacing after paragraph */
    text-align:center;
    font-family:'Montserrat', sans-serif;
    font-size:1rem;
    line-height:1.7;
    color:#555;            /* soft, elegant grey */
}
.section-intro::before {
    content:"";
    display:block;
    width:100%;
    height:8px;
    background:#f0f0f0;
    margin-bottom:20px;
    border-radius:4px;
}