 :root {
            --primary: #ff6b8b;
            --secondary: #4ecdc4;
            --sand: #f8f9fa;
            --cream: #ffffff;
            --blue-light: #e3f2fd;
            --blue-dark: #2c3e50;
            --gray: #6c757d;
            --light-gray: #e9ecef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.6;
            color: var(--blue-dark);
            background-color: var(--cream);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.02em;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.98);
            transition: all 0.3s ease;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-family: 'Outfit', sans-serif;
        }
        
        .logo i {
            margin-right: 8px;
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 28px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--blue-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .cart-icon {
            position: relative;
            margin-left: 28px;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        /* Slideshow Section */
        .slideshow {
            margin-top: 80px;
            height: 70vh;
            position: relative;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .slide-content {
            max-width: 600px;
            padding: 0 20px;
            transform: translateY(30px);
            transition: transform 0.8s ease;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
        }
        
        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-weight: 600;
        }
        
        .slide-content p {
            font-size: 1.1rem;
            margin-bottom: 24px;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            font-weight: 400;
        }
        
        .slide-controls {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }
        
        .slide-dot {
            width: 10px;
            height: 10px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin: 0 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slide-dot.active {
            background-color: white;
            transform: scale(1.2);
        }
        
        .slide-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .slide-nav:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .slide-prev {
            left: 20px;
        }
        
        .slide-next {
            right: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        
        .btn:hover {
            background-color: #ff4d73;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 139, 0.3);
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: var(--sand);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 40px 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: var(--blue-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--blue-dark);
            font-weight: 600;
        }
        
        .feature-card p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.6;
            font-weight: 400;
        }
        
        /* Products Section */
        .products {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--blue-dark);
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem;
            font-weight: 400;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-image {
            height: 180px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-category {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 8px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        
        .orca {
            background-color: var(--blue-light);
            color: var(--blue-dark);
        }
        
        .gurita {
            background-color: #e8f5e9;
            color: #2e7d32;
        }
        
        .whayles {
            background-color: #fff3e0;
            color: #e65100;
        }
        
        .product-info h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--blue-dark);
            font-weight: 600;
        }
        
        .product-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        
        .product-actions {
            display: flex;
            justify-content: space-between;
        }
        
        .btn-detail {
            background-color: transparent;
            border: 1px solid var(--light-gray);
            color: var(--blue-dark);
            padding: 8px 16px;
            font-size: 0.85rem;
            border-radius: 20px;
        }
        
        .btn-detail:hover {
            background-color: var(--light-gray);
        }
        
        .btn-cart {
            background-color: var(--primary);
            color: white;
            padding: 8px 16px;
            font-size: 0.85rem;
            border-radius: 20px;
        }
        
        /* Cafe Section */
        .cafe {
            padding: 80px 0;
            background-color: var(--sand);
        }
        
        .cafe-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .cafe-image {
            flex: 1;
            min-width: 300px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .cafe-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s ease;
        }
        
        .cafe-image:hover img {
            transform: scale(1.03);
        }
        
        .cafe-info {
            flex: 1;
            min-width: 300px;
        }
        
        .cafe-info h3 {
            font-size: 1.8rem;
            margin-bottom: 16px;
            color: var(--blue-dark);
            font-weight: 600;
        }
        
        .cafe-info p {
            margin-bottom: 16px;
            color: var(--gray);
            line-height: 1.6;
            font-weight: 400;
        }
        
        .menu-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        
        .menu-item {
            background-color: white;
            border-radius: 8px;
            padding: 15px 10px;
            text-align: center;
            transition: transform 0.2s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .menu-item:hover {
            transform: translateY(-3px);
        }
        
        .menu-item i {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 8px;
        }
        
        .menu-item h4 {
            font-size: 0.9rem;
            margin-bottom: 4px;
            font-weight: 600;
        }
        
        .menu-item p {
            font-size: 0.8rem;
            color: var(--gray);
            margin: 0;
            font-weight: 400;
        }
        
        /* Spots Section */
        .spots {
            padding: 80px 0;
        }
        
        .spots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .spot-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .spot-card:hover {
            transform: translateY(-5px);
        }
        
        .spot-image {
            height: 160px;
            overflow: hidden;
        }
        
        .spot-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .spot-card:hover .spot-image img {
            transform: scale(1.05);
        }
        
        .spot-info {
            padding: 20px;
            text-align: center;
        }
        
        .spot-info h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--blue-dark);
            font-weight: 600;
        }
        
        .spot-info p {
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 400;
        }
        
        /* Footer */
        footer {
            background-color: var(--blue-dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.2s ease;
            font-size: 0.9rem;
            font-weight: 400;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .social-link:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
            font-weight: 400;
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 12px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .slideshow {
                height: 60vh;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .features, .products, .cafe, .spots {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .slide-nav {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .slide-prev {
                left: 10px;
            }
            
            .slide-next {
                right: 10px;
            }
        }