/* ================================================
   HOME.CSS - Estilos da Página Inicial
   GOUMA ART - gouma.art
   Encoding: UTF-8
   ================================================ */

/* ================================================
   LOGO CONTAINER
   ================================================ */

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    pointer-events: none;
    position: relative;
    z-index: 3;
}

.site-logo {
    margin: 0;
    line-height: 1;
}

.logo-link {
    cursor: default;
    text-decoration: none;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: all;
    position: relative;
}

/* Logo em duas linhas com alinhamento */
.logo-line {
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    display: block;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.logo-gouma {
    font-size: clamp(5rem, 12vw, 10rem);
}

.logo-art {
    font-size: clamp(5rem, 12vw, 10rem);
    margin-top: -0.1em;
    padding-left: 2.98em;
}

/* Hover simples no logo - apenas muda cor */
.logo-link:hover .logo-line {
    color: #fff;
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #040404;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Vídeo de Fundo */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    opacity: 80%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7) contrast(1.2);
}

/* Overlay para escurecer o vídeo */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 4, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

/* Conteúdo Principal */
.main-content {
    padding: 80px 20px 40px;
    min-height: 100vh;
    background: #040404;
    position: relative;
    z-index: 5;
}

/* ================================================
   SEÇÃO SOBRE GILBERTO GOUMA (HOME)
   ================================================ */

.about-section {
    padding: 100px 0;
    width: 100%;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: none;
    padding: 0 80px;
    margin: 100px 0;
}

.about-image {
    flex: 0 0 400px;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
    max-width: 700px;
}

.about-title {
    font-family: "futura-pt", sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #f0f0f0;
    text-align: justify;
    opacity: 0.9;
}

.about-text em {
    font-style: italic;
}
