/* Restaurant Page Styles for Magpyehub Ltd */
/* Elegant Dining Atmosphere with Ghanaian Cultural Elements */

:root {
    /* Ghana Flag Colors */
    --ghana-gold: #FFD700;
    --ghana-green: #228B22;
    --ghana-red: #DC143C;
    
    /* Restaurant Palette */
    --cream: #FEF7E0;
    --charcoal: #374151;
    --brown: #8B4513;
    --light-brown: #D2B48C;
    --dark-green: #1B5E20;
    --soft-gold: #FFF8DC;
    --warm-white: #FFFEF7;
    --elegant-black: #1A1A1A;
    
    /* Gradients */
    --heritage-gradient: linear-gradient(135deg, var(--ghana-gold) 0%, var(--ghana-red) 50%, var(--ghana-green) 100%);
    --elegant-gradient: linear-gradient(45deg, var(--elegant-black) 0%, var(--charcoal) 100%);
    --warm-gradient: linear-gradient(135deg, var(--cream) 0%, var(--soft-gold) 100%);
}

/* Restaurant Hero Section */
.restaurant-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 10s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(55,65,81,0.6) 50%, rgba(26,26,26,0.8) 100%);
}

.restaurant-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.9);
    color: var(--elegant-black);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--ghana-gold) 0%, var(--cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--ghana-gold);
    font-style: italic;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,215,0,0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,215,0,0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--ghana-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,215,0,0.2);
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--ghana-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--elegant-black);
}

.info-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--elegant-black);
}

.info-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

/* Restaurant Concept Section */
.restaurant-concept {
    padding: 6rem 0;
    background: var(--warm-gradient);
}

.concept-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.concept-text .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ghana-green);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.concept-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

.concept-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--ghana-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--elegant-black);
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--elegant-black);
}

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

.concept-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    height: 500px;
}

.gallery-main {
    border-radius: 20px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-grid .gallery-image {
    border-radius: 15px;
    object-fit: cover;
}

/* Menu Section */
.restaurant-menu {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ghana-red);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--elegant-black);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.menu-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

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

.menu-filter-btn {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--ghana-gold);
    border-radius: 50px;
    color: var(--charcoal);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-filter-btn:hover,
.menu-filter-btn.active {
    background: var(--ghana-gold);
    color: var(--elegant-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.menu-search {
    position: relative;
    min-width: 300px;
}

.menu-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.menu-search-input:focus {
    outline: none;
    border-color: var(--ghana-green);
    box-shadow: 0 0 20px rgba(34, 139, 34, 0.2);
}

.menu-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
}

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

/* Menu Item Card */
.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

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

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

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--elegant-black);
    margin-bottom: 0.5rem;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--ghana-green);
    flex-shrink: 0;
}

.menu-item-category {
    color: var(--ghana-red);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.menu-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.meta-tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.menu-item-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.menu-tag {
    padding: 0.3rem 0.8rem;
    background: var(--soft-gold);
    color: var(--charcoal);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.order-btn {
    flex: 1;
    padding: 1rem;
    background: var(--ghana-green);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.favorite-btn {
    padding: 1rem;
    background: none;
    border: 2px solid var(--ghana-gold);
    border-radius: 12px;
    color: var(--ghana-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
}

.favorite-btn:hover,
.favorite-btn.active {
    background: var(--ghana-gold);
    color: var(--elegant-black);
}

/* Chef's Specials Section */
.chef-specials {
    padding: 6rem 0;
    background: var(--elegant-gradient);
    color: white;
}

.specials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.specials-header .section-badge {
    background: var(--ghana-gold);
    color: var(--elegant-black);
}

.specials-header .section-title {
    color: white;
}

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

.special-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.2);
    transition: all 0.4s ease;
}

.special-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,215,0,0.4);
}

.special-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

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

.special-card.featured .special-image {
    height: auto;
}

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

.special-card:hover .special-image img {
    transform: scale(1.05);
}

.special-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--ghana-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.special-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.special-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--ghana-gold);
}

.special-description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.special-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--ghana-gold);
    margin-bottom: 1.5rem;
}

.special-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.4rem 1rem;
    background: rgba(255,215,0,0.2);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ghana-gold);
}

/* Reservations Section */
.reservations {
    padding: 6rem 0;
    background: var(--warm-gradient);
}

.reservations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.reservation-features {
    margin: 2rem 0;
}

.reservation-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0;
    background: none;
    box-shadow: none;
}

.reservation-features i {
    color: var(--ghana-green);
    font-size: 1.2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--ghana-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--elegant-black);
    flex-shrink: 0;
}

.reservation-form-container {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--elegant-black);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ghana-green);
    box-shadow: 0 0 15px rgba(34, 139, 34, 0.15);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Location Section */
.restaurant-location {
    padding: 6rem 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-details {
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    border-left: 4px solid var(--ghana-gold);
}

.detail-item i {
    width: 50px;
    height: 50px;
    background: var(--ghana-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--elegant-black);
    flex-shrink: 0;
}

.detail-item strong {
    color: var(--elegant-black);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.location-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.map-container {
    margin-bottom: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--cream);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--ghana-gold);
    color: var(--charcoal);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: var(--soft-gold);
    border-color: var(--ghana-green);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--ghana-gold);
    margin-bottom: 1rem;
}

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

.ambiance-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.ambiance-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.ambiance-item:hover img {
    transform: scale(1.1);
}

.ambiance-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem 0.5rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .restaurant-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-info-cards {
        flex-direction: row;
        justify-content: center;
    }
    
    .concept-content,
    .reservations-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .special-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .concept-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 200px;
    }
}

@media (max-width: 768px) {
    .restaurant-hero {
        padding-top: 80px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-info-cards {
        flex-direction: column;
    }
    
    .menu-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .menu-search {
        min-width: auto;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .ambiance-gallery {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .restaurant-hero {
        padding: 100px 0 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .concept-gallery {
        height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-form-container {
        padding: 2rem;
    }
    
    .menu-filters {
        flex-direction: column;
    }
    
    .menu-filter-btn {
        text-align: center;
    }
}

/* Loading and Animation States */
.menu-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--cream);
    border-top: 3px solid var(--ghana-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Form Validation States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--ghana-red);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.15);
}

.error-message {
    color: var(--ghana-red);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

/* Success States */
.form-success {
    background: var(--ghana-green);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Special Hover Effects for Interactive Elements */
.menu-item:hover .menu-item-name {
    color: var(--ghana-green);
}

.special-card:hover .special-title {
    color: var(--cream);
}

.info-card:hover .info-icon {
    background: var(--ghana-green);
}

.info-card:hover .info-icon i {
    color: white;
}