@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lora:wght@400;500;600&family=Poppins:wght@300;400;500;600&family=Dancing+Script:wght@500;600;700&display=swap');

:root {
    --primary-color: #8B4513;
    --primary-dark: #5D2E0C;
    --secondary-color: #D4A574;
    --accent-color: #C41E3A;
    --text-dark: #2C1810;
    --text-light: #F5F0EB;
    --bg-cream: #FDF8F3;
    --bg-warm: #F5E6D3;
    --bg-dark: #1A0F0A;
    --gold: #C9A962;
    --border-light: rgba(139, 69, 19, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', Georgia, serif;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    color: var(--text-dark);
    line-height: 1.8;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

.script-font {
    font-family: 'Dancing Script', cursive;
}

.heading-font {
    font-family: 'Poppins', sans-serif;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.site-header {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #2D1A12 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-top {
    background: var(--primary-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.header-top a {
    color: var(--secondary-color);
}

.header-top a:hover {
    color: var(--gold);
}

.header-main {
    padding: 15px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light) !important;
    text-decoration: none;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--bg-dark);
    box-shadow: 0 2px 10px rgba(201, 169, 98, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.7rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-toggler {
    border: 2px solid var(--gold);
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A962' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light) !important;
    padding: 10px 18px !important;
    position: relative;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--gold) !important;
}

.offcanvas {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #2D1A12 100%);
    border-left: 3px solid var(--gold);
}

.offcanvas-header {
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
}

.offcanvas-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.4rem;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.offcanvas-body {
    padding: 25px;
}

.offcanvas-body .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offcanvas-body .nav-link::after {
    display: none;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 15, 10, 0.85) 0%, rgba(93, 46, 12, 0.75) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Boodle_fight_at_ثقافة_فلبينية_Kultura_Pilipino_sa_Japan_2017_02.jpg/1280px-Boodle_fight_at_ثقافة_فلبينية_Kultura_Pilipino_sa_Japan_2017_02.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 100%);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #9B1B2F 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.5);
    color: white;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--secondary-color) 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.bg-warm-section {
    background: linear-gradient(135deg, var(--bg-warm) 0%, #EBD9C6 100%);
}

.bg-dark-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2D1A12 100%);
    color: var(--text-light);
}

.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4 {
    color: var(--text-light);
}

.bg-dark-section .section-badge {
    color: var(--gold);
}

.feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.2);
}

.feature-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-card-img img {
    transform: scale(1.1);
}

.feature-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card-content {
    padding: 30px;
}

.feature-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-card-text {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

.dish-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.dish-showcase.reverse {
    direction: rtl;
}

.dish-showcase.reverse > * {
    direction: ltr;
}

.dish-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.dish-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.dish-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.dish-content {
    padding: 20px;
}

.dish-category {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.dish-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.dish-description {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.9;
}

.dish-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.dish-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.dish-meta-icon {
    width: 35px;
    height: 35px;
    background: var(--bg-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.restaurant-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
}

.restaurant-card:hover {
    box-shadow: 0 15px 50px rgba(139, 69, 19, 0.15);
    border-color: var(--secondary-color);
}

.restaurant-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 1rem;
}

.restaurant-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.restaurant-location {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.restaurant-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.restaurant-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.restaurant-tag {
    background: var(--bg-warm);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
}

.article-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.article-card:hover {
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
}

.article-card-img {
    width: 280px;
    min-height: 200px;
    flex-shrink: 0;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-card-date {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.article-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.article-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.article-card-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    border-radius: 20px;
    padding: 40px;
    color: var(--text-light);
}

.info-box h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.info-list-icon {
    width: 25px;
    height: 25px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    flex-shrink: 0;
    font-size: 0.75rem;
}

.page-header {
    background: linear-gradient(135deg, rgba(26, 15, 10, 0.9) 0%, rgba(93, 46, 12, 0.85) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Filipino_cuisine.jpg/1280px-Filipino_cuisine.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-light);
}

.page-header h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.page-header .breadcrumb-item.active {
    color: var(--gold);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--secondary-color);
}

.article-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(139, 69, 19, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 35px 0 20px;
    padding-top: 20px;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-image {
    margin: 35px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-image figcaption {
    background: var(--bg-warm);
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.recipe-box {
    background: var(--bg-warm);
    border-radius: 15px;
    padding: 35px;
    margin: 35px 0;
    border-left: 4px solid var(--gold);
}

.recipe-box h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.recipe-ingredients {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.recipe-ingredients li {
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 0;
    font-size: 0.95rem;
}

.recipe-steps {
    counter-reset: step;
}

.recipe-steps li {
    counter-increment: step;
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
}

.recipe-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(139, 69, 19, 0.08);
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-warm);
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    margin-bottom: 12px;
}

.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--bg-cream);
    border-radius: 10px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sidebar-list a:hover {
    background: var(--primary-color);
    color: white;
}

.external-link {
    color: var(--primary-color);
    border-bottom: 1px dashed var(--primary-color);
}

.external-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.contact-section {
    padding: 80px 0;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    border-radius: 20px;
    padding: 40px;
    color: var(--text-light);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.contact-details a:hover {
    color: var(--gold);
}

.map-placeholder {
    background: var(--bg-warm);
    border-radius: 20px;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.map-placeholder-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.map-placeholder-content p {
    color: #666;
    margin-bottom: 20px;
}

.site-footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0D0705 100%);
    color: var(--text-light);
    padding-top: 80px;
}

.footer-main {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-brand .navbar-brand {
    font-size: 1.4rem;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--secondary-color);
}

.footer-bottom a:hover {
    color: var(--gold);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 25px;
    z-index: 9998;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--bg-dark);
}

.cookie-btn-accept:hover {
    background: var(--secondary-color);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.update-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-warm);
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 20px;
}

.rating-stars {
    color: var(--gold);
}

.quote-block {
    background: linear-gradient(135deg, var(--bg-warm) 0%, #EBD9C6 100%);
    border-left: 4px solid var(--gold);
    padding: 30px 35px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
}

.quote-block p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.quote-block cite {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .dish-showcase {
        grid-template-columns: 1fr;
    }
    
    .dish-showcase.reverse {
        direction: ltr;
    }
    
    .dish-image img {
        height: 300px;
    }
    
    .article-content {
        padding: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .header-top-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .article-card {
        flex-direction: column;
    }
    
    .article-card-img {
        width: 100%;
        height: 200px;
    }
    
    .recipe-ingredients {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .brand-main {
        font-size: 1.2rem;
    }
    
    .brand-sub {
        font-size: 0.6rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .article-content {
        padding: 20px;
        margin-top: -30px;
    }
    
    .info-box {
        padding: 25px;
    }
}
