/* ===== HOME PAGE STYLES - La Casa Tacos ===== */

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1c1917;
    background-image: url('/images/hero-bg-mexican-kitchen.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 25, 23, 0.72);
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 24px;
    text-align: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 224, 71, 0.15);
    border: 1px solid rgba(253, 224, 71, 0.3);
    color: #fde047;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero__badge svg {
    flex-shrink: 0;
}
.hero__title {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.1;
}
.hero__title-accent {
    color: #fde047;
    display: block;
}
.hero__subtitle {
    font-size: 17px;
    color: #d6d3d1;
    line-height: 1.8;
    margin: 0 0 32px;
}
.hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero__actions .btn--outline {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.hero__actions .btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}
.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    animation: heroBounce 2s infinite;
}
@keyframes heroBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
.hero__deco {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero__pepper {
    position: absolute;
}
.hero__pepper--1 {
    top: 10%;
    right: 8%;
    transform: rotate(15deg);
}
.hero__pepper--2 {
    bottom: 15%;
    left: 5%;
    transform: rotate(-20deg);
}
.hero__pepper--3 {
    top: 55%;
    right: 18%;
    transform: rotate(35deg);
}

/* ===== FEATURED SECTION ===== */
.featured {
    padding: 80px 0;
    background: #fffbf0;
}
.featured__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.featured-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f5f0e8;
    transition: transform 0.3s, box-shadow 0.3s;
}
.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(133, 77, 14, 0.12);
}
.featured-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}
.featured-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.featured-card:hover .featured-card__img {
    transform: scale(1.04);
}
.featured-card__cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #854d0e;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 6px;
}
.featured-card__body {
    padding: 24px;
}
.featured-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #a8a29e;
    margin-bottom: 12px;
}
.featured-card__dot {
    width: 3px;
    height: 3px;
    background: #a8a29e;
    border-radius: 50%;
}
.featured-card__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}
.featured-card__title a {
    color: #1c1917;
    text-decoration: none;
    transition: color 0.2s;
}
.featured-card__title a:hover {
    color: #854d0e;
    text-decoration: none;
}
.featured-card__excerpt {
    font-size: 15px;
    color: #57534e;
    line-height: 1.7;
    margin: 0;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: 80px 0 100px;
    background: #faf8f4;
}
.timeline {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e7e0d4;
    transform: translateX(-50%);
    border-radius: 2px;
}
.timeline__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    width: 100%;
}
.timeline__item:last-child {
    margin-bottom: 0;
}
.timeline__item--left {
    flex-direction: row;
    padding-right: calc(50% + 40px);
}
.timeline__item--right {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
}
.timeline__node {
    position: absolute;
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
    z-index: 2;
}
.timeline__card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ece7dc;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}
.timeline__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(133, 77, 14, 0.1);
}
.timeline__card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.timeline__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.timeline__card:hover .timeline__card-img {
    transform: scale(1.03);
}
.timeline__card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(28, 25, 23, 0.75);
    color: #fde047;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 5px;
    backdrop-filter: blur(4px);
}
.timeline__card-body {
    padding: 20px;
}
.timeline__card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #a8a29e;
    margin-bottom: 8px;
}
.timeline__card-date svg {
    flex-shrink: 0;
    color: #854d0e;
}
.timeline__card-dot {
    width: 3px;
    height: 3px;
    background: #a8a29e;
    border-radius: 50%;
}
.timeline__card-title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}
.timeline__card-title a {
    color: #1c1917;
    text-decoration: none;
    transition: color 0.2s;
}
.timeline__card-title a:hover {
    color: #854d0e;
    text-decoration: none;
}
.timeline__card-excerpt {
    font-size: 14px;
    color: #57534e;
    line-height: 1.7;
    margin: 0;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 80px 0;
    background: #fffbf0;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background: #fff;
    border: 2px solid #f5f0e8;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.cat-card:hover {
    border-color: #fde047;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(133, 77, 14, 0.08);
    text-decoration: none;
}
.cat-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef9ed;
    border-radius: 50%;
    transition: background-color 0.3s;
}
.cat-card:hover .cat-card__icon {
    background: #fef3c7;
}
.cat-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #1c1917;
}
.cat-card__arrow {
    color: #854d0e;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.3s;
}
.cat-card:hover .cat-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== ABOUT SNIPPET ===== */
.about-snippet {
    padding: 80px 0;
    background: #1c1917;
}
.about-snippet__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: center;
}
.about-snippet__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 6/7;
}
.about-snippet__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-snippet__text .section-header__label {
    color: #fde047;
    background: rgba(253, 224, 71, 0.12);
}
.about-snippet__title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
}
.about-snippet__text p {
    color: #d6d3d1;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 16px;
}
.about-snippet__text .btn--secondary {
    margin-top: 8px;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 80px 0;
    background: #fde047;
}
.newsletter__inner {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.newsletter__deco {
    position: absolute;
    top: -20px;
    right: -30px;
    opacity: 0.3;
    pointer-events: none;
}
.newsletter__title {
    font-size: 30px;
    font-weight: 800;
    color: #1c1917;
    margin: 0 0 12px;
    line-height: 1.2;
}
.newsletter__desc {
    font-size: 15px;
    color: #57534e;
    margin: 0 0 28px;
    line-height: 1.7;
}
.newsletter__form {
    display: flex;
    gap: 8px;
    max-width: 440px;
    margin: 0 auto 12px;
}
.newsletter__input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #854d0e;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: #1c1917;
    outline: none;
    transition: border-color 0.2s;
}
.newsletter__input::placeholder {
    color: #a8a29e;
}
.newsletter__input:focus {
    border-color: #713f12;
    box-shadow: 0 0 0 3px rgba(133, 77, 14, 0.15);
}
.newsletter__btn {
    flex-shrink: 0;
    padding: 14px 20px;
    white-space: nowrap;
}
.newsletter__btn svg {
    flex-shrink: 0;
}
.newsletter__note {
    font-size: 12px;
    color: #78716c;
    margin: 0;
}

/* ===== DISCLAIMER BANNER ===== */
.disclaimer-banner {
    background: #fef3c7;
    border-top: 2px solid #fde047;
    padding: 16px 0;
}
.disclaimer-banner .container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.disclaimer-banner svg {
    flex-shrink: 0;
    color: #854d0e;
    margin-top: 2px;
}
.disclaimer-banner p {
    font-size: 13px;
    color: #78716c;
    margin: 0;
    line-height: 1.6;
}

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {
    .hero {
        min-height: 70vh;
    }
    .hero__content {
        padding: 48px 24px;
    }
    .hero__title {
        font-size: 42px;
    }
    .hero__subtitle {
        font-size: 16px;
    }
    .hero__pepper--1 {
        right: 4%;
        top: 8%;
    }
    .hero__pepper--3 {
        right: 10%;
    }
    .featured {
        padding: 60px 0;
    }
    .featured__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .featured-card__body {
        padding: 20px;
    }
    .featured-card__title {
        font-size: 20px;
    }
    .featured-card__excerpt {
        font-size: 14px;
    }
    .timeline-section {
        padding: 60px 0 80px;
    }
    .timeline {
        max-width: 640px;
    }
    .timeline__line {
        left: 24px;
    }
    .timeline__item--left,
    .timeline__item--right {
        flex-direction: row;
        padding-right: 0;
        padding-left: 56px;
    }
    .timeline__node {
        left: 24px;
    }
    .timeline__card-body {
        padding: 18px;
    }
    .timeline__card-title {
        font-size: 18px;
    }
    .timeline__card-excerpt {
        font-size: 13px;
    }
    .timeline__item {
        margin-bottom: 40px;
    }
    .categories-section {
        padding: 60px 0;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .cat-card {
        padding: 24px 16px;
    }
    .cat-card__icon {
        width: 56px;
        height: 56px;
    }
    .cat-card__name {
        font-size: 14px;
    }
    .about-snippet {
        padding: 60px 0;
    }
    .about-snippet__inner {
        gap: 36px;
    }
    .about-snippet__title {
        font-size: 28px;
    }
    .about-snippet__text p {
        font-size: 14px;
    }
    .about-snippet__img-wrap {
        aspect-ratio: 4/5;
    }
    .newsletter-section {
        padding: 60px 0;
    }
    .newsletter__title {
        font-size: 26px;
    }
    .newsletter__desc {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }
    .hero__content {
        padding: 40px 20px;
    }
    .hero__badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    .hero__title {
        font-size: 34px;
    }
    .hero__subtitle {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
    }
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .hero__actions .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .hero__scroll-hint {
        bottom: 20px;
    }
    .hero__pepper--1,
    .hero__pepper--2,
    .hero__pepper--3 {
        opacity: 0.3;
    }
    .featured {
        padding: 48px 0;
    }
    .featured__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .featured-card__img-wrap {
        aspect-ratio: 16/9;
    }
    .featured-card__body {
        padding: 20px;
    }
    .featured-card__title {
        font-size: 20px;
    }
    .featured-card__excerpt {
        font-size: 14px;
    }
    .timeline-section {
        padding: 48px 0 60px;
    }
    .timeline__line {
        left: 16px;
        width: 2px;
    }
    .timeline__item--left,
    .timeline__item--right {
        padding-left: 44px;
        flex-direction: row;
    }
    .timeline__node {
        left: 16px;
    }
    .timeline__item {
        margin-bottom: 32px;
    }
    .timeline__card-img-wrap {
        aspect-ratio: 16/9;
    }
    .timeline__card-body {
        padding: 16px;
    }
    .timeline__card-date {
        font-size: 11px;
    }
    .timeline__card-title {
        font-size: 17px;
    }
    .timeline__card-excerpt {
        font-size: 13px;
    }
    .categories-section {
        padding: 48px 0;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .cat-card {
        padding: 24px 16px;
        border-radius: 12px;
    }
    .cat-card__icon {
        width: 52px;
        height: 52px;
    }
    .cat-card__name {
        font-size: 14px;
    }
    .about-snippet {
        padding: 48px 0;
    }
    .about-snippet__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-snippet__img-wrap {
        aspect-ratio: 16/10;
        border-radius: 14px;
    }
    .about-snippet__title {
        font-size: 26px;
    }
    .about-snippet__text p {
        font-size: 14px;
    }
    .newsletter-section {
        padding: 48px 0;
    }
    .newsletter__title {
        font-size: 24px;
    }
    .newsletter__desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .newsletter__form {
        flex-direction: column;
        max-width: 360px;
    }
    .newsletter__input {
        padding: 12px 16px;
        font-size: 15px;
    }
    .newsletter__btn {
        padding: 12px 20px;
    }
    .newsletter__note {
        font-size: 11px;
    }
    .disclaimer-banner {
        padding: 14px 0;
    }
    .disclaimer-banner p {
        font-size: 12px;
    }
    .container {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 55vh;
    }
    .hero__content {
        padding: 32px 16px;
    }
    .hero__badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 16px;
    }
    .hero__title {
        font-size: 28px;
    }
    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .hero__actions .btn {
        max-width: 260px;
        padding: 12px 20px;
        font-size: 14px;
    }
    .hero__pepper {
        display: none;
    }
    .hero__scroll-hint {
        bottom: 16px;
    }
    .featured {
        padding: 40px 0;
    }
    .featured__grid {
        gap: 20px;
    }
    .featured-card {
        border-radius: 12px;
    }
    .featured-card__body {
        padding: 16px;
    }
    .featured-card__meta {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .featured-card__title {
        font-size: 18px;
    }
    .featured-card__excerpt {
        font-size: 13px;
        line-height: 1.6;
    }
    .featured-card__cat {
        font-size: 10px;
        padding: 3px 10px;
    }
    .timeline-section {
        padding: 40px 0 48px;
    }
    .timeline {
        padding: 12px 0;
    }
    .timeline__line {
        left: 12px;
    }
    .timeline__item--left,
    .timeline__item--right {
        padding-left: 36px;
        flex-direction: row;
    }
    .timeline__node {
        left: 12px;
        top: 18px;
    }
    .timeline__item {
        margin-bottom: 24px;
    }
    .timeline__card {
        border-radius: 12px;
    }
    .timeline__card-img-wrap {
        aspect-ratio: 3/2;
    }
    .timeline__card-body {
        padding: 14px;
    }
    .timeline__card-cat {
        font-size: 10px;
        padding: 2px 8px;
    }
    .timeline__card-date {
        font-size: 11px;
        gap: 4px;
    }
    .timeline__card-title {
        font-size: 16px;
    }
    .timeline__card-excerpt {
        font-size: 12px;
        line-height: 1.6;
    }
    .categories-section {
        padding: 40px 0;
    }
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .cat-card {
        flex-direction: row;
        padding: 16px 20px;
        text-align: left;
        border-radius: 10px;
    }
    .cat-card__icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    .cat-card__name {
        flex: 1;
        font-size: 14px;
    }
    .cat-card__arrow {
        opacity: 1;
        transform: translateX(0);
        flex-shrink: 0;
    }
    .about-snippet {
        padding: 40px 0;
    }
    .about-snippet__inner {
        gap: 24px;
    }
    .about-snippet__img-wrap {
        aspect-ratio: 4/3;
        border-radius: 12px;
    }
    .about-snippet__title {
        font-size: 22px;
    }
    .about-snippet__text p {
        font-size: 13px;
    }
    .newsletter-section {
        padding: 40px 0;
    }
    .newsletter__inner {
        max-width: 100%;
    }
    .newsletter__title {
        font-size: 22px;
    }
    .newsletter__desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .newsletter__form {
        max-width: 100%;
    }
    .newsletter__input {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 8px;
    }
    .newsletter__btn {
        padding: 12px 18px;
        border-radius: 8px;
    }
    .newsletter__note {
        font-size: 11px;
    }
    .disclaimer-banner {
        padding: 12px 0;
    }
    .disclaimer-banner svg {
        margin-top: 1px;
    }
    .disclaimer-banner p {
        font-size: 11px;
        line-height: 1.5;
    }
    .container {
        flex-direction: column;
        gap: 6px;
    }
}