/*
Theme Name: pine
Theme URI: https://pine.pt/
Author: pine
Author URI: https://pine.pt/
Description: pine
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pine
*/


/* General Reset */
body {
    overflow-x: hidden;
    font-family: 'Work Sans', sans-serif;
    color: #000000;
    font-weight: 300;
}

a {
    text-decoration: underline;
    color: #000;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}
p{
    font-weight: 300 !important;
}
.hina-mincho {
    font-family: 'Hina Mincho', serif;
}

.home-fullscreen-image {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.home-first-sec-text {
    position: absolute;
    left: 80px;
    bottom: 12vh;
    color: #fff;
    z-index: 2;
}
.banner-title {
    font-size: 78px;
    text-transform: uppercase;
    font-family: 'Hina Mincho', serif;
    max-width: 500px;
}

.header-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
}
.logo a {
    color: #fff;
    font-family: 'Hina Mincho', serif;
    font-size: 36px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
}
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
}
.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
.menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.98);
    z-index: 2000;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.menu-overlay-content {
    width: 100%;
    text-align: center;
}

/* Desktop: menu-header não afeta o layout */
.menu-header {
    position: relative;
}

.menu-header .menu-logo a {
    color: #fff;
    font-family: 'Hina Mincho', serif;
    font-size: 36px;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    top: 30px; 
    letter-spacing: 2px;
    left: 80px;
}

.menu-header .close-menu {
    position: absolute;
    top: 30px; 
    right: 90px;
    line-height: 55px;
    background: none;
    border: none;
    color: #fff;
    font-size: 55px;
    cursor: pointer;
}

.main-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 120px;
}
.main-menu-list li {
    margin: 30px 0;
}
.main-menu-list a {
    color: #fff;
    font-family: 'Hina Mincho', serif;
    font-size: 48px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.2s;
    position: relative;
}
.main-menu-list a:hover {
    color: #ccc;
    text-decoration: underline;
}

.main-menu-list a:hover::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background-image: url('assets/img/dot.png');
    background-size: cover;
    left: -40px;
    top: 50%; 
    transform: translateY(-50%);
}

.home-second-sec {
    background: #FFF;
    padding: 40px 80px;
    text-align: center;
}

.home-second-sec-text {
    
    font-size: 40px;
    font-weight: 300;
    color: #000;
}

.home-second-sec-btn {
    background: none;
    border: 1px solid #000;
    color: #000;
    border-radius: 30px;
    padding: 10px 32px;
    font-size: 20px;
    
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    font-weight: 300;
}
.home-second-sec-btn:hover {
    background: #000;
    color: #fff;
}

.home-third-sec {
    background: #FFF;
    padding: 40px 80px;
    text-align: center;
}

.home-third-sec-albums {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.home-third-sec-album-subtitle {
    font-size: 20px;
    
    font-weight: 300;
    color: #000;
}
.home-third-sec-album-title {   
    font-size: 64px;
    font-family: 'Hina Mincho', serif;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
}

.home-third-sec-album-text p {
    font-size: 20px;
    
    font-weight: 300;
    color: #000;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 50px;    
    max-width: 600px;
}

.home-fourth-sec {
    padding-top: 130px;
    padding-bottom: 100px;
    text-align: center;
}

.home-fourth-sec-title {
    font-size: 24px;
    
    font-weight: 300;
    color: #000;
}

.home-fourth-sec-instagram {
    font-size: 40px;
    
    font-weight: 300;
    color: #000;
    text-decoration: none;
    margin: 20px 0 50px 0;
    text-decoration: underline;
}

.title-about {
    height: 100vh;
    position: relative;
}

.title-about .banner-title {
    position: absolute;
    bottom: 80px;
    color: #fff;
    left: 80px;
}

.custom-footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px 0;
    width: 100%;
    box-sizing: border-box;
}
.footer-content {
    padding-left: 80px;
    padding-right: 80px;
    margin-bottom: 60px;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 32px;
}
.footer-btn {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 10px 32px;
    font-size: 18px;
    
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.footer-btn:hover {
    background: #fff;
    color: #000;
}
.footer-link {
    color: #fff;
    
    font-size: 18px;
    text-decoration: none;
    margin-right: 32px;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #cccccc;
}

.spotify-icon {
    margin-top: 42px;
}

.footer-bottom {
    text-align: center;
    font-size: 16px;
    
    color: #fff;
}
.footer-dev {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-dev:hover {
    color: #cccccc;
}

.footer-link {
    font-size: 18px;
    text-decoration: none;
    margin-right: 16px;
    transition: color 0.2s;
    color: #fff;
}

.footer-link:hover {
    color: #cccccc;
}


@media (max-width: 600px) {
    .header-bar { padding: 18px 16px; }
    .menu-logo a, .close-menu { top: 18px; left: 16px; right: 16px; font-size: 1.1rem; }
    .main-menu-list a { font-size: 1.3rem; }
    .banner-title { font-size: 2rem; }
    .banner-subtitle { font-size: 1rem; }
    .home-first-sec-text { left: 5vw; bottom: 8vh; }
    .footer-content { flex-direction: column; align-items: flex-start; gap: 24px; padding-left: 24px; }
    .footer-bottom { text-align: left; padding-right: 24px; }
    .footer-spotify { margin-left: 0; }
}

.about-content-overlay {
    width: 100vw;
    padding: 80px;
    color: #fff;
    font-size: 20px;
    z-index: 3;
    box-sizing: border-box;
}
.about-content-overlay h3 {
    
    font-weight: 300;
    font-size: 40px;
    color: #fff;
    margin-bottom: 32px;
}
.about-content-text p {
    
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}
@media (max-width: 900px) {
    .about-content-overlay {
        padding: 24px;
        font-size: 16px;
    }
    .about-content-overlay h3 {
        font-size: 28px;
    }
}

.concerts-content-overlay {
   
    width: 100%;
    max-width: 860px;
    min-height: 100vh;
    padding: 80px 80px 40px 80px;
    color: #fff;
    z-index: 3;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.concerts-tabs {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 30px;
}
.concerts-tab {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 10px 38px;
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
}
.concerts-tab.active, .concerts-tab:hover {
    background: #fff;
    color: #000;
}
.concerts-list {
    width: 100%;
}
.concerts-month {
    margin-bottom: 48px;
}
.concerts-month h2 {
    
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 32px;
    color: #fff;
    letter-spacing: 1px;
}
.concert-item {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    gap: 40px;
}
.concert-date {
    display: flex;
    align-items: center;
    min-width: 90px;
    gap: 16px;
}
.concert-dot {
    width: 16px;
    height: 16px;
    background: #baff1a;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 8px #baff1a;
}
.concert-day {
    
    font-size: 22px;
    color: #FFF;
    text-align: center;
    font-weight: 300;
    line-height: 1.1;
}
.concert-day span {
    display: block;
    font-size: 38px;
    font-weight: 300;
    color: #fff;
    
    font-weight: 300;
}
.concert-info {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    max-width: 420px;
    gap: 2px;
}
.concert-city {
    
    font-size: 32px;
    color: #fff;
    font-weight: 300;
    line-height: 1.1;
}
.concert-location {
    
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 2px;
}
.concert-hour {
    
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}
.concert-action {
    margin-left: auto;
}
.concert-btn {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 10px 38px;
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
    text-decoration: none;
    display: inline-block;
}
.concert-btn:hover {
    background: #fff;
    color: #000;
}

.contact-content {
    
    font-size: 40px;
    font-weight: 300;
    color: #000;
    margin-bottom: 40px;
    max-width: 630px;
    text-align: left;
}  

.contact-content a {
    color: #000;
}  

.contact-form .input-form-block p label {
    font-size: 20px;
    font-weight: 300;
    color: #000;
    margin-bottom: 10px;
    display: block;
    text-align: left;
    min-width: 312px;
}

.contact-form .input-form-block .wpcf7-list-item  {
   margin-left: 0;
}

.contact-form .input-form-block .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: unset;
}

.contact-form .input-form-block .wpcf7-list-item input[type="checkbox"] {
    width: 20px;
    margin-bottom: 0;
}

.contact-form .input-form-block p {
    display: flex;
    align-items: center;
    
}

.contact-form .input-form-block p input, .contact-form .input-form-block p textarea {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 26px;
    font-size: 20px;
    font-weight: 300;
    color: #000;
    margin-bottom: 10px;
}

.contact-form .input-form-block p span {
    width: 100%;
    max-width: 692px;
}

.contact-form .wpcf7-submit {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 30px;
    padding: 10px 38px;
    font-size: 20px;
    font-weight: 300;
    
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
    text-decoration: none;
    max-width: 145px;
}

.contact-form .wpcf7-submit:hover {
    background: #000;
    color: #fff;
}

.shop-container {
    max-width: 1000px;
    padding: 50px 80px 250px 80px;
}

.shop-container p {
    font-size: 20px;
}

.shop-container h2 {
    font-size: 40px;
    font-weight: 300;
}

.btn-invert {
    background: #000;
    color: #fff;
}

.btn-invert:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 900px) {
    .about-content-overlay {
        padding: 24px;
        font-size: 16px;
    }
    .about-content-overlay h3 {
        font-size: 28px;
    }
    .concerts-content-overlay {
        padding: 24px 8px 24px 8px;
    }
    .concerts-month h2 { font-size: 24px; }
    .concert-city { font-size: 20px; }
    .concert-day span { font-size: 24px; }
    .concert-btn, .concerts-tab { font-size: 16px; padding: 8px 18px; }
    .concert-item { gap: 12px; }
    .concert-info { min-width: 120px; max-width: 100%; }
}

/* Estilos para o conteúdo expandível */
.content-wrapper {
    transition: all 0.3s ease;
}

.content-preview, .content-full {
    transition: opacity 0.3s ease;
}

.content-preview {
    font-size: 40px;
}

.content-full {
    font-size: 40px;
}

.content-full p:first-child {
    font-size: 40px;
}

.toggle-content-btn {
    margin-top: 20px;
}

.footer-content-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* ===== VERSÃO MOBILE ===== */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-bar {
        padding: 20px 20px;
        position: relative;
    }
    
    .logo a {
        font-size: 24px;
        letter-spacing: 1px;
        position: absolute;
        top: 20px;
        left: 20px;
    }
    
    .menu-toggle {
        gap: 4px;
        position: absolute;
        top: 30px;
        right: 20px;
    }
    
    .menu-toggle span {
        width: 25px;
        height: 2px;
    }
    
    /* Menu Overlay Mobile */
    .menu-overlay {
        padding: 20px;
        
    }
    
    .menu-overlay-content {
        position: relative;
    }
    
    /* Container flex para logo e botão fechar */
    .menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
        position: static;
    }
    
    .menu-header .menu-logo a {
        font-size: 24px;
        letter-spacing: 1px;
        position: static;
        width: auto;
        top: auto;
        left: auto;
    }
    
    .menu-header .close-menu {
        font-size: 40px;
        line-height: 40px;
        position: static;
        width: auto;
        top: auto;
        right: auto;
    }
    
    .main-menu-list {
        margin-top: 80px;
    }
    
    .main-menu-list li {
        margin: 20px 0;
    }
    
    .main-menu-list a {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    /* Banner Mobile */
    .banner-title {
        font-size: 36px;
        max-width: 300px;
        line-height: 1.2;
    }

    .home-first-sec, .about-fullwidth-image, .about-fullwidth-image, .home-fullscreen-image {
        margin-top: -80px;
    }
    
    .home-first-sec-text {
        left: 20px;
        bottom: 10vh;
    }
    
    /* Seções Mobile */
    .home-second-sec {
        padding: 10px;
    }
    
    .home-second-sec-text {
        font-size: 24px;
    }
    
    .home-second-sec-btn {
        font-size: 16px;
        padding: 8px 24px;
    }
    
    .home-third-sec {
        padding: 30px 20px;
    }
    
    .home-third-sec-album-subtitle {
        font-size: 16px;
    }
    
    .home-third-sec-album-title {
        font-size: 32px;
    }
    
    .home-third-sec-album-text p {
        font-size: 16px;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    
    .home-fourth-sec {
        padding: 60px 20px;
    }
    
    .home-fourth-sec-title {
        font-size: 18px;
    }
    
    .home-fourth-sec-instagram {
        font-size: 24px;
        margin: 15px 0 30px 0;
    }
    
    /* About Page Mobile */
    .about-fullwidth-image {
        min-height: 100vh;
    }
    
    .about-fullwidth-image .about-img {
        height: 100vh;
    }
    
    .about-content-overlay {
        padding: 20px;
        font-size: 16px;
    }

    .home-third-sec-album-img {
        width: 100%;
    }
    
    .about-content-overlay h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-content-text p {
        font-size: 16px;
    }
    
    /* Concerts Page Mobile */
    .concerts-content-overlay {
        padding: 20px 10px;
        max-width: 100%;
    }
    
    .concerts-tabs {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .concerts-tab {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .concerts-month h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .concert-item {
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .concert-date {
        min-width: auto;
        gap: 10px;
    }
    
    .concert-day {
        font-size: 18px;
    }
    
    .concert-day span {
        font-size: 24px;
    }
    
    .concert-info {
        min-width: auto;
        max-width: 100%;
    }
    
    .concert-city {
        font-size: 20px;
    }
    
    .concert-location {
        font-size: 14px;
    }
    
    .concert-hour {
        font-size: 14px;
    }
    
    .concert-action {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .concert-btn {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    /* Contact Page Mobile */
    .contact-content {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0px;
    }

    .contact-form .input-form-block p {
        display: block;
    }
    
    .contact-form .input-form-block p label {
        font-size: 16px;
        min-width: 90px;
        margin-bottom: -10px;
    }
    
    .contact-form .input-form-block p input,
    .contact-form .input-form-block p textarea {
        font-size: 16px;
        padding: 8px;
    }
    
    .contact-form .wpcf7-submit {
        font-size: 16px;
        padding: 8px 24px;
        max-width: 120px;
    }
    
    /* Shop Page Mobile */
    .shop-container {
        padding: 30px 20px 150px 20px;
    }
    
    .shop-container p {
        font-size: 16px;
    }
    
    .shop-container h2 {
        font-size: 24px;
    }
    
    /* Footer Mobile */
    .custom-footer {
        padding: 40px 0 15px 0;
    }
    
    .footer-content {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 40px;
    }

    .footer-content-left {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .title-about .banner-title {
        left: 20px;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-btn {
        font-size: 16px;
        padding: 8px 24px;
    }
    
    .footer-link {
        font-size: 16px;
        margin-right: 20px;
    }
    
    .footer-bottom {
        font-size: 14px;
        padding: 0 20px;
    }
    
    /* Content Expandible Mobile */
    .content-preview {
        font-size: 16px;
    }
    
    .content-full {
        font-size: 16px;
    }
    
    .content-full p:first-child {
        font-size: 16px;
    }
    
    .toggle-content-btn {
        margin-top: 15px;
        font-size: 16px;
        padding: 8px 24px;
    }
    
    /* General Mobile Adjustments */
    body {
        font-size: 16px;
    }
    
    a {
        font-size: 16px;
    }
    
    p {
        font-size: 16px;
    }
    
    /* Hide desktop elements on mobile */
    .hide-mobile {
        display: none !important;
    }
    
    /* Show mobile elements */
    .show-mobile {
        display: block !important;
    }
}