/* Sylvie's Suitcase - Custom Styles */

/* Fonts */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.header-section {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.top-bar {
    background: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 12px;
}

.main-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-nav .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.main-nav .nav-link:hover {
    color: #ccc;
}

/* Social Icons in Header */
.social-icons {
    display: inline-flex;
    gap: 10px;
    margin-right: 20px;
}

.social-link {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #ccc;
}

/* Search Box */
.search-box {
    display: inline-flex;
    align-items: center;
}

.search-input {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    width: 150px;
    border-radius: 0;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 5px 10px;
    margin-left: -1px;
    border-radius: 0;
}

.search-btn:hover {
    background: #333;
}

/* Logo Section */
.logo-section {
    padding: 30px 0;
    background: #fff;
}

.logo-container {
    max-width: 100%;
}

.logo-img {
    max-width: 500px;
    height: auto;
}

/* Secondary Navigation */
.secondary-nav {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 15px 0;
}

.secondary-nav-link {
    color: #333 !important;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.secondary-nav-link:hover {
    color: #666 !important;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    background: #fff;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.content-divider {
    width: 100px;
    height: 1px;
    background: #ddd;
    margin: 20px auto 40px;
}

/* Sidebar Styles */
.sidebar {
    padding-left: 30px;
}

.sidebar-widget {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
}

.widget-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.widget-divider {
    width: 60px;
    height: 1px;
    background: #ddd;
    margin: 0 auto 25px;
}

/* Follow Section */
.follow-icons {
    margin-top: 20px;
}

.follow-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    margin-bottom: 20px;
}

.follow-link i {
    font-size: 18px;
    margin-bottom: 8px;
}

.follow-link span {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.follow-link:hover {
    color: #666;
}

/* Subscribe Section */
.subscribe-text {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.subscribe-form {
    text-align: center;
}

.subscribe-input {
    font-size: 12px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 0;
    margin-bottom: 15px;
    text-align: center;
}

.subscribe-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
}

.subscribe-btn:hover {
    background: #333;
}

/* YouTube Section */
.youtube-widget {
    text-align: center;
}

.youtube-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #eee;
}

.youtube-link:hover .youtube-image {
    opacity: 0.8;
}

/* Footer */
.footer-section {
    background: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.copyright-text {
    font-size: 10px;
    letter-spacing: 1px;
    margin: 0;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        padding-left: 15px;
        margin-top: 40px;
    }

    .logo-img {
        max-width: 300px;
    }

    .social-icons {
        margin-right: 10px;
    }

    .search-input {
        width: 120px;
    }

    .main-nav .nav-list {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 8px 0;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 10px;
    }

    .social-icons {
        display: none;
    }

    .search-box {
        width: 100%;
        margin-top: 10px;
    }

    .search-input {
        width: 100%;
    }

    .logo-img {
        max-width: 250px;
    }

    .sidebar {
        padding-left: 0;
        margin-top: 30px;
    }
}

/* Blog Posts Styling (for future content) */
.blog-posts {
    margin-top: 30px;
}

.blog-post {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.blog-post:last-child {
    border-bottom: none;
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.post-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    font-size: 11px;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.read-more:hover {
    color: #666;
}

/* Additional styling for better visual hierarchy */
.content-section {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
}

/* Ensure proper spacing and alignment */
.navbar-nav .nav-link {
    padding: 0.5rem 0;
}

/* Fine-tune the layout */
.container {
    max-width: 1200px;
}

/* Additional responsive adjustments */
@media (max-width: 992px) {
    .main-content {
        padding: 30px 0;
    }

    .logo-section {
        padding: 20px 0;
    }
}
/* Blog Post Styles */
.post-image {
    border-radius: 5px;
    margin-bottom: 20px;
}

.post-tags {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    color: #666;
    padding: 4px 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
    margin-bottom: 5px;
    border-radius: 3px;
}

.nav-link.active {
    color: #666 !important;
    font-weight: bold;
}

/* Post content styling */
.post-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 25px 0 15px;
}

.post-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}


/* Home page specific styles */
.welcome-section {
    margin-bottom: 50px;
    text-align: center;
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.welcome-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-btn {
    margin: 0 10px 10px;
    padding: 12px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
}

.btn-primary.cta-btn {
    background: #333;
    border-color: #333;
}

.btn-primary.cta-btn:hover {
    background: #555;
    border-color: #555;
}

.btn-outline-primary.cta-btn {
    color: #333;
    border-color: #333;
}

.btn-outline-primary.cta-btn:hover {
    background: #333;
    border-color: #333;
}

/* Featured posts */
.featured-posts {
    margin-top: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.featured-post-card {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
}

.featured-post-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.post-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.read-more-link {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-link:hover {
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 26px;
    }
    
    .welcome-text {
        font-size: 15px;
    }
    
    .cta-btn {
        display: block;
        width: 100%;
        margin: 0 0 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .post-card-title {
        font-size: 16px;
    }
}
