/*
--------------------------------------------------------------
 Sandbeds - Custom Styles (BuddyBoss Child Theme)
--------------------------------------------------------------
*/

/* ======================
   Tipografía global
   ====================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif !important;
    font-weight: 300;
    background-color: #F8F2E7 !important; /* Arena suave */
    color: #333 !important;
    line-height: 1.6;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600;
    color: #1A8C8C !important; /* Turquesa profundo */
    margin-bottom: 15px;
}

/* ======================
   Enlaces & Botones
   ====================== */
a {
    color: #1A8C8C;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #C8A96D; /* Dorado mate */
}

/* Botones principales */
button,
.btn,
.wp-block-button__link,
input[type="submit"],
input[type="button"] {
    background-color: #FF6F61 !important; /* Coral */
    color: #fff !important;
    border: none !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

button:hover,
.btn:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #C8A96D !important; /* Dorado mate */
    color: #fff !important;
}

/* ======================
   Cabecera & Menú
   ====================== */
.site-header {
    background-color: #F8F2E7 !important;
    border-bottom: 1px solid #eee;
}

.main-navigation > ul > li > a {
    font-family: 'Lato', sans-serif !important;
    font-weight: 500;
    color: #222 !important;
    padding: 12px 18px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.main-navigation > ul > li > a:hover,
.main-navigation > ul > li.current-menu-item > a {
    color: #FF6F61 !important; /* Coral */
    border-bottom: 2px solid #FF6F61;
}

/* Submenús */
.main-navigation ul ul {
    background: #fff !important;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 99999;
}

.main-navigation ul ul li a {
    padding: 10px 20px;
    color: #333 !important;
}

.main-navigation ul ul li a:hover {
    background: #F8F2E7;
    color: #1A8C8C !important;
}

/* ======================
   Breadcrumbs (ocultos)
   ====================== */
#breadcrumbs.bb-yoast-breadcrumbs {
    display: none !important;
    visibility: hidden !important;
}

/* ======================
   Secciones destacadas
   ====================== */
.section-title,
.page-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 32px;
    color: #1A8C8C;
    text-align: center;
    margin-bottom: 30px;
}

/* Cards (destinos, experiencias, etc.) */
.card,
.bb-grid article {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover,
.bb-grid article:hover {
    transform: translateY(-5px);
}

/* Títulos dentro de cards */
.card h3,
.bb-grid article h3 {
    color: #1A8C8C;
    font-family: 'Playfair Display', serif;
}

/* ======================
   Footer
   ====================== */
.site-footer {
    background: #1A8C8C !important;
    color: #fff !important;
    padding: 40px 20px;
    text-align: center;
}

.site-footer a {
    color: #FF6F61 !important;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #C8A96D !important;
}

/* ======================
   Responsive
   ====================== */
@media (max-width: 1024px) {
    .main-navigation {
        background: #fff;
    }
    .main-navigation ul ul {
        position: relative;
        box-shadow: none;
    }
    .main-navigation ul ul li a {
        padding: 12px;
    }
}
