/**
 * Main Stylesheet for Tribal Edge Theme
 *
 * @package Tribal_Edge
 */

/* ============================================
   CSS Variables & Color Scheme
   ============================================ */
:root {
	--color-dark-gray: #1a1a1a;
	--color-charcoal: #2d2d2d;
	--color-bronze: #b8860b;
	--color-gold: #daa520;
	--color-silver: #c0c0c0;
	--color-fire-orange: #ff6b35;
	--color-amber: #ffa500;
	--color-parchment-light: #f4e8d0;
	--color-parchment-dark: #e8dcc0;
	--color-text-light: #f5f5f5;
	--color-text-dark: #333333;
	--font-heading: 'Cinzel', serif;
	--font-body: 'Lato', sans-serif;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	/* Smooth scroll handled by JavaScript for better control */
	scroll-behavior: auto;
}

body {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text-light);
	background-color: var(--color-parchment-dark);
	background-image: url('../images/parchement-tile.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed; /* Keep background fixed while scrolling */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--color-text-light);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: 1rem;
}

a {
	color: var(--color-bronze);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--color-gold);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Screen Reader Text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ============================================
   Site Structure
   ============================================ */
#page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
}

/* ============================================
   Header Styles
   ============================================ */
.site-header {
	position: relative;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Logo Section (above nav, no background) */
.logo-section {
	background: var(--color-dark-gray);
	padding: 1.5rem 0;
	width: 100%;
}

.logo-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Navigation Section (with background image) */
.nav-section {
	position: relative;
	background: var(--color-charcoal);
	padding: 1rem 0;
	width: 100%;
}

.header-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-blend-mode: overlay;
	z-index: 1;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 2;
}

.site-branding {
	flex-shrink: 0;
	width: 100%;
	text-align: center;
}

.site-title {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.site-title a {
	color: var(--color-text-light);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	text-decoration: none;
}

.site-logo {
	max-width: 360px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.logo-icon {
	font-size: 2rem;
	color: var(--color-bronze);
	filter: drop-shadow(0 0 5px var(--color-bronze));
}

.logo-text {
	color: var(--color-text-light);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Navigation */
.main-navigation {
	width: 100%;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 0;
	align-items: center;
	margin: 0;
	padding: 0;
}

.nav-menu li {
	margin: 0;
	display: flex;
	align-items: center;
}

.nav-menu li:not(:last-child)::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('../images/nav-divider.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 1rem;
	flex-shrink: 0;
}

.nav-menu a {
	color: var(--color-text-light);
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
	position: relative;
	transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
	color: var(--color-bronze);
}

.menu-toggle {
	display: none;
	background: transparent;
	border: 2px solid var(--color-bronze);
	color: var(--color-text-light);
	padding: 0.5rem 1rem;
	cursor: pointer;
	font-size: 1.5rem;
}

.menu-toggle-icon {
	display: block;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
	position: relative;
	width: 100%;
	height: 682px; /* Match column image height exactly (updated) */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}

.hero-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.hero-column-left,
.hero-column-right {
	position: absolute;
	top: 0;
	height: 100%; /* Match hero section height exactly */
	z-index: 2;
	pointer-events: none;
	display: flex;
	align-items: center;
}

.hero-column-left {
	left: 0;
}

.hero-column-right {
	right: 0;
}

.hero-column-left img,
.hero-column-right img {
	height: 100% !important; /* ALWAYS fill full height of hero section */
	width: auto !important;
	object-fit: contain;
	object-position: center;
	display: block;
}

.hero-overlay {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
	padding-left: calc(4rem + 276px); /* Account for left column width (matches image width) */
	padding-right: calc(4rem + 276px); /* Account for right column width */
	box-sizing: border-box;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
}

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

.hero-tagline-image {
	position: relative;
	width: 62vw;
	max-width: none; /* Override parent constraints */
	margin-bottom: 1.5rem;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
}

.hero-tagline-image img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.hero-headline {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--color-text-light);
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	line-height: 1.2;
}

.hero-subheadline {
	font-size: 1.5rem;
	color: var(--color-bronze);
	margin-bottom: 2rem;
	font-weight: 400;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-cta-button {
	display: inline-flex;
	/* Banner image is 700x245, aspect ratio ~2.86:1 */
	/* Use aspect-ratio to maintain consistent proportions */
	aspect-ratio: 700 / 245;
	min-width: 400px; /* Larger minimum width - background should be bigger than text */
	width: auto;
	max-width: 600px; /* Reasonable maximum */
	padding: 0.8rem 3rem; /* Padding to center text on banner */
	background-image: url('../images/banner-bkg-empty.png');
	background-size: 100% 100%; /* Fill the entire button area, maintain aspect ratio */
	background-position: center center;
	background-repeat: no-repeat;
	/* WCAG compliant: White text with strong shadow for contrast */
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 1rem; /* Consistent font size */
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	/* Strong text shadow for WCAG contrast compliance (meets AA standards) */
	text-shadow: 
		2px 2px 4px rgba(0, 0, 0, 0.9),
		0 0 8px rgba(0, 0, 0, 0.8),
		-1px -1px 2px rgba(0, 0, 0, 0.9);
	border: none;
	border-radius: 0; /* Banner has its own shape */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
	transition: all 0.3s ease;
	text-decoration: none;
	position: relative;
	overflow: visible; /* Allow banner decorative ends to show */
	/* Center text both horizontally and vertically on banner */
	align-items: center;
	justify-content: center;
}

.hero-cta-button::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.15); /* Lighter overlay to preserve banner details */
	z-index: 0;
	transition: background 0.3s ease;
	pointer-events: none; /* Allow clicks through overlay */
}

.hero-cta-button span {
	position: relative;
	top: -25px; /* Adjust vertical position of text on banner */
	z-index: 1; /* Ensure text is above overlay */
	display: inline-block; /* Ensure span behaves correctly */
	text-align: center; /* Center text on banner */
	white-space: nowrap; /* Keep text on one line */
}

/* Removed ::before gradient glow effect */

.hero-cta-button:hover {
	transform: translateY(-2px);
	/* Removed box-shadow - it shows rectangular bounding box instead of banner shape */
}

.hero-cta-button:hover::after {
	background: rgba(0, 0, 0, 0.2); /* Lighter overlay on hover for better visibility */
}

/* ============================================
   Section Dividers
   ============================================ */
.section-divider {
	text-align: center;
	padding: 0.5rem 0; /* Reduced padding significantly */
	margin-top: -2rem; /* Negative margin to overlap with section above */
	margin-bottom: -2rem; /* Negative margin to overlap with section below */
	width: 100%;
	position: relative;
	z-index: 10; /* Ensure divider appears above sections */
}

.section-divider img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* ============================================
   Featured Work Section
   ============================================ */
.featured-work-section {
	/* Removed parchment background - using site-wide background instead */
	padding: 5rem 2rem;
	position: relative;
}

/* Removed ::before overlay to show parchment tile background */

.section-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--color-dark-gray);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.featured-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1rem; /* Reduced gap between elements */
	margin-top: 2rem;
}

.featured-product-card {
	background: transparent;
	border: none;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
	transition: none;
	position: relative;
	display: flex;
	flex-direction: column;
}

.featured-blade-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-image-wrapper {
	width: 100%;
	height: 0;
	padding-bottom: 75%; /* Rectangular aspect ratio (4:3) to match image-frame-rect.png */
	position: relative;
	overflow: visible;
	background: transparent; /* No background on wrapper */
}

.blade-image-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6%; /* Reduced padding to make images bigger */
	background: transparent; /* Removed gray background */
	box-sizing: border-box;
}

.blade-image {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	position: relative;
	top: -10px; /* Adjust vertical position */
	z-index: 1;
}

.blade-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 2;
	pointer-events: none;
}

/* For WooCommerce products (if used) */
.product-image-wrapper img:not(.blade-image):not(.blade-frame) {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.product-title {
	padding: 0.5rem 0 0 0; /* Reduced top padding to bring title closer to frame */
	margin-top: -0.5rem; /* Negative margin to bring even closer to bottom of frame */
	text-align: center;
	font-family: var(--font-heading);
	font-size: 1.5rem; /* Increased from 1.2rem */
	color: var(--color-dark-gray);
	margin-bottom: 0;
	font-weight: 700; /* Increased from 600 to make bolder */
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
}

.featured-blade-link .product-title {
	color: var(--color-dark-gray);
	transition: color 0.3s ease;
}

.featured-blade-link:hover .product-title {
	color: var(--color-bronze);
}

/* ============================================
   Facebook Feed Section
   ============================================ */
.facebook-feed-section {
	padding: 5rem 2rem;
	position: relative;
}

.facebook-feed-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.facebook-post-card {
	background: transparent;
	border: none;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
	transition: none;
	position: relative;
	display: flex;
	flex-direction: column;
}

.facebook-post-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.facebook-post-image-wrapper {
	width: 100%;
	height: 0;
	padding-bottom: 75%; /* Rectangular aspect ratio */
	position: relative;
	overflow: visible;
	background: transparent;
}

.facebook-post-image-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6%;
	background: transparent;
	box-sizing: border-box;
}

.facebook-post-image {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
	position: relative;
	top: -10px;
	z-index: 1;
}

.facebook-post-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 2;
	pointer-events: none;
}

.facebook-post-text-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
	color: var(--color-text-light);
	padding: 1.5rem 1rem 1rem;
	z-index: 3;
	font-size: 0.95rem;
	line-height: 1.5;
	max-height: 40%;
	overflow: hidden;
}

.facebook-post-text-overlay p {
	margin: 0;
	color: var(--color-text-light);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.facebook-feed-message {
	text-align: center;
	padding: 2rem;
	color: var(--color-dark-gray);
}

.facebook-feed-message a {
	color: var(--color-bronze);
	text-decoration: underline;
}

/* Smash Balloon Social Post Feed Plugin Overrides */
.facebook-feed-section .sb-social-post-feed-wrapper,
.facebook-feed-section .sb-social-post-feed {
	display: contents;
}

.facebook-feed-section .sb-social-post-item,
.facebook-feed-section .sb-post-item {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
}

.facebook-feed-section .sb-post-content {
	display: flex;
	flex-direction: column;
	position: relative;
}

.facebook-feed-section .sb-post-image,
.facebook-feed-section .sb-post-media {
	order: 1;
	position: relative;
}

.facebook-feed-section .sb-post-text,
.facebook-feed-section .sb-post-caption {
	order: 2;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
	/* Removed parchment background - using site-wide background instead */
	padding: 5rem 2rem;
	position: relative;
}

/* Removed ::before overlay to show parchment tile background */

.about-content {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.about-image {
	position: relative;
	width: 100%;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	border: 4px solid var(--color-bronze);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	display: block;
}

.about-text {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem;
	background: linear-gradient(to left, rgba(244, 232, 208, 0.95) 0%, rgba(244, 232, 208, 0.85) 70%, transparent 100%);
	border-radius: 0 10px 10px 0;
}

.about-text .section-title {
	text-align: left;
	color: var(--color-dark-gray);
	margin-bottom: 1.5rem;
}

.about-description {
	color: var(--color-dark-gray);
	font-size: 1.1rem;
	line-height: 1.8;
}

.about-description p {
	margin-bottom: 1.5rem;
}

/* ============================================
   Workshops Section
   ============================================ */
.workshops-section {
	background-image: url('../images/bkg-stone-bbc.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 5rem 2rem;
	position: relative;
}

/* Removed ::before overlay to show parchment tile background */

.workshops-header-image {
	text-align: center;
	margin-bottom: 3rem;
}

.workshops-header-img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.workshops-content {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	text-align: center;
}

/* Video Wrapper */
.workshops-video-wrapper {
	margin: 3rem auto 4rem;
	max-width: 600px; /* Reduced from 900px */
	position: relative;
}

.workshops-video-frame {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	background: transparent; /* Frame overlay provides the visual frame */
	border-radius: 8px;
	overflow: visible; /* Changed from hidden to allow frame overlay to show */
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.workshops-video-container {
	position: absolute;
	top: 15%; /* Increased margin to make video smaller */
	left: 15%;
	width: 70%; /* Reduced width further to fit within frame (100% - 15% - 15%) */
	height: 70%; /* Reduced height further to fit within frame (100% - 15% - 15%) */
	padding: 0;
	box-sizing: border-box;
	background: var(--color-dark-gray); /* Gray/black background for video area */
	border-radius: 4px;
}

.workshops-video {
	width: 100%;
	height: 100%;
	border: none;
	z-index: 1;
}

.video-frame-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 2;
	pointer-events: none;
}

/* Workshops Text Content */
.workshops-text {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	background: rgba(244, 232, 208, 0.95); /* Parchment-colored background for legibility */
	padding: 2.5rem;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.workshops-paragraph {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--color-dark-gray);
	margin-bottom: 1.5rem;
}

.workshops-paragraph:last-of-type {
	margin-bottom: 2.5rem;
}

/* Workshops CTA Button */
.workshops-cta {
	margin-top: 2rem;
}

.workshops-cta-button {
	display: inline-block;
	background-image: url('../images/banner-bkg-empty.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	aspect-ratio: 700 / 245;
	min-width: 400px;
	max-width: 450px;
	min-height: 80px;
	padding: 0;
	border: none;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshops-cta-button span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 
		2px 2px 4px rgba(0, 0, 0, 0.9),
		0 0 8px rgba(0, 0, 0, 0.8),
		-1px -1px 2px rgba(0, 0, 0, 0.9);
	position: relative;
	top: -25px;
}

.workshops-cta-button:hover {
	transform: translateY(-2px);
	/* Removed box-shadow - it shows rectangular bounding box instead of banner shape */
}

/* ============================================
   Footer Styles
   ============================================ */
.site-footer {
	background: var(--color-dark-gray);
	background-image: url('../images/bkg-footer.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 3rem 2rem 1.5rem;
	margin-top: auto;
	position: relative;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	margin-bottom: 2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.footer-column {
	color: var(--color-text-light);
}

.footer-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: var(--color-text-light);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.contact-info {
	margin-bottom: 0.5rem;
}

.contact-label {
	font-weight: 600;
	margin-right: 0.5rem;
}

.contact-info a {
	color: var(--color-text-light);
	transition: color 0.3s ease;
}

.contact-info a:hover {
	color: var(--color-bronze);
}

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

.social-link {
	display: inline-block;
	width: 60px;
	height: 60px;
	background: transparent;
	border: none;
	text-decoration: none;
	transition: all 0.3s ease;
	opacity: 0.8;
	position: relative;
}

.social-link:hover {
	opacity: 1;
	transform: scale(1.1);
}

.social-icon {
	width: 60px;
	height: 60px;
	display: block;
	object-fit: contain;
	transition: opacity 0.3s ease;
}

.social-tooltip {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-8px);
	background: rgba(0, 0, 0, 0.9);
	color: var(--color-text-light);
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 0.85rem;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease 0.21s, transform 0.3s ease 0.21s;
	margin-bottom: 8px;
	z-index: 1000;
	font-family: var(--font-body);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: rgba(0, 0, 0, 0.9);
}

.social-link:hover .social-tooltip {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.newsletter-form {
	display: flex;
	gap: 0.5rem;
}

.newsletter-form input[type="email"] {
	flex: 1;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	color: var(--color-text-light);
	font-family: var(--font-body);
	font-size: 0.95rem;
}

.newsletter-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
	padding: 0.75rem 1rem;
	background: transparent;
	border: none;
	border-radius: 4px;
	color: var(--color-text-light);
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.newsletter-submit:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

.submit-icon {
	font-size: 1.5rem;
}

.site-info {
	text-align: center;
	padding-top: 1.5rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
	color: var(--color-text-light);
	font-size: 0.85rem;
	margin: 0;
	opacity: 0.8;
}

.crafted-text {
	color: var(--color-text-light);
	font-style: italic;
	opacity: 0.9;
}

/* ============================================
   Content Styles
   ============================================ */
.site-main {
	padding: 0 0 2rem 0; /* No top padding to remove gap between header and hero */
}

.entry-header {
	margin-bottom: 2rem;
}

.entry-title {
	font-family: var(--font-heading);
	color: var(--color-text-light);
}

.entry-content {
	color: var(--color-text-light);
	line-height: 1.8;
}

.entry-content a {
	color: var(--color-bronze);
	text-decoration: underline;
}

.entry-content a:hover {
	color: var(--color-gold);
}

.post-thumbnail {
	margin-bottom: 2rem;
}

.post-thumbnail img {
	border-radius: 10px;
	border: 3px solid var(--color-bronze);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.animate-in {
	animation: fadeInUp 0.8s ease-out;
}

.featured-work-section.animate-in,
.about-section.animate-in {
	animation: fadeIn 1s ease-out;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

