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

body {
  padding-top: 130px;
}

/* NAVBAR */
  .navbar-brand {
    letter-spacing: 1px;
  }
    
  .nav-link {
    position: relative;
    display: inline-block;
    color: #777777 !important;
    text-decoration: none;
  }
    
  .nav-link:hover {
    color: #000 !important;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #000;
  
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
  }

  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  #mainNavbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    transition: top 0.4s ease;
  }

  #mainNavbar.hide {
    top: -90px;
  }

  /* Saat scroll */
  #mainNavbar.scrolled {
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    background-color: white;
  }

  /* TOP BAR */
  .top-bar {
    top: 90px;
    width: 100%;
    background: #a96819;
    color: white;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .top-bar a {
    border: 1px solid white;
    padding: 6px 14px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
  }

  .top-bar a:hover {
    background: white;
    color: black;
  }
    
  .btn-dark {
      background-color: #000;
      border: none;
  }
    
  .btn-dark:hover {
      background-color: #333;
  }
    
  .btn-outline-dark:hover {
      background-color: #000;
      color: #fff;
  }
/* End NAVBAR */

/* HERO CAROUSEL */
.hero {
    height: 90vh;
    display: block;
  }
  
  .carousel,
  .carousel-item {
    height: 90vh;
  }
  
  .hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 80px 0;
  }
  
  .hero-text { max-width: 520px; }
  
  .hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .hero-btn {
    border: 2px solid black;
    padding: 10px 25px;
    border-radius: 999px;
    text-decoration: none;
    color: black;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .hero-btn:hover {
    background-color: black;
    color: white;
    transform: scale(1.05);
  }
  
  .hero-img img {
    max-height: 480px;
    transition: 0.3s ease;
  }
  
  .hero-img img:hover { transform: scale(1.05); }

  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
    align-items: center;
    pointer-events: none;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    pointer-events: auto;
    background-size: 30px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(1);
    background-size: 30px;
  }
/* End HERO CAROUSEL */
  
/* ABOUT SECTION */
.about-section {
    padding: 120px 0;
    background-color: #fff;
  }
  
  .about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
  }
  
  .about-image img {
    border-radius: 30px 30px 30px 80px;
    transition: transform 0.3s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.03);
  }
  
  
  .about-text {
    max-width: 520px;
  }
  
  .about-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .section-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 120px auto 80px;
    max-width: 1100px;
    color: #000;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 12px;
    opacity: 0.6;
  }
  
  .section-divider::before,
  .section-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ddd;
  }
  
  
  .about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 26px;
    border-radius: 999px;
    border: 2px solid black;
    text-decoration: none;
    color: black;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .about-btn:hover {
    background-color: black;
    color: white;
    transform: translateX(5px);
  }
/* End ABOUT SECTION */

/* PROMO SECTION */
  .promo-section {
    background: #000;
    padding: 120px 0;
  }

  .promo-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* Card */
  .promo-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .promo-card.dark {
    color: #fff;
  }

  .promo-card.light {
    background: #111;
    border-radius: 28px;
    padding: 60px;
    color: #fff;
  }

  /* Text */
  .promo-content {
    max-width: 480px;
  }

  .promo-content h3 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 18px;
  }

  .promo-content p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
  }

  /* Button */
  .promo-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 12px 32px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .promo-btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    transform: translateY(-3px);
  }

  .promo-btn.outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
  }

  .promo-btn.outline:hover {
    background: #fff;
    color: #000;
  }

  /* Image */
  .promo-image img {
    width: 420px;
    border-radius: 26px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .promo-image img:hover {
    transform: scale(1.05);
  }
/* End PROMO SECTION */

/* MENU SUMMARY */
  .menu-summary-section {
    padding: 120px 0;
    background: #fff;
  }

  .menu-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: 2px;
  }

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

  /* Card */
  .menu-card {
    background: #fafafa;
    border-radius: 28px;
    padding: 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

  /* Image */
  .menu-card img {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
  }

  /* Info */
  .menu-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .menu-rating {
    color: #000;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .menu-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 22px;
    line-height: 1.6;
  }

  /* Button */
  .menu-btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px 28px;
    border-radius: 999px;
    border: 2px solid #000;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
  }

  .menu-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
  }
/* End MENU SUMMARY */

/* NEWS SECTION */
  .news-section {
    padding: 120px 0;
    background-color: #fff;
  }

  .news-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .news-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .news-header p {
    color: #666;
    font-size: 1rem;
  }

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

  /* Card */
  .news-card {
    background: #fafafa;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

  .news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* Content */
  .news-content {
    padding: 20px;
  }

  .news-date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    display: block;
    margin-bottom: 8px;
  }

  .news-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .news-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* Link */
  .news-link {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    transition: all 0.2s ease;
  }

  .news-link:hover {
    color: #000;
    transform: translateX(5px);
  }

  /* CTA */
  .news-cta {
    text-align: center;
    margin-top: 60px;
  }

  .news-btn {
    display: inline-block;
    padding: 12px 34px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .news-btn:hover {
    background: #222;
    transform: translateY(-3px);
  }
/* End NEWS SECTION */

/* FOOTER */
  .gaga-footer {
    background: #0b1a2a;
    color: #e3edf7;
    padding-top: 80px;
  }

  /* GRID */
  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1.4fr;
    gap: 60px;
    padding-bottom: 60px;
  }

  /* LOGO */
  .footer-brand img {
    width: 110px;
  }

  /* COLUMN */
  .footer-col h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
  }

  .footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5e1;
  }

  /* WHATSAPP */
  .footer-wa {
    margin-top: 15px;
    font-weight: 600;
    color: #41d999;
  }

  .footer-wa i {
    margin-right: 8px;
  }

  /* BOTTOM */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
  }

  .footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-bottom p {
    font-size: 0.85rem;
    color: #b4c1d1;
  }

  .footer-bottom a {
    color: #b4c1d1;
    text-decoration: none;
  }

  .footer-bottom a:hover {
    text-decoration: underline;
  }

  /* SOCIAL */
  .footer-social {
    display: flex;
    gap: 14px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s;
  }

  .footer-social a.youtube:hover {
    background: #ff0000;
    color: #000;
  }

  .footer-social a.instagram:hover {
    background: #d33f9f;
    color: #000;
  }

  .footer-social a.twitter:hover {
    background: #323beb;
    color: #0b1a2a;
  }

  .footer-social a.linkedin:hover {
    background: #2e73dc;
    color: #0b1a2a;
  }
/* End FOOTER */

/* Responsive Breakpoint */
 @media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 420px;
  }

  .promo-card {
    flex-direction: column;
    text-align: center;
  }

  .promo-image img {
    width: 100%;
    max-width: 360px;
  }

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

  .menu-card img {
    width: 160px;
  }

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

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

  .footer-bottom-wrap {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .hero {
    height: auto;
    padding-top: 40px;
  }

  .carousel,
  .carousel-item {
    height: auto;
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 0 !important;
    gap: 20px;
  }

  .hero-text h1 {
    font-size: 2.2rem !important;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-img img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  /* Tombol navigasi carousel agar tidak menutupi gambar */
  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
    top: 50%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 20px;
  }
}

@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 1.9rem !important;
  }

  .hero-img img {
    max-width: 280px;
  }
}