/*==================== VARIABLES CSS ====================*/
:root {
    /* Colores principales de la marca */
    --primary-color: #D311AF;  /* Rosa Mak Dürum */
    --secondary-color: #F4D724; /* Amarillo Mak Dürum */
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #6c757d;
    --light-gray: #f8f9fa;
    
    /* Colores de texto */
    --text-color: #333333;
    --text-light: #666666;
    
    /* Fuentes */
    --body-font: 'Poppins', sans-serif;
    
    /* Tamaños de fuente */
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    
    /* Pesos de fuente */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-extra-bold: 800;
    
    /* Espaciados */
    --header-height: 4rem;
    --section-padding: 4rem 0;
    
    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
    
    /* Transiciones */
    --transition: all 0.3s ease;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
    :root {
        --h1-font-size: 3.5rem;
        --h2-font-size: 2.5rem;
        --h3-font-size: 1.75rem;
        --normal-font-size: 1.125rem;
    }
}

/*==================== BASE ====================*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4 {
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--body-font);
}

/*==================== REUSABLE CSS CLASSES ====================*/
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section {
    padding: var(--section-padding);
}

.section--bg {
    background-color: var(--light-gray);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: var(--h2-font-size);
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.section__subtitle {
    font-size: var(--normal-font-size);
    color: var(--text-light);
    font-weight: var(--font-regular);
}

.text-primary {
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

/*==================== BUTTONS ====================*/
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: var(--font-semi-bold);
    transition: var(--transition);
    text-align: center;
    font-size: var(--normal-font-size);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(211, 17, 175, 0.3);
}

.btn-primary:hover {
    background-color: #b00d94;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 17, 175, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(244, 215, 36, 0.3);
}

.btn-secondary:hover {
    background-color: #dac020;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 215, 36, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/*==================== HEADER & NAVIGATION ====================*/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    position: relative;
}

.nav__logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
}

.nav__toggle,
.nav__close {
    display: flex;
    cursor: pointer;
    color: var(--dark-color);
    padding: 0.5rem;
    z-index: calc(var(--z-fixed) + 1);
}

.nav__toggle:hover,
.nav__close:hover {
    color: var(--primary-color);
}

/* Navigation for mobile devices */
@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--light-color);
        width: 80%;
        height: 100%;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.4s;
        z-index: var(--z-fixed);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 1.5rem;
    }
    
    /* Ocultar toggle cuando el menú está abierto */
    .nav__toggle {
        transition: opacity 0.3s;
    }
    
    body.menu-open .nav__toggle {
        opacity: 0;
        pointer-events: none;
    }
}

.nav__link {
    color: var(--text-color);
    font-weight: var(--font-medium);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

/* Desktop Navigation */
@media screen and (min-width: 768px) {
    .nav__toggle,
    .nav__close {
        display: none;
    }
    
    .nav__menu {
        width: auto;
    }
    
    .nav__list {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }
}

/*==================== HERO SECTION ====================*/
.hero {
    padding-top: calc(var(--header-height) + 2rem);
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(244, 215, 36, 0.1) 0%, rgba(211, 17, 175, 0.1) 100%);
}

.hero__container {
    display: grid;
    gap: 2rem;
}

.hero__content {
    text-align: center;
}

.hero__title {
    font-size: var(--h1-font-size);
    margin-bottom: 1rem;
    font-weight: var(--font-extra-bold);
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (min-width: 968px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .hero__content {
        text-align: left;
    }
    
    .hero__description {
        margin-left: 0;
    }
    
    .hero__buttons {
        justify-content: flex-start;
    }
}

/*==================== ORDER MODAL ====================*/
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-modal.show {
    opacity: 1;
    visibility: visible;
}

.order-modal__content {
    background-color: var(--light-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.order-modal.show .order-modal__content {
    transform: scale(1);
}

.order-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--gray-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: var(--transition);
}

.order-modal__close:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.order-modal__title {
    font-size: var(--h3-font-size);
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.order-modal__options {
    display: grid;
    gap: 1rem;
}

.order-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.order-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(211, 17, 175, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 17, 175, 0.2);
}

.order-option__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    color: var(--light-color);
    flex-shrink: 0;
}

.order-option__text {
    font-size: 1.125rem;
    font-weight: var(--font-semi-bold);
    color: var(--dark-color);
    flex-grow: 1;
}

.order-option__badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-size: 0.75rem;
    font-weight: var(--font-bold);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 480px) {
    .order-modal__content {
        padding: 2rem 1.5rem;
    }
    
    .order-option {
        padding: 1rem;
    }
    
    .order-option__icon {
        width: 50px;
        height: 50px;
    }
    
    .order-option__icon svg {
        width: 30px;
        height: 30px;
    }
    
    .order-option__text {
        font-size: 1rem;
    }
}

/*==================== IMAGE PLACEHOLDERS ====================*/
/* Estos placeholders se reemplazarán con imágenes reales */
.image-placeholder {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-weight: var(--font-bold);
    border-radius: 10px;
    overflow: hidden;
}

.image-placeholder--16-9 {
    aspect-ratio: 16 / 9;
}

.image-placeholder--3-4 {
    aspect-ratio: 3 / 4;
}

.image-placeholder--1-1 {
    aspect-ratio: 1 / 1;
}

/*==================== KEBAB GOURMET SECTION ====================*/
.kebab-gourmet__content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.content__title {
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
}

.content__description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-check {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

@media screen and (min-width: 968px) {
    .kebab-gourmet__content {
        grid-template-columns: 1fr 1fr;
    }
}

/*==================== TERNASCOKEBAB SECTION ====================*/
.ternasco__content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.process__step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.process__number {
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.process__number svg {
    stroke: var(--light-color);
}

.process__info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.process__info p {
    color: var(--text-light);
    font-size: var(--small-font-size);
}

.ingredients {
    background-color: rgba(244, 215, 36, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.ingredients__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.ingredients__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ingredient-tag {
    background-color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    color: var(--dark-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 968px) {
    .ternasco__content {
        grid-template-columns: 1fr 1fr;
    }
}

/*==================== TEAM SECTION ====================*/
.team__content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.team__member {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team__image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.team__info {
    text-align: center;
}

.team__name {
    font-size: var(--h3-font-size);
    margin-bottom: 0.25rem;
}

.team__role {
    color: var(--primary-color);
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
}

.team__description {
    color: var(--text-light);
}

.team__together {
    text-align: center;
}

.team__caption {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .team__content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team__member {
        flex-direction: column;
    }
}

/*==================== WHAT IS KEBAB SECTION ====================*/
.kebab-info {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.kebab-types {
    margin-top: 3rem;
}

.types-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.type-card {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.type-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.type-card p {
    color: var(--text-light);
    font-size: var(--small-font-size);
}

@media screen and (min-width: 768px) {
    .kebab-info {
        grid-template-columns: 1fr 1fr;
    }
    
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 968px) {
    .types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/*==================== ORDER SECTION ====================*/
.order-options {
    display: grid;
    gap: 2rem;
}

.order-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.order-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.order-card--highlight {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(244, 215, 36, 0.05) 0%, rgba(211, 17, 175, 0.05) 100%);
}

.order-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: var(--font-bold);
    font-size: var(--small-font-size);
}

.order-card__icon {
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.order-card__title {
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
}

.order-card__description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.order-card__hours {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 10px;
}

@media screen and (min-width: 768px) {
    .order-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1100px) {
    .order-options {
        grid-template-columns: repeat(4, 1fr);
    }
}

/*==================== LOCATION SECTION ====================*/
.location__content {
    display: grid;
    gap: 3rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block__title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

.info-block__title svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.info-block p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.info-block a {
    color: var(--primary-color);
}

.info-block a:hover {
    text-decoration: underline;
}

.location__map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location__map iframe {
    width: 100%;
    height: 450px;
}

@media screen and (min-width: 968px) {
    .location__content {
        grid-template-columns: 1fr 1.5fr;
    }
}

/*==================== NEWSLETTER SECTION ====================*/
.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9c0d87 100%);
    color: var(--light-color);
}

.newsletter__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter__title {
    font-size: var(--h2-font-size);
    color: var(--light-color);
    margin-bottom: 1rem;
}

.newsletter__description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter__form {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.newsletter__input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

.newsletter__input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.3);
}

.newsletter__privacy {
    font-size: var(--small-font-size);
    color: rgba(255, 255, 255, 0.8);
}

.newsletter__privacy a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Mensajes de éxito y error del newsletter */
.success-message,
.error-message {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    text-align: center;
    animation: slideDown 0.3s ease;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (min-width: 768px) {
    .newsletter__form {
        flex-direction: row;
    }
}

/*==================== FOOTER ====================*/
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--small-font-size);
    margin-bottom: 1rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links li,
.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--small-font-size);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer__legal {
    text-align: center;
}

.footer__legal p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--small-font-size);
    margin-bottom: 1rem;
}

.footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    font-size: var(--small-font-size);
}

.footer__legal-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer__legal-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer__legal-links span {
    color: rgba(255, 255, 255, 0.4);
}

@media screen and (min-width: 768px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 968px) {
    .footer__content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/*==================== SCROLL TO TOP ====================*/
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(211, 17, 175, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: var(--z-tooltip);
}

.scroll-top.show-scroll {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #b00d94;
    transform: translateY(-5px);
}

/*==================== SCROLL BAR ====================*/
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #b00d94;
}

/*==================== ANIMATIONS ====================*/
/* Los estilos de AOS (Animate On Scroll) se cargan desde la librería externa */
/* Aquí añadimos animaciones personalizadas adicionales */

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/*==================== UTILITIES ====================*/
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Loading states */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Success message */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    border: 1px solid #c3e6cb;
}

/* Error message */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    border: 1px solid #f5c6cb;
}

/*==================== ARTICLE PAGE STYLES ====================*/
.article-hero {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3rem;
    background: linear-gradient(135deg, rgba(244, 215, 36, 0.1) 0%, rgba(211, 17, 175, 0.1) 100%);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: var(--small-font-size);
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.article-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
}

.article-section {
    padding: 2rem 0;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.content-block.section--bg {
    padding: 3rem 1.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 15px;
}

.article-title {
    font-size: var(--h2-font-size);
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.content-block h3 {
    font-size: var(--h3-font-size);
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.content-block h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.content-block p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.content-block ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-block li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    list-style: disc;
    color: var(--text-color);
}

.content-block strong {
    color: var(--dark-color);
    font-weight: var(--font-semi-bold);
}

.content-block em {
    font-style: italic;
    color: var(--text-light);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(244, 215, 36, 0.1) 0%, rgba(211, 17, 175, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.highlight-box svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -3.5rem;
    top: 0;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: var(--font-bold);
    font-size: var(--small-font-size);
    white-space: nowrap;
}

.timeline-content h4 {
    margin-top: 0;
    font-size: 1.25rem;
}

/* Info Grid */
.info-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.info-card__icon {
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.info-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Kebab Type Cards */
.kebab-type-card {
    background-color: var(--light-color);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.kebab-type-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.kebab-type-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.kebab-type-card__header h4 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.25rem;
}

.badge {
    background-color: var(--light-gray);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

.badge--primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.kebab-type-card p {
    margin-bottom: 0.75rem;
    font-size: var(--normal-font-size);
}

.kebab-type-card p:last-child {
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-table {
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row--header {
    background-color: var(--primary-color);
    color: var(--light-color);
    font-weight: var(--font-bold);
}

.comparison-row:nth-child(even):not(.comparison-row--header) {
    background-color: var(--light-gray);
}

.comparison-cell {
    display: flex;
    flex-direction: column;
}

.comparison-cell::before {
    content: attr(data-label);
    font-weight: var(--font-semi-bold);
    margin-bottom: 0.25rem;
    display: none;
}

/* Expansion Story */
.expansion-story {
    margin: 2rem 0;
}

.story-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.story-decade {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: var(--font-extra-bold);
    font-size: 1.5rem;
    flex-shrink: 0;
    min-width: 100px;
    text-align: center;
}

.story-content h4 {
    margin-top: 0;
    color: var(--primary-color);
}

/* Modern Kebab Section */
.modern-kebab__text {
    max-width: 800px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9c0d87 100%);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.cta-box h3 {
    color: var(--light-color);
    margin-top: 0;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-box .btn {
    margin-top: 1rem;
}

/* Sauce Grid */
.sauce-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sauce-card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 3px solid var(--primary-color);
}

.sauce-card h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.sauce-card p {
    margin-bottom: 0;
}

/* Conclusion */
.conclusion {
    text-align: center;
}

.final-cta {
    background-color: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.final-cta h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Article Styles */
@media screen and (min-width: 768px) {
    .article-hero__title {
        font-size: 3rem;
    }
    
    .content-block.section--bg {
        margin-left: 0;
        margin-right: 0;
        padding: 3rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 2fr;
    }
    
    .comparison-cell::before {
        display: none;
    }
    
    .sauce-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-marker {
        position: static;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .story-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .story-decade {
        width: fit-content;
    }
    
    .highlight-box {
        flex-direction: column;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        padding: 0.5rem 0;
    }
    
    .comparison-cell:not(:first-child)::before {
        display: block;
        content: attr(data-label);
    }
}
