/* Restaurant Styling */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D4AF37;
    --accent-color: #C41E3A;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #f5f5f5;
    --border-color: #ddd;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Palatino', serif;
    background-color: #fafaf8;
    color: var(--text-dark);
    line-height: 1.6;
}

.rest-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Back to Portfolio Button */
.back-to-portfolio {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: linear-gradient(135deg, #8B4513 0%, #C41E3A 100%);
    border-radius: 8px;
    box-shadow: var(--shadow-large);
}

.back-link {
    display: block;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
    letter-spacing: 1px;
}

/* Navigation */
.restaurant-navbar {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--secondary-color);
}

.restaurant-navbar .rest-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.restaurant-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.logo-icon {
    font-size: 40px;
}

.restaurant-logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: bold;
    letter-spacing: 2px;
}

.restaurant-logo p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
    letter-spacing: 1px;
}

.rest-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
}

.rest-nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.rest-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.rest-nav-link:hover::after,
.rest-nav-link.active::after {
    width: 100%;
}

.rest-nav-link:hover {
    color: var(--secondary-color);
}

.cart-button {
    position: relative;
}

.cart-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    min-height: 600px;
}

.hero-section .rest-container {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    padding: 0 40px;
}

.hero-content h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
    opacity: 0.7;
}

.hero-content h1 {
    font-size: 72px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-background {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    font-size: 300px;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

/* Buttons */
.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #C41E3A 100%);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-family: inherit;
    box-shadow: var(--shadow);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    letter-spacing: 2px;
}

.cta-btn-light {
    background: linear-gradient(135deg, #C41E3A 0%, #8B4513 100%);
}

.secondary-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.secondary-btn:hover {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    background: white;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--secondary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Highlights Section */
.highlights-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    padding: 80px 0;
}

.highlights-section h2 {
    font-size: 48px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.highlight-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513 0%, #C41E3A 100%);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.highlight-number {
    font-size: 60px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.7;
    line-height: 1.8;
}

/* Reservation Section */
.reservation-section {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.reservation-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.reservation-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Info Section */
.info-section {
    background: white;
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Menu Section */
.menu-header {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.menu-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.menu-header p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.menu-section {
    padding: 60px 0;
    background: white;
}

.category-title {
    font-size: 32px;
    color: var(--primary-color);
    margin: 60px 0 40px 0;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary-color);
    letter-spacing: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.item-image {
    font-size: 80px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    border-bottom: 2px solid var(--secondary-color);
}

.menu-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    padding: 20px 20px 10px;
}

.item-description {
    padding: 0 20px;
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.7;
    flex-grow: 1;
}

.item-meta {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-color);
}

.add-btn {
    background: linear-gradient(135deg, #8B4513 0%, #C41E3A 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.add-btn:hover {
    transform: scale(1.05);
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.cart-modal.show {
    display: flex;
    justify-content: flex-end;
}

.cart-content {
    background: white;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(400px); }
    to { transform: translateX(0); }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #8B4513 0%, #C41E3A 100%);
    color: white;
}

.cart-header h2 {
    margin: 0;
    font-size: 24px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.close-cart:hover {
    transform: scale(1.2);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    color: var(--text-dark);
    opacity: 0.5;
    padding: 40px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--light-bg);
    margin-bottom: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: #f0f0f0;
}

.item-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.item-name {
    font-weight: 500;
    color: var(--primary-color);
}

.item-price {
    color: var(--accent-color);
    font-weight: bold;
}

.remove-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    transform: scale(1.1);
}

.cart-summary {
    background: var(--light-bg);
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    border-top: 2px solid var(--border-color);
    padding-top: 12px;
    margin-top: 12px;
}

.checkout-btn {
    background: linear-gradient(135deg, #8B4513 0%, #C41E3A 100%);
    color: white;
    border: none;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 16px;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    transform: scale(1.02);
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.story-section {
    background: white;
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.story-content p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.8;
}

.story-image {
    text-align: center;
}

.image-placeholder {
    font-size: 200px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.image-caption {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.6;
    font-style: italic;
}

.team-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    padding: 80px 0;
    text-align: center;
}

.team-section h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.member-avatar {
    font-size: 80px;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.role {
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.bio {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.7;
}

.values-section {
    background: white;
    padding: 80px 0;
}

.values-section h2 {
    font-size: 48px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.7;
}

.awards-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    padding: 80px 0;
    text-align: center;
}

.awards-section h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.award-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-large);
}

.award-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.award-item h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.award-item p {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.7;
}

.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 48px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
    cursor: pointer;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.7;
}

/* Gallery Section */
.gallery-header {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.gallery-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.gallery-header p {
    font-size: 18px;
    opacity: 0.9;
}

.gallery-section {
    background: white;
    padding: 60px 0;
}

.gallery-category {
    font-size: 32px;
    color: var(--primary-color);
    margin: 60px 0 40px 0;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary-color);
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.gallery-image {
    font-size: 80px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    border-bottom: 2px solid var(--secondary-color);
}

.gallery-image.large {
    font-size: 120px;
    padding: 40px 20px;
}

.gallery-item h3 {
    font-size: 16px;
    color: var(--primary-color);
    padding: 15px 15px 10px;
    margin: 0;
}

.gallery-item p {
    font-size: 12px;
    color: var(--text-dark);
    opacity: 0.7;
    padding: 0 15px 15px;
    margin: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-author {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Section */
.contact-header {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-header p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-info-section {
    background: white;
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--secondary-color);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 10px;
}

.info-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.info-link:hover {
    letter-spacing: 1px;
}

.note {
    font-size: 12px !important;
    opacity: 0.6 !important;
}

.reservation-form-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    padding: 80px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-box h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.info-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-box h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-item {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.delivery-item h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.delivery-item p {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 5px 0;
}

.delivery-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.delivery-item a:hover {
    text-decoration: underline;
}

.cta-section {
    margin-top: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #fff 100%);
    border: 2px solid #28a745;
    color: #155724;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 16px;
    margin-bottom: 20px;
}

.social-section {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.social-section h2 {
    font-size: 48px;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.social-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.social-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.social-card p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-card form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-card input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
}

.social-card button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: inherit;
}

.social-card button:hover {
    transform: scale(1.05);
}

/* Footer */
.restaurant-footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: white;
    padding: 50px 0 20px;
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 13px;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    opacity: 0.7;
}

.demo-note {
    margin-top: 8px;
    font-size: 12px;
    font-style: italic;
    opacity: 0.5;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-large);
    font-weight: bold;
    z-index: 2000;
    opacity: 0;
    animation: slideInUp 0.3s ease forwards, slideOutDown 0.3s ease 2.7s forwards;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .back-to-portfolio {
        top: 10px;
        right: 10px;
    }

    .back-link {
        padding: 10px 15px;
        font-size: 12px;
    }

    .restaurant-navbar .rest-container {
        flex-direction: column;
        gap: 20px;
    }

    .rest-nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 0;
        gap: 30px;
    }

    .hero-image {
        font-size: 150px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-image {
        font-size: 100px;
    }

    .category-filter {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

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

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

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cart-content {
        max-width: 100%;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .restaurant-logo h1 {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-image {
        font-size: 80px;
    }

    .menu-header h1,
    .about-hero h1,
    .gallery-header h1,
    .contact-header h1 {
        font-size: 32px;
    }

    .features-section h2,
    .highlights-section h2,
    .team-section h2,
    .values-section h2,
    .awards-section h2,
    .faq-section h2,
    .social-section h2 {
        font-size: 28px;
    }

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

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.notification.show {
    animation: slideInUp 0.3s ease forwards;
}
