:root {
    --primary: #b02626; /* Traditional Red */
    --secondary: #d4af37; /* Gold */
    --bg-light: #ffffff;
    --bg-accent: #fff9f0; /* Warm Cream */
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --border-soft: rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

/* Header & Big Logo Fix */
header {
    background: white;
    padding: 4rem 5% 2rem;
    text-align: center;
    position: relative;
}

.logo-container {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.logo-container img {
    height: 180px; /* Even bigger */
    width: auto;
    object-fit: contain; /* Ensure it fits without bad cropping */
    margin-bottom: 1.5rem;
    /* Removed circular radius to fix 'bad black portion' */
    border-radius: 8px; 
    transition: transform 0.3s ease;
}

.brand-name {
    font-size: 3.5rem;
    color: var(--primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary), transparent);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-soft);
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Creative Blog Grid */
.container {
    max-width: 1300px;
    margin: 4rem auto 6rem;
    padding: 0 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
}

/* Professional & Creative Card Styles */
.blog-card {
    grid-column: span 4;
    background: white;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

/* Asymmetrical layout - Every 3rd card is bigger */
.blog-card:nth-child(3n+1) {
    grid-column: span 8;
}

.blog-card:nth-child(3n+1) .card-img {
    height: 450px;
}

.blog-card:nth-child(3n+2), .blog-card:nth-child(3n+3) {
    grid-column: span 4;
}

.card-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 2.5rem 1rem 1rem;
    background: white;
    margin-top: -2rem; /* Floating content effect */
    position: relative;
    z-index: 10;
    width: 90%;
    margin-left: 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-date {
    font-size: 0.7rem;
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-title {
    font-size: 1.8rem;
    margin: 0.8rem 0;
    line-height: 1.2;
    color: var(--text-dark);
}

.blog-card:nth-child(3n+1) .card-title {
    font-size: 2.5rem;
}

.card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-story-btn {
    display: inline-block;
    padding: 0.8rem 0;
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.read-story-btn:hover {
    padding-right: 1rem;
    letter-spacing: 2px;
}

/* Blog Detail Page - "Great" Experience */
.blog-header {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.blog-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10rem 5% 5rem;
    background: linear-gradient(to top, rgba(255,255,255,1) 10%, transparent);
    text-align: center;
}

.blog-title-main {
    font-size: 4rem;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
}

.detail-container {
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 0 20px;
}

.detail-body {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.detail-body p {
    margin-bottom: 2rem;
}

.detail-body blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--primary);
    border-left: 5px solid var(--secondary);
    padding-left: 2rem;
    margin: 3rem 0;
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 6rem 5% 3rem;
    text-align: center;
}

.footer-logo {
    height: 160px;
    margin-bottom: 2rem;
   
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-card, .blog-card:nth-child(3n+1) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .blog-card, .blog-card:nth-child(3n+1) {
        grid-column: span 12;
    }
    .brand-name { font-size: 2.5rem; }
}
