/*
Theme Name: PlainClean
Author: You
Version: 1.0
Description: Clean minimal theme with structured layout.
*/

/* Reset body */
body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: sans-serif;
}

/* Top cream bar */
.top-cream {
    width: 100%;
    height: 10vh;
    background: #F7EDE2;
    display: flex;
    align-items: center;
}

/* ⭐ Header inner container for logo + buttons */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Logo text (replace with image later) */
.header-logo span {
    font-size: 1.4rem;
    font-weight: bold;
    color: #000;
}

/* Buttons container */
.header-buttons {
    display: flex;
    gap: 12px;
}

/* Buttons style */
.header-btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    color: #ffffff;
    background: #84A59D;
    transition: 0.2s ease-in-out;
}

.header-btn:hover {
    background: #6e8780;
}

/* Register button highlight */
.register-btn {
    background: #F28482;
}

.register-btn:hover {
    background: #d96f6d;
}

/* Pink menu bar (below cream header) */
.pink-menu-bar {
    width: 100%;
    height: 6vh;
    background: #2A9D8F;
}

/* Footer pink/blue bar */
.footer-pink {
    width: 100%;
    height: 18vh;
    background: #264653;
    margin-top: 40px; 
    position: relative;   /* no more fixed */
    bottom: auto;
    left: auto;
    z-index: 1;
}


/* Footer columns layout */
.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    margin: 0 auto;
    height: 100%;
    padding-top: 20px;
    box-sizing: border-box;
}

/* Footer column */
.footer-col {
    width: 22%;
    color: #000;
}

/* Plugin/content card */
.content-card {
    width: 80%;
    background: #E9C46A;
    padding: 20px;
    min-height: 40vh;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 20px auto;
}
