body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;
    color: #222;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 2px solid #eee;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 700;
    font-size: 1.8rem;
}

/* Paragraph Font Size 140% */
p {
    font-size: 140%;
    margin-bottom: 20px;
}

/* Main Title 450% */
.main-title {
    font-size: 450%;
    text-align: center;
    padding: 60px 20px;
    margin: 0;
}

/* Other Headings 300% */
h2 {
    font-size: 300%;
    margin-top: 0;
}

/* Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column for high readability, can change to repeat(auto-fit, minmax(400px, 1fr)) for side-by-side */
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blog-post {
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.blog-post img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 5px;
}

/* Collapsible Menu */
.menu {
    display: none;
    list-style: none;
    position: absolute;
    right: 5%;
    top: 60px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
}

#menu-toggle { display: none; }
.menu-icon { font-size: 2rem; cursor: pointer; }
#menu-toggle:checked ~ .menu { display: block; }

footer {
    text-align: center;
    padding: 50px;
    font-size: 110%;
    border-top: 1px solid #eee;
}
/* --- Navigation Styling --- */
nav {
    position: relative;
}

/* The actual list of links */
.menu {
    display: none; /* Hidden until toggled */
    list-style: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: #ffffff;
    border: 1px solid #000;
    width: 250px;
    padding: 0;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.menu li {
    border-bottom: 1px solid #eee;
}

.menu li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-size: 120%;
    transition: background 0.3s;
}

.menu li a:hover {
    background: #f4f4f4;
}

/* The Toggle Icon (Hamburger) */
.menu-icon {
    font-size: 2.5rem;
    cursor: pointer;
    user-select: none;
}

/* Logic to show the menu when the hidden checkbox is clicked */
#menu-toggle:checked ~ .menu {
    display: block;
}

/* --- Undercover Shopping Link Styling --- */
.undercover-link {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    background-color: #000; /* Professional black */
    color: #fff !important; /* White text */
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.2s;
}

.undercover-link:hover {
    background-color: #333;
    transform: scale(1.05);
}
/* Styling for the Undercover Shopping Link */
.undercover-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: #000000; /* Obsidian Black */
    color: #ffffff !important; /* White text */
    text-decoration: none;
    font-weight: bold;
    font-size: 100%; /* Inherits from the 140% p tag */
    border: 2px solid #000000;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 2px; /* Slight round for a polished look */
}

/* Hover Effect: Inverts the colors */
.undercover-cta:hover {
    background-color: #ffffff;
    color: #000000 !important;
    transform: translateY(-2px); /* Lifts slightly */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Ensuring it looks good on mobile */
@media (max-width: 600px) {
    .undercover-cta {
        display: block;
        text-align: center;
    }
}