/* =====================
   GENERAL STYLES
===================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

/* =====================
   HEADER
===================== */
.site-header {
    background: #ffffff;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 100px;
    width: auto;
}

.main-nav a {
    margin-left: 2rem;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* =====================
   BANNER / HERO
===================== */
.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.banner-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

/* =====================
   CONTAINER
===================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 card satu row */
  gap: 30px; /* jarak antara card */
}
.container:last-of-type {
    padding-bottom: 3rem; /* adjust ikut suka */
}

/* =====================
   TOUR CARDS
===================== */
.flex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.img-wrapper {
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.img-wrapper:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 1rem 1.25rem;
}

.card-content h3 {
    margin: 0;
    color: #000;
}
.tour-card {
  background: #f2f2f2;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* =====================
   FOOTER
===================== */
.site-footer {
    background: #111; /* dark premium */
    color: #cfcfcf;
    font-size: 14px;
}

/* FOOTER CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* FOOTER COLUMN */
.footer-column {
    flex: 1;
}

/* FOOTER HEADING */
.footer-column h4 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

/* ACCENT LINE UNDER HEADING */
.footer-column h4::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background: #007bff;
    margin-top: 0.75rem;
}

/* FOOTER TEXT */
.footer-column p {
    margin: 0 0 0.75rem;
    line-height: 1.8;
    color: #bdbdbd;
}

/* FOOTER LINKS (kalau ada) */
.footer-column a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    background: #ffffff;
    color: #000;
    text-align: center;
    font-size: 15px;
    padding: 12px 10px;
    border-top: 1px solid #e5e5e5;
}
/* =====================
   SOCIAL ICONS
===================== */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.social:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.social.facebook { background: #1877f2; }
.social.tiktok { background: #000; }

.social.instagram {
    background: radial-gradient(circle at 30% 110%,
        #fdf497 0%, #fdf497 5%, #fd5949 45%,
        #d6249f 60%, #285aeb 90%);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column h4::after {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }
}