
:root {
	--primary: #0F172A;       /* Derin Gece Mavisi */
	--secondary: #F8FAFC;     /* Soğuk Beyaz */
	--accent: #F97316;        /* Canlı Turuncu (CTA & Appetite) */
	--accent-hover: #EA580C;
	--surface: #ffffff;
	--border: #E2E8F0;
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	background-color: var(--secondary);
	color: var(--primary);
	overflow-x: hidden;
}

.page-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
	padding: 210px 0;
	color: white;
	position: relative;
	overflow: hidden;
}
.breadcrumb-item a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb-item.active { color: var(--secondary); }

/* --- 0. Şahane Menü (Glassmorphism & Mobile First) --- */
.navbar-v6 {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0,0,0,0.05);
	padding: 1rem 0;
	transition: all 0.3s;
}

.navbar-brand {
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: -1px;
}
.navbar-brand span { color: var(--accent); }

.nav-link {
	font-weight: 500;
	color: var(--primary);
	margin: 0 0.5rem;
	transition: 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }

.btn-primary-v6 {
	background-color: var(--primary);
	color: white;
	border: none;
	padding: 0.6rem 1.5rem;
	border-radius: 12px;
	font-weight: 600;
	transition: 0.3s;
}
.btn-primary-v6:hover { background-color: var(--accent); transform: translateY(-2px); color: white; }

.btn-accent-v6 {
	background-color: var(--accent);
	color: white;
	border: none;
	padding: 0.8rem 2rem;
	border-radius: 12px;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
	transition: 0.3s;
}
.btn-accent-v6:hover { background-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4); color: white; }

/* --- 1. Banner (Bold & Modern) --- */
.hero-v6 {
	padding: 160px 0 100px 0;
	background: radial-gradient(circle at top right, #fff1e6, transparent), #fff;
	position: relative;
	overflow: hidden;
}

.hero-badge {
	background: rgba(249, 115, 22, 0.1);
	color: var(--accent);
	padding: 0.5rem 1rem;
	border-radius: 30px;
	font-weight: 700;
	font-size: 0.9rem;
	display: inline-block;
	margin-bottom: 1.5rem;
}

.display-bold {
	font-weight: 800;
	font-size: 3.5rem;
	line-height: 1.1;
	letter-spacing: -2px;
	margin-bottom: 1.5rem;
}

.hero-img-wrapper {
	position: relative;
}
.hero-main-img {
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	width: 100%;
	height: 500px;
	object-fit: cover;
}
.floating-card {
	position: absolute;
	background: white;
	padding: 1.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	gap: 1rem;
	bottom: 40px;
	left: -30px;
	animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* --- 8. Kayan Referanslar (Marquee) --- */
.marquee-section {
	background: var(--primary);
	padding: 2rem 0;
	overflow: hidden;
	white-space: nowrap;
}
.marquee-track {
	display: inline-flex;
	animation: scroll 30s linear infinite;
	gap: 4rem;
}
.marquee-item {
	color: rgba(255,255,255,0.4);
	font-weight: 700;
	font-size: 1.5rem;
	text-transform: uppercase;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- 2. Hakkımızda & 4. Özellikler (Bento Grid Layout) --- */
.bento-section { padding: 100px 0; }

.bento-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(2, 300px);
	gap: 20px;
}

.bento-box {
	background: var(--surface);
	border-radius: 24px;
	padding: 2rem;
	border: 1px solid var(--border);
	transition: 0.3s;
	overflow: hidden;
	position: relative;
}
.bento-box:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }

.box-large { grid-column: span 8; } /* Büyük Kutu */
.box-tall { grid-column: span 4; grid-row: span 2; background: var(--primary); color: white; } /* Uzun Kutu */
.box-small { grid-column: span 4; } /* Küçük Kutu */

.feature-icon-box {
	width: 50px; height: 50px;
	background: rgba(249, 115, 22, 0.1);
	color: var(--accent);
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.2rem; margin-bottom: 1rem;
}

/* --- 3. Hizmetler (New Image Cards) --- */
.services-section { background: white; padding: 100px 0; }

.service-card-v6 {
	position: relative;
	height: 450px;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: 0.3s;
}

.service-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-v6:hover .service-bg {
	transform: scale(1.1);
}

.service-overlay {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.5));
	pointer-events: none;
}

.service-box {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 85%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	padding: 1.5rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	transition: bottom 0.3s ease;
}

.service-card-v6:hover .service-box {
	bottom: 40px;
}

/* --- 5. Yemek Listesi (Sticky Tabs & Modern Cards) --- */
.menu-wrapper { padding: 100px 0; }

.category-nav {
	position: sticky;
	top: 80px; /* Navbar yüksekliği */
	z-index: 90;
	background: rgba(248, 250, 252, 0.9);
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--border);
	overflow-x: auto;
	white-space: nowrap;
}

.cat-btn {
	background: white;
	border: 1px solid var(--border);
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	color: var(--primary);
	font-weight: 600;
	margin-right: 10px;
	transition: 0.3s;
}
.cat-btn.active, .cat-btn:hover {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

.food-card-v6 {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0,0,0,0.02);
	border: 1px solid var(--border);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}
.food-img {
	width: 140px;
	height: 140px;
	object-fit: cover;
	border-radius: 20px;
	margin: 10px;
}
.food-info { padding: 1.5rem; flex: 1; }
.price-badge {
	background: rgba(15, 23, 42, 0.05);
	padding: 5px 12px;
	border-radius: 8px;
	font-weight: 700;
	color: var(--primary);
}


        /* --- NEW: Gallery Section (Masonry) with Lightbox --- */
        .gallery-section { padding: 100px 0; }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            grid-auto-rows: 250px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            cursor: pointer;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img { transform: scale(1.1); }
        .g-col-2 { grid-column: span 2; }
        .g-row-2 { grid-row: span 2; }
        .overlay-gallery {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(15, 23, 42, 0.4);
            opacity: 0;
            transition: 0.3s;
            display: flex; align-items: center; justify-content: center;
            color: white;
            font-size: 2rem;
        }
        .gallery-item:hover .overlay-gallery { opacity: 1; }

        /* Lightbox Styles */
        .lightbox {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(15, 23, 42, 0.95); z-index: 10000;
            display: none; align-items: center; justify-content: center;
            backdrop-filter: blur(10px);
            opacity: 0; transition: opacity 0.3s ease;
        }
        .lightbox.active { display: flex; opacity: 1; }
        .lightbox-img {
            max-width: 90%; max-height: 90%;
            border-radius: 10px; box-shadow: 0 0 50px rgba(0,0,0,0.5);
            transform: scale(0.9); transition: transform 0.3s ease;
        }
        .lightbox.active .lightbox-img { transform: scale(1); }
        .lightbox-close {
            position: absolute; top: 30px; right: 30px;
            color: white; font-size: 2.5rem; cursor: pointer;
            transition: 0.3s; width: 50px; height: 50px;
            display: flex; align-items: center; justify-content: center;
            background: rgba(255,255,255,0.1); border-radius: 50%;
        }
        .lightbox-close:hover { background: var(--accent); color: white; transform: rotate(90deg); }
        

/* --- NEW: Reels Section --- */
.reels-section { 
	padding: 100px 0; 
	background: var(--primary); 
	color: white; 
	overflow: hidden; 
}
.reels-container {
	display: flex;
	overflow-x: auto;
	gap: 20px;
	padding: 20px 0 40px 0;
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}
.reels-container::-webkit-scrollbar { display: none; }

.reel-card {
	min-width: 280px;
	height: 500px;
	background: #222;
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	scroll-snap-align: center;
	transition: 0.3s;
	border: 2px solid rgba(255,255,255,0.1);
}
.reel-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.reel-img { width: 100%; height: 100%; object-fit: cover; }
.reel-overlay {
	position: absolute; bottom: 0; left: 0; width: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
	padding: 20px;
}
.play-btn {
	position: absolute; top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 60px; height: 60px;
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(5px);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: white; font-size: 1.5rem;
	transition: 0.3s;
}
.reel-card:hover .play-btn { background: var(--accent); transform: translate(-50%, -50%) scale(1.1); }


/* --- 7. CTA Section --- */
.cta-box {
	background: var(--accent);
	border-radius: 32px;
	padding: 4rem;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}
.cta-pattern {
	position: absolute; top: 0; left: 0; width: 100%; height: 100%;
	background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
	background-size: 20px 20px; opacity: 0.3;
}

/* --- 6. İletişim (Modern Split) --- */
.contact-section { padding: 100px 0; }
.contact-card {
	background: white;
	padding: 2rem;
	border-radius: 24px;
	border: 1px solid var(--border);
	height: 100%;
}

/* --- 9. Footer --- */
.footer-v6 {
	background: var(--primary);
	color: rgba(255,255,255,0.6);
	padding: 4rem 0 2rem 0;
}
.footer-title { color: white; font-weight: 700; margin-bottom: 1.5rem; }
.footer-link { color: rgba(255,255,255,0.6); text-decoration: none; display: block; margin-bottom: 0.8rem; transition: 0.3s; }
.footer-link:hover { color: var(--accent); padding-left: 5px; }

/* Mobile Responsive Fixes */
@media (max-width: 992px) {
	.bento-grid { display: flex; flex-direction: column; }
	.bento-box { height: auto; min-height: 250px; }
	.display-bold { font-size: 2.5rem; }
	.food-card-v6 { flex-direction: column; text-align: left; }
	.food-img { width: 100%; height: 200px; margin: 0; border-radius: 20px 20px 0 0; }
	.cta-box { padding: 2rem; }
	.hero-main-img { height: 350px; margin-top: 30px; }
	
	/* Gallery Mobile */
	.gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
	.g-col-2 { grid-column: span 1; }
	.g-row-2 { grid-row: span 1; }
}

.features-section {
	background-color: #fff;
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.feature-icon {
	font-size: 32px;
	color: #444;
}

.feature-title {
	font-weight: 700;
	font-size: 14px;
	margin: 0;
}

.feature-text {
	font-size: 13px;
	color: #666;
	margin: 0;
}

.faq-section { padding: 100px 0; background: #fff; }
.accordion-button {
	background-color: var(--secondary);
	color: var(--primary);
	box-shadow: none;
	border: none;
	border-radius: 16px !important;
	font-weight: 700;
}
.accordion-item {
	border: 1px solid var(--border);
	border-radius: 16px !important;
	margin-bottom: 1rem;
	overflow: hidden;
}
.accordion-button:not(.collapsed) {
	background-color: var(--primary);
	color: white;
	box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
	filter: invert(1);
}
.accordion-button:focus {
	box-shadow: none;
}

.blog-section { padding: 100px 0; background: var(--secondary); }
.blog-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border);
	transition: 0.3s;
	height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }

.blog-img-wrapper { position: relative; height: 240px; overflow: hidden; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .blog-img { transform: scale(1.1); }

.date-badge {
	position: absolute; top: 20px; right: 20px;
	background: white; padding: 8px 15px; border-radius: 12px;
	text-align: center; font-weight: 700; line-height: 1.1;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	color: var(--primary);
}
.date-month { font-size: 0.8rem; text-transform: uppercase; color: var(--accent); display: block; }

.blog-body { padding: 2rem; }
.read-more { color: var(--primary); font-weight: 700; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.read-more:hover { color: var(--accent); letter-spacing: 1px; }


.product-card {
	background: white;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid rgba(0,0,0,0.03);
	height: 100%;
	position: relative;
}
.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px -5px rgba(5, 92, 157, 0.15);
}

.product-img-wrapper {
	position: relative;
	overflow: hidden;
	height: 220px;
	background-color: #f8f9fa;
}
.product-img {
	width: 100%;
	height: 100%;
	object-fit: contain; /* Kurumsal ürünler genelde kutulu/lisanslı olduğu için contain daha iyi olabilir, duruma göre cover */
	padding: 20px;
	transition: transform 0.5s ease;
}
.product-card:hover .product-img {
	transform: scale(1.05);
}

.product-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.badge-new { background-color: var(--primary); color: white; }
.badge-sale { background-color: #198754; color: white; }

.product-body {
	padding: 25px;
}
.product-category {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted);
	margin-bottom: 8px;
	display: block;
}
.product-title {
	font-weight: 700;
	font-size: 1.15rem;
	margin-bottom: 10px;
	color: var(--text-dark);
	text-decoration: none;
	display: block;
	transition: color 0.2s;
}
.product-title:hover { color: var(--primary-color); }

.product-price {
	font-weight: 700;
	color: var(--primary-color);
	font-size: 1.25rem;
	margin-bottom: 15px;
}
.product-price small {
	font-size: 0.9rem;
	color: var(--text-muted);
	font-weight: 400;
	text-decoration: line-through;
	margin-left: 5px;
}

/* Sayfalama (Pagination) */
.pagination .page-link {
	border: none;
	color: var(--text-muted);
	margin: 0 5px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}
.pagination .page-item.active .page-link {
	background-color: var(--primary-color);
	color: white;
	box-shadow: 0 4px 10px rgba(5, 92, 157, 0.3);
}
.pagination .page-link:hover {
	background-color: #e2e8f0;
	color: var(--primary-color);
}

.blog-featured-img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: var(--border-radius-lg);
	margin-bottom: 30px;
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-meta {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.blog-meta i { color: var(--accent-color); margin-right: 5px; }

.blog-content p {
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
	color: #4b5563;
}
.blog-content h2 { margin-top: 2.5rem; margin-bottom: 1.5rem; font-size: 1.8rem; }
.blog-content blockquote {
	border-left: 4px solid var(--accent-color);
	background: #fff5f2; /* Accent renginin çok açığı */
	padding: 20px;
	font-style: italic;
	border-radius: 0 10px 10px 0;
	margin: 2rem 0;
	color: #555;
}

.blog-tags .badge {
	background-color: #eff6ff;
	color: var(--primary-color);
	font-weight: 500;
	padding: 8px 15px;
	font-size: 0.85rem;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.2s;
	margin-right: 5px;
	margin-bottom: 5px;
}

.blog-tags .badge:hover {
	background-color: var(--primary-color);
	color: white;
}

.author-box {
	background-color: #f8fafc;
	border-radius: 15px;
	padding: 25px;
	margin-top: 50px;
	display: flex;
	align-items: center;
	border: 1px solid #e2e8f0;
}
.author-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 20px;
	border: 3px solid white;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sidebar-widget {
	background: white;
	border-radius: var(--border-radius-lg);
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 20px -5px rgba(0,0,0,0.05);
}
.widget-title {
	font-weight: 700;
	font-size: 1.2rem;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f1f5f9;
	position: relative;
}
.widget-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: var(--accent-color);
}

.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { margin-bottom: 10px; }
.category-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--text-dark);
	text-decoration: none;
	padding: 10px 15px;
	border-radius: 10px;
	transition: all 0.2s;
	background-color: #fff;
	border: 1px solid #f1f5f9;
}
.category-list a:hover {
	background-color: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}
.category-list span {
	background-color: #f1f5f9;
	color: #64748b;
	font-size: 0.75rem;
	padding: 2px 8px;
	border-radius: 10px;
}
.category-list a:hover span { background-color: rgba(255,255,255,0.2); color: white; }

.recent-post-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	text-decoration: none;
}
.recent-post-item:last-child { margin-bottom: 0; }
.recent-post-img {
	width: 70px;
	height: 70px;
	border-radius: 10px;
	object-fit: cover;
	margin-right: 15px;
}
.recent-post-info h6 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 5px;
	line-height: 1.4;
	transition: color 0.2s;
}
.recent-post-item:hover h6 { color: var(--accent-color); }
.recent-post-info small { color: var(--text-muted); font-size: 0.8rem; }
.project-content h3 {
	color: var(--primary-color);
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 600;
}
.project-content p {
	line-height: 1.8;
	color: #4b5563;
	margin-bottom: 1.5rem;
}
.project-hero-img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: var(--border-radius-lg);
	margin-bottom: 30px;
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.project-gallery-img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 15px;
	transition: transform 0.3s ease;
	cursor: pointer;
}
.project-gallery-img:hover { transform: scale(1.03); }

.client-quote {
	background-color: #f0f7ff;
	border-radius: 15px;
	padding: 30px;
	position: relative;
	margin-top: 40px;
	border-left: 5px solid var(--primary-color);
}
.client-quote i {
	font-size: 2rem;
	color: var(--primary-color);
	opacity: 0.3;
	position: absolute;
	top: 20px;
	left: 20px;
}


.project-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.project-info-list li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dashed #e2e8f0;
	font-size: 0.95rem;
}
.project-info-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-label { font-weight: 600; color: var(--text-dark); }
.info-value { color: var(--text-muted); text-align: right; }

.tech-badge {
	display: inline-block;
	background-color: #fff;
	border: 1px solid #e2e8f0;
	color: var(--text-muted);
	padding: 6px 14px;
	border-radius: 8px;
	font-size: 0.85rem;
	margin-right: 5px;
	margin-bottom: 8px;
	font-weight: 500;
}

.blog-section { padding: 100px 0; background: var(--secondary); }
.blog-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border);
	transition: 0.3s;
	height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }

.blog-img-wrapper { position: relative; height: 240px; overflow: hidden; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .blog-img { transform: scale(1.1); }

.date-badge {
	position: absolute; top: 20px; right: 20px;
	background: white; padding: 8px 15px; border-radius: 12px;
	text-align: center; font-weight: 700; line-height: 1.1;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	color: var(--primary);
}
.date-month { font-size: 0.8rem; text-transform: uppercase; color: var(--accent); display: block; }

.blog-body { padding: 2rem; }
.read-more { color: var(--primary); font-weight: 700; text-decoration: none; font-size: 0.9rem; transition: 0.3s; cursor: pointer; }
.read-more:hover { color: var(--accent); letter-spacing: 1px; }

/* --- Blog Detail Styles (New) --- */
.blog-detail-hero {
	padding: 140px 0 80px 0;
	background: var(--surface);
	border-bottom: 1px solid var(--border);
}
.breadcrumb-item a { color: var(--accent); text-decoration: none; }
.breadcrumb-item.active { color: var(--primary); }

.blog-content { font-size: 1.1rem; line-height: 1.8; color: #475569; }
.blog-content h3 { color: var(--primary); font-weight: 800; margin-top: 2rem; margin-bottom: 1rem; }
.blog-content p { margin-bottom: 1.5rem; }
.blog-content blockquote {
	border-left: 4px solid var(--accent);
	padding-left: 20px;
	font-style: italic;
	color: var(--primary);
	font-weight: 600;
	margin: 2rem 0;
}
.drop-cap::first-letter {
	float: left; font-size: 3.5rem; line-height: 0.8; font-weight: 800;
	padding-right: 10px; padding-top: 5px; color: var(--accent);
}