/*
Theme Name: VoyageCore V1.0.0
Theme URI: https://yourdomain.com/voyagecore
Author: Your Name
Author URI: 
Description: Universal Travel Blog Framework - Highly configurable, no heavy plugins
Version: 1.0.0
Text Domain: voyagecore
*/


/* ====================== HEADER LAYOUTS ====================== */
.site-header {
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-header {
    position: sticky;
    top: 0;
}

/* Layout 1 - Light Classic */
.layout-1 .top-header {
    background: #fdfaf5;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}

.layout-1 .top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.layout-1 .discover {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

/* Layout 3 - Dark */
.dark-header {
    background: #1a1a1a;
    color: #fff;
}

.dark-header .main-navigation a,
.dark-header .search-icon {
    color: #ddd;
}

.dark-header .main-navigation a:hover {
    color: var(--main-color);
}

/* Common styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-flex,
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
}

.search-icon {
    font-size: 1.4rem;
    color: #555;
}

.search-icon:hover {
    color: var(--main-color);
}

/* Responsive */
@media (max-width: 992px) {
    .main-navigation ul {
        gap: 16px;
        font-size: 0.95rem;
    }
}