/*
 * Restaurant Website Enhancements
 * Revolutionary design components for stunning restaurant websites
 */

/* ========================================
   FULL WIDTH SECTIONS
   ======================================== */

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* ========================================
   HERO SECTIONS - RESTAURANT SPECIFIC
   ======================================== */

.restaurant-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.restaurant-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23000" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 1;
}

.restaurant-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.restaurant-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.restaurant-hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.restaurant-hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.restaurant-hero-tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.85;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Animated Background Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-particles::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 50px) scale(1.05); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   MENU ITEM CARDS - STUNNING FOOD DISPLAY
   ======================================== */

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

.menu-item {
    position: relative;
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.15);
}

.menu-item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    z-index: 5;
}

.menu-item-content {
    padding: 2rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.menu-item-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #d4af37;
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-item-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.menu-item-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.menu-item-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 2rem;
    font-size: 0.875rem;
    color: #555;
    font-weight: 500;
}

.menu-item-tag::before {
    content: '•';
    color: #d4af37;
    font-size: 1.25rem;
}

/* ========================================
   RESERVATION SECTION - MODERN BOOKING
   ======================================== */

.reservation-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.reservation-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.reservation-form-container {
    background: #ffffff;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: -4rem auto 0;
    position: relative;
    z-index: 10;
}

.reservation-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.reservation-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #c9a02c 100%);
    color: #ffffff;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.reservation-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

/* ========================================
   GALLERY - FOOD PHOTOGRAPHY SHOWCASE
   ======================================== */

.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 3rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

/* ========================================
   CHEF'S SPECIAL - FEATURED DISHES
   ======================================== */

.chefs-special {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.special-image {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.special-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, transparent 100%);
    z-index: 2;
}

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

.chefs-special:hover .special-image img {
    transform: scale(1.1);
}

.special-content {
    padding: 2rem;
}

.special-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #c9a02c 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.special-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.special-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.special-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.special-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: #333;
}

.special-feature::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #c9a02c 100%);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

/* ========================================
   AMBIANCE SECTION - RESTAURANT ATMOSPHERE
   ======================================== */

.ambiance-section {
    position: relative;
    padding: 8rem 0;
    background: #1a1a1a;
    color: #ffffff;
    overflow: hidden;
}

.ambiance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ambiance-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.ambiance-card:hover {
    transform: translateY(-10px);
}

.ambiance-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ambiance-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.9) 100%);
}

.ambiance-label {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 5;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 5rem 0;
    width: 100%;
}

.section-lg {
    padding: 7rem 0;
    width: 100%;
}

.section-xl {
    padding: 10rem 0;
    width: 100%;
}

/* Ensure sections are full width */
.wp-block-group.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

@media (max-width: 768px) {
    .section { padding: 3rem 0; }
    .section-lg { padding: 4rem 0; }
    .section-xl { padding: 5rem 0; }
}

.testimonial-card-modern {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #d4af37;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #c9a02c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-author-details h4 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-author-details p {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    color: #666;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .chefs-special,
    .ambiance-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .restaurant-hero-title {
        font-size: 3rem;
    }
    
    .reservation-form-grid {
        grid-template-columns: 1fr;
    }
    
    .food-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .special-title {
        font-size: 2rem;
    }
}

/* ========================================
   UTILITY CLASSES - RESTAURANT SPECIFIC
   ======================================== */

.gold-accent {
    color: #d4af37;
}

.bg-gold {
    background: linear-gradient(135deg, #d4af37 0%, #c9a02c 100%);
}

.text-shadow-gold {
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.border-gold {
    border: 2px solid #d4af37;
}

.hover-gold:hover {
    color: #d4af37;
    transition: color 0.3s ease;
}
