/* Premium Header */
.premium-header {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.pexels.com/photos/1639565/pexels-photo-1639565.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(212, 175, 55, 0.2));
}

.premium-content {
    position: relative;
    z-index: 2;
}

.premium-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.premium-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Premium Introduction */
.premium-intro {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.intro-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* Premium Meats Grid */
.premium-meats {
    padding: 100px 0;
    background-color: #fff;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.premium-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.premium-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-card:hover .premium-image img {
    transform: scale(1.1);
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #d4af37;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-badge:nth-of-type(2) {
    background-color: #e74c3c;
}

.premium-info {
    padding: 2rem;
}

.premium-info h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.origin {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.characteristics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.char-tag {
    background-color: #f8f8f8;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #eee;
}

.premium-price {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: right;
}

/* Cooking Process */
.cooking-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8, #fff);
}

.cooking-process h2 {
    text-align: center;
    color: #333;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.process-step h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Reservation CTA */
.reservation-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.reservation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1267320/pexels-photo-1267320.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-content h1 {
        font-size: 2.5rem;
    }

    .premium-content p {
        font-size: 1.1rem;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .premium-card {
        margin: 0 1rem;
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .cooking-process h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .premium-header {
        height: 50vh;
    }

    .premium-content h1 {
        font-size: 2rem;
    }

    .premium-content p {
        font-size: 1rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p {
        font-size: 1.1rem;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .premium-info {
        padding: 1.5rem;
    }

    .premium-info h3 {
        font-size: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .premium-meats,
    .cooking-process,
    .reservation-cta {
        padding: 60px 0;
    }
}

/* Hero Section */
.premium-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(212, 175, 55, 0.3)), 
                url('https://images.pexels.com/photos/1251208/pexels-photo-1251208.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(212, 175, 55, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(212, 175, 55, 0.9);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

/* Premium Introduction */
.premium-intro {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.intro-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.intro-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 4rem;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Cuts Guide */
.cuts-guide {
    padding: 6rem 0;
    background: #fff;
}

.cuts-guide h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.cuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.cut-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

.cut-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cut-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.cut-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cut-weight {
    display: inline-block;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

/* Premium Menu */
.premium-menu {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.premium-menu h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 4rem;
}

.meat-category {
    margin-bottom: 5rem;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.meat-items {
    padding: 3rem 2rem;
}

.meat-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.meat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.meat-item:last-child {
    margin-bottom: 0;
}

.meat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.meat-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
}

.meat-subtitle {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-left: 1rem;
}

.meat-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meat-badge.premium {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: #fff;
}

.meat-badge.exclusive {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: #fff;
}

.meat-badge.deluxe {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}

.meat-badge.angus {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
}

.meat-badge.local {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
}

.meat-badge.andaluza {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff;
}

.meat-badge.wagyu {
    background: linear-gradient(135deg, #d4af37, #f39c12);
    color: #fff;
    animation: shimmer 2s infinite;
}

.meat-badge.japanese {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.meat-badge.japanese::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.meat-cuts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.cut-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cut-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cut-name {
    font-weight: 600;
    color: #2c3e50;
}

.price {
    font-weight: 700;
    color: #d4af37;
    font-size: 1.1rem;
}

/* Wagyu Special Section */
.wagyu-section {
    position: relative;
    overflow: hidden;
}

.wagyu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05), rgba(241, 196, 15, 0.05));
    pointer-events: none;
}

.wagyu-section .category-header {
    background: linear-gradient(135deg, #d4af37, #f39c12);
}

.wagyu-item {
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, #fff, #fffef7);
}

.wagyu-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    border-radius: 5px;
}

.wagyu-note p {
    margin: 0;
    font-style: italic;
    color: #666;
}

/* Premium Experience */
.premium-experience {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
}

.experience-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #d4af37;
}

.experience-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.experience-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.experience-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.experience-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.premium-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #d4af37, #f39c12);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 180px;
}

.btn-primary {
    background: #fff;
    color: #d4af37;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .intro-content h2,
    .cuts-guide h2,
    .premium-menu h2,
    .experience-content h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }

    .category-header h3 {
        font-size: 2rem;
    }

    .category-header p {
        font-size: 1rem;
    }

    .meat-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .meat-header h4 {
        font-size: 1.5rem;
    }

    .meat-subtitle {
        margin-left: 0;
        font-size: 0.9rem;
    }

    .cuts-grid {
        grid-template-columns: 1fr;
    }

    .cut-card {
        padding: 1.5rem;
    }

    .meat-cuts {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .premium-hero {
        height: 50vh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-subtitle {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .premium-intro,
    .cuts-guide,
    .premium-menu,
    .premium-experience,
    .premium-cta {
        padding: 3rem 0;
    }

    .intro-content h2,
    .cuts-guide h2,
    .premium-menu h2,
    .experience-content h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .category-header {
        padding: 2rem 1rem;
    }

    .category-header h3 {
        font-size: 1.6rem;
    }

    .meat-items {
        padding: 2rem 1rem;
    }

    .meat-item {
        padding: 1.5rem;
    }

    .meat-header h4 {
        font-size: 1.3rem;
    }

    .cut-info h3 {
        font-size: 1.5rem;
    }

    .experience-icon {
        font-size: 2.5rem;
    }

    .experience-item h3 {
        font-size: 1.3rem;
    }
}