#logo_text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 1.5px;
    font-weight: 400;
}

body {
    font-family: 'Montserrat', sans-serif;
}
html {
    scroll-behavior: smooth;
}
:root {
    --color-spain-red: #E8431C;
    --color-spain-yellow: #FFC400;
    --color-poland-red: #DC143C;
    --color-poland-white: #FFFFFF;
    --color-gold: #D4AF37;
    --color-accent-red: #B71C1C;
}
.hero-bg {
    background: linear-gradient(135deg,
        rgba(255, 196, 0, 0.1) 0%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(220, 20, 60, 0.1) 100%
    );
    position: relative;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/bandera.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.20;
    z-index: -1;
}
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--color-spain-yellow);
}
.navbar.hide {
    transform: translateY(-100%);
}
.navbar-brand img {
    height: 40px;
    width: auto;
}
.floating-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.floating-menu.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.floating-menu .navbar-toggler {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
    border: 2px solid var(--color-spain-yellow);
    padding: 0;
}
.floating-menu .navbar-toggler:focus {
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.6);
}
.floating-menu .navbar-toggler-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: all 0.3s ease;
}
.floating-menu .navbar-toggler-icon::before,
.floating-menu .navbar-toggler-icon::after,
.floating-menu .navbar-toggler-icon span {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    left: 0;
}
.floating-menu .navbar-toggler-icon::before {
    top: 0;
}
.floating-menu .navbar-toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
}
.floating-menu .navbar-toggler-icon::after {
    bottom: 0;
}
.floating-menu .navbar-toggler.active .navbar-toggler-icon::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.floating-menu .navbar-toggler.active .navbar-toggler-icon span {
    opacity: 0;
}
.floating-menu .navbar-toggler.active .navbar-toggler-icon::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}
.social-icon-link {
    color: var(--color-spain-red);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}
.social-icon-link:hover {
    color: var(--color-accent-red);
}
.social-icon-link i {
    font-size: 1.4rem;
    line-height: 1;
}
.btn-spanish {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    border: 2px solid var(--color-spain-yellow);
    color: white;
    font-weight: 600;
}
.btn-spanish:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    border-color: var(--color-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}
.btn-polish {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    border: 2px solid var(--color-poland-white);
    color: white;
    font-weight: 600;
}
.btn-polish:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    border-color: var(--color-spain-yellow);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}
.text-spanish {
    color: #000000;
}
.text-polish {
    color: #000000;
}
.text-gold {
    color: var(--color-gold);
}
.bg-spanish-light {
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.15), rgba(255, 255, 255, 0.9));
    border-left: 4px solid var(--color-spain-yellow);
}
.bg-polish-light {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08), rgba(255, 255, 255, 0.9));
    border-left: 4px solid var(--color-poland-red);
}
.card {
    transition: all 0.3s ease;
    border: none;
}
.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px);
}
.icon-circle {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}
.nav-link {
    font-weight: 500;
    color: #4a5568 !important;
}
.nav-link:hover {
    color: var(--color-spain-red) !important;
}
.btn {
    transition: all 0.3s ease;
}
.offcanvas-header {
    background: linear-gradient(135deg, var(--color-spain-yellow) 0%, var(--color-gold) 100%);
    border-bottom: 3px solid var(--color-spain-red);
}
.offcanvas-title {
    color: #000000 !important;
}
footer {
    background: var(--color-spain-red);
    border-top: 4px solid var(--color-spain-yellow);
}
.post-header {
    background: linear-gradient(135deg,
        rgba(255, 196, 0, 0.1) 0%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(220, 20, 60, 0.1) 100%
    );
    padding: 4rem 0 3rem;
    margin-bottom: 2rem;
}
.post-title {
    color: var(--color-spain-red);
    font-weight: 700;
    margin-bottom: 1rem;
}
.post-subtitle {
    color: #4a5568;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0;
}
.post-body {
2
    margin: 0 auto;
    padding: 2rem 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
}
.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
    color: var(--color-spain-red);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.post-body h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--color-spain-yellow);
    padding-bottom: 0.5rem;
}
.post-body h3 {
    font-size: 1.5rem;
}
.post-body p {
    margin-bottom: 1.5rem;
}
.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.post-body a {
    color: var(--color-spain-red);
    text-decoration: underline;
}
.post-body a:hover {
    color: var(--color-accent-red);
}
.post-body ul,
.post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
.post-body li {
    margin-bottom: 0.5rem;
}
.post-body blockquote {
    border-left: 4px solid var(--color-spain-yellow);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4a5568;
    background: rgba(255, 196, 0, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 4px;
}
.post-body code {
    background: rgba(255, 196, 0, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
    color: var(--color-accent-red);
}
.post-body pre {
    background: #2d3748;
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}
.post-body pre code {
    background: none;
    color: #fff;
    padding: 0;
}
.btn-back {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    border: 2px solid var(--color-spain-yellow);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-back:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    border-color: var(--color-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}
.blog-card {
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}
.blog-card img {
    object-fit: cover;
    width: 100%;
}
.blog-card-body {
    padding: 1.5rem;
}
.blog-title {
    color: var(--color-spain-red);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.blog-subtitle {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}
.blog-excerpt {
    color: #2d3748;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.blog-meta {
    font-size: 0.85rem;
    color: #718096;
}
.btn-read-more {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--color-spain-yellow) 0%, var(--color-gold) 100%);
    border: 2px solid var(--color-spain-yellow);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-read-more:hover {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-spain-yellow) 100%);
    transform: translateX(5px);
}
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}
.empty-state i {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}