/* ... (Existing styles remain) ... */

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a; /* Gris Carbón Profundo */
    color: #ffffff;
    line-height: 1.6;
}

/* Header Styles */
header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #1a1a1a;
}

.logo img {
    max-height: 60px;
}

.search-bar input {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: #ffffff;
}

.pancake-menu .menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
}

.pancake-menu .menu-items {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.pancake-menu .menu-items a {
    color: #79a37b; /* Verde Desaturado */
    text-decoration: none;
}

.social-icons a {
    color: #c44536; /* Terracota Suave */
    margin-left: 1rem;
    font-size: 1.5rem;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .pancake-menu .menu-toggle {
        display: block;
    }
    .pancake-menu .menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #1a1a1a;
        padding: 1rem;
    }
    .pancake-menu .menu-items.active {
        display: flex;
    }
}

/* Welcome Section */
.welcome {
    padding: 2rem;
    text-align: center;
    background-color: #1a1a1a;
}

.welcome h1 {
    font-family: 'Poppins', sans-serif;
    color: #c44536;
}

/* Pillars Grid */
.start-here {
    padding: 2rem;
    background-color: #1a1a1a;
}

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

.pillar {
    text-align: center;
}

.pillar-image img {
    max-width: 100%;
    height: auto;
    background-color: #2a2a2a;
}

.pillar h3 {
    color: #79a37b;
    margin: 0.5rem 0;
}

/* Blog and Downloads */
.blog-preview, .downloads {
    padding: 2rem;
    background-color: #1a1a1a;
}

.blog-post {
    margin-bottom: 1rem;
}

.blog-post a {
    color: #c44536;
    text-decoration: none;
}

.downloads ul {
    list-style: none;
}

.downloads a {
    color: #79a37b;
    text-decoration: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #1a1a1a;
    border-top: 1px solid #2a2a2a;
}

footer a {
    color: #c44536;
    text-decoration: none;
}

/* Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/paper-texture.png') repeat;
    opacity: 0.1;
    z-index: -1;
}

/* Coming Soon Section */
.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px); /* Adjust based on header/footer height */
    background-color: #1a1a1a; /* Gris Carbón Profundo */
    padding: 2rem;
}

.coming-soon-content {
    text-align: center;
}

.logo-placeholder img {
    max-height: 250px;
    margin-bottom: 2rem;
    background-color: #2a2a2a; /* Subtle background for placeholder */
}

.coming-soon h1 {
    font-family: 'Poppins', sans-serif;
    color: #c44536; /* Terracota Suave */
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ethereal-text {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.ethereal-effect {
    position: relative;
    height: 100px;
    width: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 50 Q 50 10 90 50 Q 50 90 10 50" fill="none" stroke="%23ffffff33" stroke-width="0.5" opacity="0.3"/></svg>') repeat;
    background-size: 200px 200px;
    filter: blur(2px);
    animation: etherealGlow 5s infinite alternate;
}

@keyframes etherealGlow {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 0.7;
    }
}

/* Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/paper-texture.png') repeat;
    opacity: 0.1;
    z-index: -1;
}

/* ... (Existing styles remain) ... */
