/*
Theme Name: OceanWP Child - Verve Style
Theme URI: https://excomconsultores.com
Description: OceanWP child theme con diseño inspirado en Verve - menú lateral izquierdo, teal #0AB6D1, Droid Serif
Author: Excom Consultores
Author URI: https://excomconsultores.com
Template: oceanwp
Version: 1.0.0
Text Domain: oceanwp-child-verve
*/

/* ===== TIPOGRAFÍA ===== */
body,
h1, h2, h3, h4, h5, h6,
.site-title,
.page-header-title {
    font-family: 'Droid Serif', Georgia, 'Times New Roman', serif !important;
}

/* ===== COLOR ACENTO ===== */
a,
a:hover,
a:focus,
.sidebar-box .widget-title,
.page-header .page-header-title,
.blog-entry-title a:hover,
.related-post-title a:hover {
    color: #0AB6D1 !important;
}

/* ===== BOTONES ===== */
.theme-button,
input[type="submit"],
button,
.button,
.site-button,
#site-navigation-wrap .dropdown-menu > li.btn > a > span {
    background-color: #0AB6D1 !important;
    border-color: #0AB6D1 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 12px !important;
    padding: 14px 34px !important;
    transition: all 0.3s ease !important;
}

.theme-button:hover,
input[type="submit"]:hover,
button:hover,
.button:hover,
.site-button:hover {
    background-color: #0899b0 !important;
    border-color: #0899b0 !important;
    opacity: 1 !important;
}

/* ===== MENÚ LATERAL VERTICAL (ESTILO VERVE) ===== */
#site-header.vertical-header {
    background-color: #0a0a0a !important;
    width: 260px !important;
}

#site-header.vertical-header #site-navigation-wrap {
    border: none !important;
}

#site-header.vertical-header ul {
    border: none !important;
}

#site-header.vertical-header ul > li {
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

#site-header.vertical-header ul > li > a {
    color: #ffffff !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    padding: 15px 25px !important;
    opacity: 0.7;
    transition: all 0.3s ease !important;
}

#site-header.vertical-header ul > li > a:hover {
    opacity: 1;
    color: #0AB6D1 !important;
    padding-left: 30px !important;
}

/* Current menu item */
#site-header.vertical-header ul > li.current-menu-item > a,
#site-header.vertical-header ul > li.current-menu-parent > a {
    color: #0AB6D1 !important;
    opacity: 1;
}

/* Logo en el menú vertical */
.vertical-header .logo-container {
    padding: 40px 25px 20px !important;
    text-align: center;
}

.vertical-header .logo-container .site-logo img {
    max-width: 120px !important;
}

/* ===== CONTENEDOR PRINCIPAL CON MARGEN PARA MENÚ VERTICAL ===== */
.has-vertical-header #outer-wrap {
    margin-left: 260px !important;
    width: calc(100% - 260px);
}

/* ===== SECCIÓN HERO ===== */
.verve-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f5f5f5;
    padding: 80px 40px;
}

.verve-hero h1 {
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.2;
}

.verve-hero .subtitle {
    font-size: 16px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 30px;
}

.verve-hero .accent-line {
    width: 60px;
    height: 2px;
    background-color: #0AB6D1;
    margin: 20px auto;
}

.verve-hero .description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECCIÓN RECENT WORK ===== */
.verve-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.verve-section-title h2 {
    font-size: 24px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 400;
    color: #111;
    margin-bottom: 10px;
}

.verve-section-title .accent-line {
    width: 40px;
    height: 2px;
    background-color: #0AB6D1;
    margin: 15px auto;
}

.verve-section-title p {
    color: #888;
    font-size: 13px;
    letter-spacing: 2px;
}

/* ===== PORTFOLIO GRID ===== */
.verve-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: #eee;
}

.verve-portfolio-item {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.verve-portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.verve-portfolio-item:hover img {
    transform: scale(1.05);
}

.verve-portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.verve-portfolio-item:hover .overlay {
    opacity: 1;
}

.verve-portfolio-item .overlay h3 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.verve-portfolio-item .overlay span {
    color: #0AB6D1;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== FOOTER ===== */
#footer-widgets {
    background-color: #0a0a0a !important;
    padding: 30px 0 !important;
}

#footer-widgets p,
#footer-widgets li {
    color: #999 !important;
    font-size: 12px !important;
}

#footer-bottom {
    background-color: #050505 !important;
}

#footer-bottom a {
    color: #0AB6D1 !important;
}

/* ===== RESPONSIVE ===== */
@media only screen and (max-width: 959px) {
    .has-vertical-header #outer-wrap {
        margin-left: 0 !important;
        width: 100%;
    }
    
    .verve-hero h1 {
        font-size: 40px;
        letter-spacing: 4px;
    }
    
    .verve-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .verve-hero h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .verve-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

