/* --- RESET & VARIABLES --- */
:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --accent-color: #000000; /* Replaced palevioletred with Black */
    --font-display: 'Bodoni Moda', serif; /* The "Kate" font */
    --font-body: 'Lato', sans-serif; /* Clean readable text */
    --font-serif-text: 'Playfair Display', serif; /* The editorial body text */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- MAGAZINE HEADER STRIP --- */
.magazine-header {
    width: 100%;
    border-bottom: 2px solid #000;
    border-top: 2px solid #000;
    padding: 10px 40px;
    margin-top: 40px;
}

.header-line {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

/* --- NAVIGATION --- */
.navbar {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    text-align: center;
}

.navbar ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.navbar ul li a {
    text-decoration: none;
    color: #666;
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.navbar ul li a:hover, 
.navbar ul li a.active {
    color: #000;
    border-bottom: 1px solid #000;
}

/* --- MAIN CONTAINER --- */
.main-container {
    max-width: 1100px; /* Editorial standard width */
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

/* --- HERO SECTION (Big "Fleur") --- */

.hero-text {
    text-align: center;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: -10px;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 8rem; /* Massive size like "Kate" */
    line-height: 1;
    font-weight: 400;
    letter-spacing: -5px;
    margin: 0;
}

/* Mobile responsive for the big name */
@media (max-width: 768px) {
    .hero-text h1 { font-size: 6rem; }
    .hero-text h2 { font-size: 1.5rem; }
}

/* --- EDITORIAL GRID LAYOUT --- */
.editorial-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Two main columns */
    gap: 40px;
    align-items: start;
}

/* Column Text Styling */
/* Updated Lead-in Styling */
.lead-in {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 20px; /* Increased space to separate it from the columns below */
    text-align: center; /* Center align looks best under the big "Fleur" */
    max-width: 800px; /* Keeps the line length readable */
    margin-left: auto;
    margin-right: auto;
}

.sub-head {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 5px;
}

.author-line {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 25px;
    font-weight: 700;
}

.article-body {
    font-family: var(--font-serif-text);
    font-size: 1rem;
    text-align: justify;
    columns: 2; /* Split text into two columns like the magazine */
    column-gap: 25px;
    line-height: 1.8;
}

.article-body p {
    text-align: justify;
    text-justify: inter-word;
}

/* The "H" Drop Cap */
.drop-cap {
    float: left;
    font-family: var(--font-display);
    font-size: 5.5rem;
    line-height: 0.8;
    padding-right: 10px;
    padding-top: 4px;
    font-weight: 700;
}

/* Images */
.col-image-main img, 
.col-image-secondary img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.2); /* Black and White effect */
    transition: filter 0.5s ease;
}

.col-image-main img:hover,
.col-image-secondary img:hover {
    filter: grayscale(0%) contrast(1); /* Color on hover */
}

.caption {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #000;
    padding-top: 5px;
    font-family: var(--font-body);
}

/* Grid adjustment for the bottom section */
.col-image-secondary {
    margin-top: 40px;
    grid-column: 1 / 2; /* Left side */
}

.col-text-secondary {
    margin-top: 0;
    grid-column: 2 / 3; /* Right side */
    font-family: var(--font-serif-text);
    font-size: 0.95rem;
    text-align: justify;
    line-height: 1.8;
}


.col-text-main .sub-head:first-child,
.highlight-box .sub-head:first-child {
    margin-top: 0;
}

/* --- BUTTONS --- */
.btn-text {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding-bottom: 2px;
}

.btn-text:hover {
    color: #555;
    border-color: #555;
}

/* --- FOOTER SEAL --- */
.footer-seal {
    border-top: 2px solid #000;
    margin-top: 60px;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.seal-box {
    width: 200px;
    text-align: center;
}

.seal-box img {
    width: 100%;
    filter: grayscale(100%);
    margin-bottom: 10px;
}

.seal-box span {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.seal-box p {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.3;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 900px) {
    .editorial-grid {
        grid-template-columns: 1fr; /* Stack everything */
    }
    
    .article-body {
        columns: 1; /* Remove text columns on small screens */
    }

    .col-text-secondary {
        grid-column: 1;
    }

    .col-image-secondary {
        display: none; /* Hide secondary image on mobile to save space */
    }
    
    .footer-seal {
        justify-content: center;
    }
}


/* --- 3-COLUMN GRID (Used for About, Lifestyle, The Edit) --- */
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.grid-article {
    text-align: justify;
}

.grid-article img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.grid-article img:hover {
    filter: grayscale(0%);
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.grid-article h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.grid-article p {
    font-family: var(--font-serif-text);
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
}

.category-tag {
    display: block;
    font-size: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.meta-data {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
    font-family: var(--font-body);
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* --- CONTACT FORM STYLING --- */
.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.editorial-form .input-group {
    margin-bottom: 30px;
}

.editorial-form label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.editorial-form input[type="text"],
.editorial-form input[type="email"],
.editorial-form select,
.editorial-form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #000;
    background: transparent;
    padding: 10px 0;
    font-family: var(--font-serif-text);
    font-size: 1rem;
    outline: none;
    resize: none;
}

.editorial-form textarea {
    height: 100px;
    border: 2px solid #000; /* Box for message */
    padding: 10px;
    margin-top: 5px;
}

.editorial-form input:focus,
.editorial-form textarea:focus {
    border-bottom-color: #555;
}

.submit-container {
    text-align: center;
    margin-top: 40px;
}

.editorial-form input[type="submit"] {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.editorial-form input[type="submit"]:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.disclaimer-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-style: italic;
    color: #666;
    border: 1px solid #ddd;
    padding: 20px;
}

/* --- RESPONSIVE ADJUSTMENTS FOR INNER PAGES --- */
@media (max-width: 900px) {
    .three-col-grid {
        grid-template-columns: 1fr; /* Stack into 1 column */
    }
}


.status-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-family: var(--font-body); /* or use var(--font-display) for serif */
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: 100%;
    position: relative;
    z-index: 100;
}











