body {
  font-family: 'Poppins', sans-serif;
}

.home {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5') center/cover;
  color: white;
  text-align: center;
}


.home {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 20px;
}

.teksHome h1 {
  font-size: 3rem;
  font-weight: 700;
}

.teksHome p {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.9;
}

.button {
    display: block;
    padding: 8px 15px;
    text-align: center;
    border: 1px  solid black;
    border-radius: 8px;
    text-decoration: none;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    color: #333;
    transition: background-color 0.5s, color 0.5s, border 0.5s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.button:hover {
    background-color: #ff6b35;
    border: 1px solid #ff6b35;
    color: #ffffff;
}

.section-title {
    width: 50%;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title h2 {
    font-size: 2em;
    font-weight: bold;
}

.section-title p {
    font-size: 1.2em;
}

.menu {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.line-section {
    border: 1px solid #ff6b35;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.menu-card {
            transition: all 0.3s ease;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .menu-card .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .menu-card:hover .card-img-top {
            transform: scale(1.1);
        }
        .category-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(249, 115, 22, 0.9);
            color: white;
            padding: 5px 15px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        .popular-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #ffd700, #ffa500);
            color: white;
            padding: 5px 15px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        .menu-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f97316;
        }
        .category-tab {
            cursor: pointer;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .category-tab.active {
            background: #f97316;
            color: white;
        }
        .category-tab:hover:not(.active) {
            background: #f3f4f6;
        }
        .image-placeholder {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

/* assets/style.css */
:root {
    --primary-color: #f97316;
    --secondary-color: #1f2937;
    --primary-hover: #ea580c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navbar transition */
#navbar {
    transition: all 0.3s ease;
}

#navbar.bg-white {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}

/* Home section */
.home {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.teksHome {
    animation: fadeInUp 1s ease;
}

.menu-card {
    animation: fadeIn 0.5s ease;
}

/* Loading spinner animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Mobile menu */
#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu.hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home h1 {
        font-size: 2.5rem;
    }
    
    .menu-card .card-img-top {
        height: 180px;
    }
    
    .category-tab {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    .home, .category-tabs, .order-btn {
        display: none;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}
        
        .register-container {
            width: 100%;
            max-width: 1100px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            display: flex;
            animation: slideUp 0.6s ease-out;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Left side - Illustration */
        .illustration-side {
            flex: 1;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 50px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .illustration-side::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            top: -50%;
            left: -100%;
            animation: shine 15s infinite linear;
        }
        
        @keyframes shine {
            from {
                transform: rotate(45deg) translateY(-100%);
            }
            to {
                transform: rotate(45deg) translateY(100%);
            }
        }
        
        .illustration-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .floating-icon {
            font-size: 80px;
            margin-bottom: 30px;
            animation: float 3s ease-in-out infinite;
            text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        .illustration-side h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .illustration-side p {
            font-size: 16px;
            opacity: 0.9;
            line-height: 1.8;
            max-width: 300px;
            margin: 0 auto;
        }
        
        .icon-list {
            display: flex;
            gap: 25px;
            margin-top: 40px;
            justify-content: center;
        }
        
        .icon-list i {
            font-size: 40px;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .icon-list i:hover {
            opacity: 1;
            transform: scale(1.2) rotate(5deg);
        }
        
        /* Right side - Form */
        .form-side {
            flex: 1;
            padding: 50px 40px;
            background: white;
        }
        
        .form-header {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .form-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        
        .form-header p {
            color: #666;
            font-size: 14px;
        }
        
        .user-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .input-group {
            position: relative;
            width: 100%;
        }
        
        .input-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 18px;
            transition: all 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }
        
        .input-group input,
        .input-group select {
            width: 100%;
            padding: 15px 15px 15px 50px;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #f8f9fa;
            outline: none;
            color: #333;
        }
        
        .input-group input:focus,
        .input-group select:focus {
            border-color: #667eea;
            background: white;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
        }
        
        .input-group input:focus + i {
            color: #667eea;
            transform: translateY(-50%) scale(1.1);
        }
        
        .input-group select {
            appearance: none;
            cursor: pointer;
            padding-right: 30px;
        }
        
        .input-group select option {
            background: white;
            color: #333;
        }
        
        .input-group .dropdown-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 14px;
            pointer-events: none;
            z-index: 1;
        }
        
        .btn-register {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .btn-register::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-register:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
        }
        
        .btn-register:hover::before {
            left: 100%;
        }
        
        .btn-register:active {
            transform: translateY(0);
        }
        
        .message {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 14px;
        }
        
        .message a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .message a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
        }
        
        .message a:hover {
            color: #764ba2;
        }
        
        .message a:hover::after {
            width: 100%;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .register-container {
                flex-direction: column;
                border-radius: 20px;
            }
            
            .illustration-side {
                padding: 40px 20px;
            }
            
            .floating-icon {
                font-size: 60px;
            }
            
            .illustration-side h1 {
                font-size: 28px;
            }
            
            .form-side {
                padding: 40px 20px;
            }
            
            .form-header h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .icon-list i {
                font-size: 30px;
            }
            
            .input-group input,
            .input-group select {
                padding: 12px 12px 12px 45px;
                font-size: 14px;
            }
            
            .btn-register {
                padding: 14px;
            }
        }
        
        /* Custom animation for form elements */
        .input-group {
            animation: fadeInRight 0.5s ease-out forwards;
            opacity: 0;
        }
        
        .input-group:nth-child(1) { animation-delay: 0.1s; }
        .input-group:nth-child(2) { animation-delay: 0.2s; }
        .input-group:nth-child(3) { animation-delay: 0.3s; }
        .input-group:nth-child(4) { animation-delay: 0.4s; }
        .input-group:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .btn-register {
            animation: fadeInUp 0.5s ease-out 0.6s forwards;
            opacity: 0;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .login-container {
            width: 100%;
            max-width: 1100px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            display: flex;
            animation: slideUp 0.6s ease-out;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Left side - Illustration */
        .illustration-side {
            flex: 1;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 50px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .illustration-side::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            top: -50%;
            left: -100%;
            animation: shine 15s infinite linear;
        }
        
        @keyframes shine {
            from {
                transform: rotate(45deg) translateY(-100%);
            }
            to {
                transform: rotate(45deg) translateY(100%);
            }
        }
        
        .illustration-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .floating-icon {
            font-size: 80px;
            margin-bottom: 30px;
            animation: float 3s ease-in-out infinite;
            text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        .illustration-side h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .illustration-side p {
            font-size: 16px;
            opacity: 0.9;
            line-height: 1.8;
            max-width: 300px;
            margin: 0 auto;
        }
        
        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
            text-align: left;
            width: 100%;
            max-width: 280px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 20px;
            border-radius: 15px;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
            animation: fadeInLeft 0.5s ease-out forwards;
            opacity: 0;
        }
        
        .feature-item:nth-child(1) { animation-delay: 0.2s; }
        .feature-item:nth-child(2) { animation-delay: 0.4s; }
        .feature-item:nth-child(3) { animation-delay: 0.6s; }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .feature-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }
        
        .feature-item i {
            font-size: 24px;
            width: 30px;
            text-align: center;
        }
        
        .feature-item span {
            font-size: 14px;
            font-weight: 500;
        }
        
        /* Right side - Form */
        .form-side {
            flex: 1;
            padding: 50px 40px;
            background: white;
        }
        
        .form-header {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .form-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        
        .form-header p {
            color: #666;
            font-size: 14px;
        }
        
        .login-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .input-group {
            position: relative;
            width: 100%;
        }
        
        .input-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 18px;
            transition: all 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }
        
        .input-group input {
            width: 100%;
            padding: 15px 15px 15px 50px;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #f8f9fa;
            outline: none;
            color: #333;
        }
        
        .input-group input:focus {
            border-color: #667eea;
            background: white;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
        }
        
        .input-group input:focus + i {
            color: #667eea;
            transform: translateY(-50%) scale(1.1);
        }
        
        .input-group input::placeholder {
            color: #999;
            font-size: 14px;
        }
        
        .forgot-password {
            text-align: right;
            margin-top: -10px;
        }
        
        .forgot-password a {
            color: #666;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .forgot-password a:hover {
            color: #667eea;
        }
        
        .btn-login {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-login::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
        }
        
        .btn-login:hover::before {
            left: 100%;
        }
        
        .btn-login:active {
            transform: translateY(0);
        }
        
        .btn-close {
            background: transparent;
            color: #666;
            border: 2px solid #e0e0e0;
            padding: 14px;
            border-radius: 15px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .btn-close:hover {
            background: #f8f9fa;
            border-color: #999;
            color: #333;
            transform: translateY(-2px);
        }
        
        .btn-close:active {
            transform: translateY(0);
        }
        
        .message {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 14px;
        }
        
        .message a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .message a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
        }
        
        .message a:hover {
            color: #764ba2;
        }
        
        .message a:hover::after {
            width: 100%;
        }
        
        /* Social login */
        .social-login {
            margin-top: 30px;
            text-align: center;
        }
        
        .social-login p {
            color: #999;
            font-size: 13px;
            margin-bottom: 15px;
            position: relative;
        }
        
        .social-login p::before,
        .social-login p::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30%;
            height: 1px;
            background: #e0e0e0;
        }
        
        .social-login p::before {
            left: 0;
        }
        
        .social-login p::after {
            right: 0;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border: 2px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
                border-radius: 20px;
            }
            
            .illustration-side {
                padding: 40px 20px;
            }
            
            .floating-icon {
                font-size: 60px;
            }
            
            .illustration-side h1 {
                font-size: 28px;
            }
            
            .form-side {
                padding: 40px 20px;
            }
            
            .form-header h2 {
                font-size: 28px;
            }
            
            .feature-list {
                max-width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .feature-item {
                padding: 10px 15px;
            }
            
            .input-group input {
                padding: 12px 12px 12px 45px;
                font-size: 14px;
            }
            
            .btn-login,
            .btn-close {
                padding: 14px;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }
        
        /* Custom animations for form elements */
        .input-group {
            animation: fadeInRight 0.5s ease-out forwards;
            opacity: 0;
        }
        
        .input-group:nth-child(1) { animation-delay: 0.1s; }
        .input-group:nth-child(2) { animation-delay: 0.2s; }
        
        .forgot-password {
            animation: fadeInRight 0.5s ease-out 0.3s forwards;
            opacity: 0;
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .btn-login {
            animation: fadeInUp 0.5s ease-out 0.4s forwards;
            opacity: 0;
        }
        
        .btn-close {
            animation: fadeInUp 0.5s ease-out 0.5s forwards;
            opacity: 0;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .message {
            animation: fadeIn 0.5s ease-out 0.6s forwards;
            opacity: 0;
        }
        
        .social-login {
            animation: fadeIn 0.5s ease-out 0.7s forwards;
            opacity: 0;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        