* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 100px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 180;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff0303;
}

.register-btn {
    background: #ff0303;
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    transition: background 0.3s;
}

.register-btn:hover {
    background: #ff0303;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 80px 80px;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: white;
    color: #ff0303;
    padding: 12px 30px;
    border: 2px solid #ff0303;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #ff0303;
    color: white;
}

.btn-secondary {
    background: white;
    color: #ff0303;
    padding: 12px 30px;
    border: 2px solid #ff0303;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ff0303;
    color: white;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Info Cards */
.info-cards {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 40px 80px;
    background: #ffd6d6;
}

.info-card {
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #ff0303;
    font-size: 24px;
}

.info-card h3 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 12px;
    color: #666;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 80px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
}

.section-label {
    color: #ff0303;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about p {
    color: #666;
    line-height: 1.8;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 80px;
    background: #f8f9fa;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #e8f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ff0303;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Menu Section */
.menu {
    padding: 80px 80px;
    background: white;
}

.menu h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-info {
    padding: 20px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.menu-item h3 {
    font-size: 18px;
    color: #1a1a1a;
}

.rating {
    color: #ffa500;
    font-size: 12px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.order-btn {
    background: #ff0303;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s;
}

.order-btn:hover {
    background: #ff0303;
}

/* Testimonials */
.testimonials {
    padding: 80px 80px;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-image {
    width: 150px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
}

.testimonial-content h4 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Catering Banner */
.catering-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(https://static.promediateknologi.id/crop/0x0:0x0/0x0/webp/photo/p2/77/2024/07/20/naspad-3733885968.jpg);
    background-size: cover;
    background-position: center;
    padding: 80px;
    text-align: center;
    color: white;
}

.catering-banner h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
}

.catering-btn {
    background: white;
    color: #ff0303;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.catering-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

/* Partners */
.partners {
    padding: 60px 80px;
    text-align: center;
    background: white;
}

.partners h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 120px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.partner-logo:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Footer */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

footer {
  background-color: #fff;
  color: #333;
  padding: 60px 8%;
  border-top: 1px solid #eee;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-section a:hover {
  color: #ff0303;
}

/* LOGO DAN PROMO */
.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.promo-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

/* NEWSLETTER */
.newsletter {
  display: flex;
  margin-bottom: 40px;
  max-width: 250px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 14px;
}

.newsletter button {
  background-color: #ff0303;
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  font-size: 18px;
}

/* SOSIAL MEDIA */
.social-links {
  display: flex;
  gap: 30px;
}

.social-link {
  background-color: #ff0303;
  color: #fff;
  font-weight: 800;
  width: 30px;
  height: 30px;
  border-radius: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s;
}

.social-link:hover {
  background-color: #ff0303;
}

/* BAGIAN BAWAH FOOTER */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
  margin-top: 30px;
  font-size: 13px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  footer {
    padding: 40px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter {
    margin: 0 auto 20px;
  }

  .social-links {
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
    header, .hero, .about, .features, .menu, .testimonials, .partners, footer {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-image img {
        width: 300px;
        height: 300px;
    }
    
    .about {
        flex-direction: column;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex-direction: column;
    }
    
    .info-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}