/*
Theme Name: FB-Travel
Theme URI: https://example.com/fb-travel
Author: Farebulk Development Team
Developer: Sandeep Negi
Author URI: https://farebulktravels.com/
Description: A lightweight WordPress theme for travel websites with fast loading speed.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fb-travel
Tags: lightweight, travel, fast, responsive, clean
*/

/* Base Styles */
:root {
    --primary-color: #0047AB; /* Strong blue */
    --secondary-color: #FF6B35; /* Vibrant orange */
    --accent-color: #00C2CB; /* Turquoise */
    --light-color: #F5F7FA; /* Light gray/white */
    --dark-color: #1A1B25; /* Almost black */
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --header-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition-speed: 0.3s;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: var(--header-shadow);
    position: relative;
    z-index: 100;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Sticky Header */
.sticky-enabled {
    position: sticky;
    top: 0;
    transition: all 0.3s ease;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Logo Styles */
.site-branding {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

/* Logo sizes */
.logo-small img {
    max-height: 40px;
}

.logo-medium img {
    max-height: 60px;
}

.logo-large img {
    max-height: 80px;
}

/* Logo visibility options */
@media (max-width: 768px) {
    .hide-logo-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-logo-desktop {
        display: none !important;
    }
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.site-title a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Support Section Styles */
.support-section {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Payment Images Styles */
.payment-images {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0.5rem;
}

.payment-methods-image {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

/* Contact Info Icons Styles */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.footer-contact-info svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-contact-info li:hover svg {
    transform: scale(1.1);
}

.footer-contact-info a {
    color: var(--footer-text-color, #ffffff);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--footer-link-color, #00C2CB);
}

/* Responsive Design for Payment Images */
@media (max-width: 768px) {
    .payment-images {
        justify-content: center;
    }
    
    .payment-methods-image {
        max-height: 30px;
    }
    
    .footer-contact-info li {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-contact-info svg {
        width: 18px;
        height: 18px;
    }
}

.support-icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon-inner {
    position: relative;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

/* Enhanced hover effect for the container */
.support-section:hover .support-icon-inner {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.support-image {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Apply filter only to SVG images */
.support-image[src$=".svg"] {
    filter: brightness(0) invert(1);
    drop-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* For non-SVG images, ensure they display properly */
.support-image:not([src$=".svg"]) {
    filter: none;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hover effect for better visibility */
.support-section:hover .support-image {
    transform: scale(1.1);
}

.support-fa-icon {
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.6;
    z-index: 1;
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

.support-text {
    display: flex;
    flex-direction: column;
}

.support-label {
    font-size: 0.75rem;
    color: var(--dark-color);
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.support-phone {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-phone:hover {
    color: var(--secondary-color);
}

/* Mobile Support Section */
.mobile-support-section {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-support-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-support-link {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-support-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 71, 171, 0.4);
}

.mobile-support-icon {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.mobile-support-icon img {
    width: 1.4rem;
    height: 1.4rem;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

/* Apply filter only to SVG images in mobile support */
.mobile-support-icon img[src$=".svg"] {
    filter: brightness(0) invert(1);
    drop-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* For non-SVG images in mobile support, ensure they display properly */
.mobile-support-icon img:not([src$=".svg"]) {
    filter: none;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Mobile support hover effect */
.mobile-support-link:hover img {
    transform: scale(1.1);
}

.mobile-support-fa-icon {
    font-size: 1.25rem;
    color: white;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-support-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
    animation: mobile-pulse 2s infinite;
}

@keyframes mobile-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

.mobile-support-text {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
    margin-left: var(--header-menu-logo-spacing, 20px);
}

.primary-menu-container {
    display: flex;
}

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

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--primary-color);
}

/* CTA Button */
.header-cta {
    margin-left: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Modern Mobile Menu Toggle - 2025 Design */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.menu-icon {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--dark-color);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.menu-icon:before,
.menu-icon:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    position: absolute;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.menu-icon:before {
    top: -8px;
}

.menu-icon:after {
    bottom: -8px;
}

/* Animated hamburger to X transformation */
.menu-toggle.active .menu-icon {
    background-color: transparent;
}

.menu-toggle.active .menu-icon:before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .menu-icon:after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Sidebar Navigation - Modern 2025 Style with Default Blue Theme */
:root {
    --sidebar-primary-color: #667eea;
    --sidebar-secondary-color: #764ba2;
    --sidebar-accent-color: #f093fb;
    --sidebar-bg-color: #ffffff;
    --sidebar-text-color: #374151;
    --sidebar-hover-bg: rgba(102, 126, 234, 0.08);
    --sidebar-border-color: rgba(0, 0, 0, 0.08);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: linear-gradient(135deg, var(--sidebar-bg-color) 0%, #f8fafc 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    border-radius: 0 24px 24px 0;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid var(--sidebar-border-color);
    background: linear-gradient(135deg, var(--sidebar-primary-color) 0%, var(--sidebar-secondary-color) 100%);
    color: white;
    border-radius: 0 24px 0 0;
    position: relative;
    overflow: hidden;
}

.mobile-sidebar-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--sidebar-accent-color) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.mobile-sidebar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mobile-sidebar-close::before,
.mobile-sidebar-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.mobile-sidebar-close::before {
    transform: rotate(45deg);
}

.mobile-sidebar-close::after {
    transform: rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .support-section {
        margin-right: 1rem;
    }
    
    .support-label {
        font-size: 0.7rem;
    }
    
    .support-phone {
        font-size: 1rem;
    }
}

/* Mobile Sidebar Menu Items */
.mobile-sidebar-menu {
    padding: 1.5rem 0;
}

.mobile-sidebar-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-sidebar-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-sidebar-menu li:last-child {
    border-bottom: none;
}

.mobile-sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--sidebar-text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--sidebar-primary-color) 0%, var(--sidebar-secondary-color) 100%);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sidebar-menu a:hover,
.mobile-sidebar-menu .current-menu-item > a {
    background: var(--sidebar-hover-bg);
    color: var(--sidebar-primary-color);
    padding-left: 2rem;
}

.mobile-sidebar-menu a:hover::before,
.mobile-sidebar-menu .current-menu-item > a::before {
    transform: scaleY(1);
}

/* Ensure menu items are visible */
.mobile-sidebar-menu ul,
.mobile-sidebar-menu li,
.mobile-sidebar-menu a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-sidebar-menu ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Submenu styles */
.mobile-sidebar-menu .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.mobile-sidebar-menu .menu-item-has-children.open > a::after {
    transform: rotate(180deg);
}

.mobile-sidebar-menu .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.02);
}

.mobile-sidebar-menu .menu-item-has-children.open .sub-menu {
    max-height: 500px;
}

.mobile-sidebar-menu .sub-menu a {
    padding-left: 3rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.mobile-sidebar-menu .sub-menu a:hover {
    padding-left: 3.5rem;
    color: var(--sidebar-primary-color);
}



@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 0;
    }
    
    .header-container {
        justify-content: space-between;
    }
    
    .support-section {
        display: none;
    }
    
    .mobile-support-section {
        display: block;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Hide the old dropdown menu */
    .main-navigation ul {
        display: none !important;
    }
    
    .main-navigation.toggled ul {
        display: none !important;
    }
    
    .header-cta {
        margin-left: 0;
    }
}

/* Additional mobile sidebar responsive styles */
@media (max-width: 480px) {
    .mobile-sidebar {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
    
    .mobile-sidebar-header {
        border-radius: 0;
    }
    
    .mobile-sidebar-menu a {
        padding: 1.25rem 1rem;
        font-size: 1.1rem;
    }
    
    .mobile-sidebar-menu .sub-menu a {
        padding-left: 2.5rem;
        font-size: 1rem;
    }
}

/* Prevent body scroll when sidebar is open */
body.mobile-sidebar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Smooth transitions for all interactive elements */
.mobile-sidebar * {
    -webkit-tap-highlight-color: transparent;
}

/* Focus styles for accessibility */
.menu-toggle:focus,
.mobile-sidebar-close:focus,
.mobile-sidebar-menu a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

@media (max-width: 480px) {
    .site-logo img {
        max-height: 40px;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .site-header {
        padding: 0.5rem 0;
    }
    
    .header-container {
        padding: 0 0.75rem;
    }
    
    .site-branding h1 {
        font-size: 1.25rem;
    }
    
    .menu-toggle {
        padding: 0.5rem;
    }
    
    .menu-icon {
        width: 24px;
        height: 2px;
    }
    
    .menu-icon:before {
        top: -6px;
    }
    
    .menu-icon:after {
        bottom: -6px;
    }
    
    /* Mobile sidebar adjustments for small screens */
    .mobile-sidebar {
        width: 280px;
        max-width: 90vw;
    }
    
    .mobile-sidebar-header {
        padding: 1.5rem 1rem 0.75rem;
    }
    
    .mobile-sidebar-logo {
        font-size: 1.25rem;
    }
    
    .mobile-sidebar-close {
        width: 36px;
        height: 36px;
        top: 1rem;
        right: 1rem;
    }
    
    .mobile-sidebar-menu a {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    


}

.support-text {
    display: flex;
    flex-direction: column;
}

.support-label {
    font-size: 0.75rem;
    color: var(--dark-color);
    opacity: 0.8;
}

.support-phone {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.support-phone:hover {
    color: var(--secondary-color);
}

/* Header Main Section */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Site Branding */
.site-branding {
    display: flex;
    align-items: center;
}

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

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.site-title a {
    color: var(--dark-color);
    text-decoration: none;
}

.site-description {
    margin: 0;
    font-size: 0.875rem;
    color: var(--dark-color);
    opacity: 0.7;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

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

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--transition-speed) ease;
}

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

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-color);
    position: relative;
    transition: background-color var(--transition-speed) ease;
}

.menu-icon:before,
.menu-icon:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    position: absolute;
    transition: all var(--transition-speed) ease;
}

.menu-icon:before {
    top: -6px;
}

.menu-icon:after {
    bottom: -6px;
}

/* CTA Button */
.header-cta {
    margin-left: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Fix for duplicate phone numbers */
.contact-info .phone-number {
    display: inline-block;
    margin-right: 1rem;
}

.contact-info .phone-number:last-child {
    margin-right: 0;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    padding: 1rem 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
}

.main-navigation li {
    margin-right: 1.5rem;
}

.main-navigation a {
    display: block;
    padding: 0.5rem 0;
}

/* Content */
.site-content {
    padding: 2rem 0;
}

.site-main {
    margin-bottom: 2rem;
}

/* Posts */
.post {
    margin-bottom: 2rem;
}

.entry-title {
     font-size: 1.8rem;
    background: linear-gradient(262deg, #e2c1ff 0%, #ffebe1 94%);
    border-radius: 11px;
    padding: 41px;
    margin-top: 23px;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #000000;
}

.entry-meta {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.entry-content {
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    padding: 1.5rem 0;
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}