/* Simple button style */
.simple-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #ffffff;
    color: rgb(71, 71, 71);
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    font-size: 1.08rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
    margin: 10px 0;
    width: 250px;
}
.simple-btn:hover, .simple-btn:focus {
    background: #e4dfff;
    color:#6b629d;
    transform: translateY(-1px) scale(1.01);
}
/* Default color for all h2 elements */
h2 {
    color: #6b629d;
}
h1 {
    color: #6b629d;
    font-size: 2rem;
    font-weight: 350;
    text-align: center;
}
/* Landing page custom styles */
.landing-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 40px 0 30px 0;
}
.landing-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(138, 92, 255, 0.10);
    width: 180px;
    height: 180px;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 18px 10px 10px 10px;
}
.landing-block:hover {
    box-shadow: 0 4px 16px rgba(138, 92, 255, 0.18);
    transform: translateY(-4px) scale(1.03);
}
.landing-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.landing-icon.music {
    background-image: url('../assets/logos/apple-music.svg');
}
.landing-icon.poetry {
    background-image: url('../assets/images/poesias/poesiabraco.png');
    background-size: 80%;
}
.landing-icon.projects {
    background-image: url('../assets/images/projetos/criatura/criatura.png');
    background-size: 80%;
}
.landing-label {
    font-size: 1.2rem;
    color: #6b629d;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.social-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 30px 0 10px 0;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 6px rgba(138, 92, 255, 0.10);
    transition: box-shadow 0.2s, transform 0.2s;
}
.social-link:hover {
    box-shadow: 0 4px 12px rgba(138, 92, 255, 0.18);
    transform: scale(1.08);
}
.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
@media (max-width: 700px) {
    .landing-sections {
        gap: 18px;
    }
    .landing-block {
        width: 120px;
        height: 120px;
        padding: 10px 4px 4px 4px;
    }
    .landing-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    .landing-label {
        font-size: 1rem;
    }
    .social-link {
        width: 36px;
        height: 36px;
    }
    .social-icon {
        width: 22px;
        height: 22px;
    }
}
body {
    font-family: sans-serif;
    font-weight: 350;
    margin: 0;
    background-color: #f7f1ff;
    overflow-x: hidden;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    cursor: pointer;
}

.topbar h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 350;
    color: #222;
}

.topbar h2 .brand-icon {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	vertical-align: middle;
}

.burger {
    display: flex;
    flex-direction: column;
    width: 28px;
    gap: 6px;
    margin-left: auto;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #a397eb;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
}

.menu ul {
    list-style: none;
    padding: 8px 12px;
    margin: 0;
}

.menu ul li a {
    display: block;
    padding: 10px 12px;
    color: #6b629d;
    text-decoration: none;
    border-radius: 4px;
}

.menu ul li a:hover {
    background-color: #f2e6ff;
}

.menu .subsection {
    display: none;
    padding-left: 16px;
}

hr.content-divider {
    border: none;
    height: 1px;
    background-color: #6b629d;
    opacity: 0.3;
    margin: 1.5em auto;
    width: 80%;
}

.menu .subsection.active {
    display: block;
}

.menu.open {
    display: block;
}

/* Content */
.content {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    box-sizing: border-box;
    width: 100%;
    margin: 50px auto 0 auto;
    justify-content: center;
}

.content-block {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(138, 92, 255, 0.147);
    text-align: center;
}

.content-block.title-block {
    padding: 10px;
    grid-column: 1 / -1;  /* Make it span all columns */
}

.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
    font-weight: inherit;
}

