/* 1. Reset & Global Styles */
/* --- 1. Base Setup --- */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: 'Lexend', sans-serif;
}



html {
    height: 100%;
     margin: 0;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Mencegah scroll horizontal */
}




/* --- Hero Section --- */
.hero {
    
    padding: 80px 8% 120px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow:  hidden;
    padding-top: 100px; 
    margin-top: 60px;
    position: relative;
}

.hero-container {
     display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 80vh; 
}

.hero-content {
 flex: 1;
    opacity: 0;
    /* Muncul berbarengan saat logo mulai bergeser ke kanan (detik ke 1.2) */
    animation: fadeInContent 0.8s ease-out 1.2s forwards;
}

#typing-text.typing::after {
    content: '|';
    color: #2d5a27; /* Warna hijau sesuai brand Anda */
    animation: blink 0.7s infinite;
}

.badge {
    background: #e8f5e9;
    color: #2d5a27;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
  .badge {
    display: inline-block; /* Pastikan display bukan inline agar margin bekerja maksimal */
    margin-top: 50px; 
    margin-bottom: 15px;
  }
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #1e3d1a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.subjudul {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Sembunyikan konten tambahan di awal */
.hide-initial {
    opacity: 0;
    transform: scale(0.5); /* Mulai dari ukuran kecil */
    transition: none;
}

/* Class yang akan ditambahkan setelah judul selesai diketik */
.zoom-in-content {
    animation: zoomInEffect 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes zoomInEffect {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
}

.hero-features i {
    color: #2d5a27;
}

/* Buttons */
.hero-cta {
    display: flex;
    gap: 15px;
    align-items: center;
     margin-top: 25px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #2d5a27;
    color: white;
}

.btn-secondary {
    background: white;
    color: #2d5a27;
    border: 2px solid #2d5a27;
}

.btn-primary:hover, .btn-secondary:hover { 
    transform: translateY(-3px); 
}

.btn-primary:hover { background: #1e3d1a; }
.btn-secondary:hover { background: #f0f4ef; }

/* Hero Image Area */
.hero-image {
   flex: 1.5;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
}

.image-wrapper {
    width: 100%;
    max-width: 850px;
    position: relative;
    z-index: 1;
}

.image-wrapper img {
     width: 100%;
    max-width: 500px;
    height: auto;
    /* Durasi total 2.5s */
    animation: zoomThenMove 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: white;
    padding: 20px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 10;
}

.experience-badge strong { font-size: 1.5rem; color: #2d5a27; display: block; }
.experience-badge span { font-size: 0.8rem; color: #777; }

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes zoomThenMove {
    0% { transform: translate(calc(-50vw + 50%), 0) scale(0); opacity: 0; }
    40% { transform: translate(calc(-50vw + 50%), 0) scale(1); opacity: 1; }
    60% { transform: translate(calc(-50vw + 50%), 0) scale(1); } /* Hold di tengah sebentar */
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes fadeInContent {
    to { opacity: 1; }
}
/* Animasi Teks */
.hero-content {
     flex: 1;
    opacity: 0;
    animation: fadeInContent 1s ease-out 1.2s forwards;
}

@keyframes fadeInContent {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* --- 1. NAVIGASI & LOGO --- */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #2d5a27;
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo span {
    line-height: 1.2;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}

.logo strong {
    color: #1e3d1a;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
  text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative; /* Dasar untuk posisi garis bawah */
    padding: 10px 0; /* Memberi ruang untuk garis agar tidak menempel teks */
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d5a27;
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: #2d5a27;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:not(.btn-reservasi)::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Sesuaikan jarak garis dari teks */
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #2d5a27;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    pointer-events: none;
}

/* Efek Hover & Aktif (Hanya untuk Link Teks) */
.nav-links li a:not(.btn-reservasi):hover::after,
.nav-links li a.active:not(.btn-reservasi)::after {
    width: 100%; /* Garis memanjang penuh */
}



/* Tombol Reservasi */
.btn-reservasi {
    background: linear-gradient(135deg, #2d5a27 0%, #4a8a3f 100%) !important;
    color: white !important;
    padding: 12px 32px !important; 
    border-radius: 50px !important; /* Membuat bentuk oval */
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap !important; 
    border: none !important;
    transition: 0.3s !important;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

/* Pastikan tidak ada garis bawah sama sekali untuk tombol ini */
.btn-reservasi::after {
    display: none !important; 
    content: none !important;
}

.btn-reservasi:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #4a8a3f 0%, #2d5a27 100%) !important;
}

.btn-reservasi:active {
    transform: scale(0.98);
}

/* --- 2. HERO SECTION --- */
.hero {
    position: relative;
    padding: 80px 8% 120px;
    background: linear-gradient(135deg,   #CCE5CF 30%,  #FDFAF6  53%  );
    min-height: 85vh;
    display: flex;
   
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* Jarak antara teks dan gambar */
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1.2; /* Beri ruang lebih untuk teks */
    text-align: left;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text span {
    color: #2d5a27;
}

.hero-text p {
    font-weight: 300;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    flex: 0.8; /* Gambar sedikit lebih kecil dari teks */
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto; /* JANGAN gunakan 400px fixed agar tidak gepeng */
    border-radius: 30px 80px 30px 80px;
    object-fit: cover;
    /* Efek melayang tanpa kesan bingkai */
    filter: drop-shadow(0 20px 15px rgba(0, 0, 0, 0.15));
   
}
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column; /* Tumpuk atas bawah di layar kecil */
        text-align: center;
    }
    .hero-text {
        order: 1;
    }
    .hero-image {
        order: 2;
        justify-content: center;
    }
}
/* --- 3. QUICK ACCESS CARD --- */
.quick-access-container {
    width: 100%;
    max-width: 1300px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.quick-access-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    border-left: 8px solid #2d5a27;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.icon-main {
    background: #f0f7ef;
    color: #2d5a27;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.card-content {
    flex: 1.5;
    padding: 0 40px;
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.card-footer {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* --- petunjuk arah --- */
.btn-maps-modern {
    background: #2d5a27;
    padding: 15px 30px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-maps-modern:hover {
    background: #1e3d1a;
    transform: translateY(-2px);
}

/* --- 4. RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        justify-content: center;
    }

    .quick-access-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .card-content {
        border-left: none;
        border-right: none;
        padding: 20px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .card-footer {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .quick-access-container {
        margin: 20px auto;
    }
}




/* --- 1. KOMPONEN UMUM & TOMBOL --- */
.services-action, 
.process-action {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px; 
    margin-bottom: 40px;
    clear: both;
    font-family: 'Lexend', sans-serif;
}





/* Tombol Outline (Reusable) */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2d5a27;
    border: 2px solid #2d5a27;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-outline:hover {
    background-color: #2d5a27;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.15);
}

/* --- 2. SECTION LAYOUT --- */
.process-section {
    padding-top: 30px;
    padding-bottom: 50px;
}

.gallery-section {
    width: 100%;
    margin: 0;
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ef 0%, #ffffff 50%, #f9fbf8 100%) !important;
    overflow: hidden;
}

.gallery-full-wrapper {
   display: flex;
    align-items: center;       /* Supaya teks rata tengah secara vertikal terhadap gambar */
    justify-content: space-between;
    gap: 60px;                 /* Memberikan jarak antara kolom teks dan kolom gambar */
    max-width: 1200px;         /* Batas lebar maksimal konten */
    margin: 0 auto;            /* Agar konten berada di tengah layar */
    padding: 0 20px; 
}

.gallery-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: rgba(98, 157, 90, 0.05); /* Hijau sangat transparan */
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-top: -30px;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* --- 3. TIMELINE (MOBILE FIRST) --- */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 20px; /* Default posisi kiri untuk Mobile */
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    padding-left: 50px; /* Ruang untuk garis/dot */
    box-sizing: border-box;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #2d5a27;
    border: 3px solid #fff;
    border-radius: 50%;
    left: 13px; /* Tengah garis */
    top: 25px;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-content {
    background: #f9fbf9;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #78a962;
    transition: all 0.3s ease;
}

.timeline-content p {
    line-height: 1.5; /* Jarak baris teks yang ideal */
    margin-top: 5px;  /* Jarak antara judul (01, 02) dengan teks penjelas */
}

.timeline-item:hover .timeline-dot {
    background-color: #52b788;
    transform: scale(1.3);
}

/* --- 4. NAVIGATION & HAMBURGER --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2d5a27;
    margin: 4px 0;
    transition: 0.4s;
}

/* --- 5. MEDIA QUERIES --- */

/* --- TABLET & DESKTOP (Min-width 768px) --- */
@media (min-width: 768px) {
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
        padding-left: 0;
        margin-bottom: 30px;
    }

    /* Pengaturan Kiri-Kanan */
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 50px;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: 50px;
        text-align: left;
    }

    /* Posisi Dot & Aksen Border */
    .timeline-item:nth-child(odd) .timeline-dot {
        left: auto;
        right: -8px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: -8px;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        border-left: none;
        border-right: 5px solid #78a962;
    }
    
    .timeline-item:hover .timeline-content {
        transform: translateY(-5px);
    }
}


.about-section {
    position: relative;
    width: 100%; /* Agar responsif, atau gunakan 1000px jika ingin fix */
    max-width: 1000px;
    height: 550px;
    margin: 50px auto;
    overflow: visible; /* Diubah agar box hijau bisa sedikit keluar jika perlu */
    color: white;
}

.background-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('assets/image/rrt.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    border-radius: 8px;
}

/* Bingkai Garis Putih */
.white-frame {
    position: absolute;
    top: 40px;
    left: 60px;
    right: 40px;
    bottom: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
    display: flex;
    justify-content: flex-end; /* Judul di kanan */
    align-items: center;
    padding-right: 50px;
    pointer-events: none; /* Agar tidak menghalangi klik pada tombol */
}

.main-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif; /* Pastikan font ini di-import */
    line-height: 1.1;
    text-align: right;
    max-width: 500px;
    color: white;
}

.text-accent {
    color: #ffffff; /* Bisa diubah ke hijau muda jika ingin variasi */
    font-style: italic;
}

/* Box Hijau (Konten) */
.content-box {
    position: absolute;
    bottom: -20px; /* Sedikit menjuntai ke bawah agar estetik */
    left: 40px;
    width: 400px;
    background-color: #2d4619; /* Hijau Tua */
    padding: 40px;
    z-index: 10;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.3);
}

.main-p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sub-p {
    font-size: 0.95rem;
    color: #bdc3c7;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Tombol */
.btn-elegant {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #40632a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-elegant:hover {
    background: #4e7a33;
    transform: translateY(-2px);
}
/* Pengaturan khusus untuk HP (Layar di bawah 768px) */
@media (max-width: 767px) {
   .white-frame {
        width: 100%;
        text-align: center; /* Membuat teks "Mengapa Bahtera" di tengah */
        margin-bottom: -30px; /* Mengatur tumpang tindih dengan box hijau */
        z-index: 10;
    }

    .main-title {
        font-size: 1.8rem; /* Perkecil ukuran judul */
        line-height: 1.2;
    }

   .container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Meratakan secara horizontal ke tengah */
        justify-content: center; /* Meratakan secara vertikal jika dibutuhkan */
        width: 100%;
        padding: 0 15px; /* Memberi jarak aman agar tidak menempel ke pinggir layar */
        box-sizing: border-box;
    }

    .content-box {
        width: 100%; /* Mengikuti lebar container */
        max-width: 90%; /* Memberi sedikit ruang di sisi kiri-kanan agar cantik */
        margin: 0 auto; /* Kunci utama agar elemen berada di tengah */
        left: 0; /* Reset jika sebelumnya ada properti left/right */
        right: 0;
        position: relative; /* Pastikan tidak absolute yang mengarah ke kanan */
        padding: 40px 20px; /* Sesuaikan padding dalam box */
        box-sizing: border-box;
    }

    .main-p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .sub-p {
        font-size: 0.9rem;
    }
    
    .btn-elegant {
        width: 100%; /* Tombol melebar di HP agar mudah diklik */
        justify-content: center;
    }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .heading-line { margin: 0 auto 30px; }
    .btn-elegant { justify-content: center; }
}

.process-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.header-text {
    margin-bottom: 80px;
}
.subtitle {
    color: #a3c14a;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-block;
    position: relative;
    padding-bottom: 8px; /* Memberi ruang untuk garis */
}

.subtitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0; /* Menempel ke kiri tulisan */
    width: 60%;
    height: 1px;
    background: #a3c14a;
}

.header-text h1 {
    color: #2d4d33;
    font-size: 32px;
    margin-top: 15px;
}

/* Layout Kartu */
.card-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.card {
    background: #fff;
    border: 2px solid #a3c14a;
    border-radius: 25px;
    padding: 100px 25px 40px; /* Padding atas lebih besar untuk ruang gambar */
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Gambar Lingkaran Melayang */
.image-circle {
    position: absolute;
    top: -60px; /* Setengah gambar keluar dari kartu */
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h3 {
    color: #2d4d33;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

/* Responsif untuk layar HP */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
        gap: 80px; /* Jarak lebih jauh agar gambar tidak menabrak kartu atasnya */
    }
    
    .header-text h1 {
        font-size: 24px;
    }
}

/* --- IPAD & TABLET RESPONSIVE (768px - 1024px) --- */
@media (min-width: 600px) and (max-width: 1024px) {
    
    /* 1. Values Section: Ubah dari 4 kolom ke 2 kolom */
    .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
        padding: 0 40px;
    }
}
/* --- 5. GLOBAL RESPONSIVE --- */
@media (max-width: 750px) {
    /* About */
    .about-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .about-text { max-width: 100%; }
    .about-text h2::after { margin: 10px auto; }
    .about-image img { max-width: 250px; }

    /* Values */
    .section-title { font-size: 2rem; }
    .values-grid { gap: 20px; }

    /* Vision Mission */
    .vm-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .vm-card { width: 100%; }
}
/* --- GAYA UNTUK LINK YANG SEDANG AKTIF --- */

/* --- 1. NAVIGASI (Status Aktif) --- */
.nav-links li a {
    position: relative;
    transition: 0.3s;
}

/* Garis bawah default (disembunyikan) */
.nav-links li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2d5a27;
    transition: 0.3s;
}

/* State Aktif untuk Link Biasa */
.nav-links li a.active:not(.btn-reservasi) {
    color: #2d5a27 !important;
    font-weight: bold;
}

.nav-links li a.active:not(.btn-reservasi)::after {
    width: 100% !important;
}

/* State Aktif untuk Tombol Reservasi */
.nav-links li a.btn-reservasi.active {
    background: #2d5a27 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.nav-links li a.btn-reservasi.active::after {
    display: none; /* Reservasi tidak pakai garis bawah */
}

/* --- 2. ANIMASI HERO --- */
@keyframes slideFromLeft {
    0% { opacity: 0; transform: translateX(-100px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideFromRight {
    0% { opacity: 0; transform: translateX(100px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-text h1 {
    animation: slideFromLeft 0.8s ease-out forwards;
}

.hero-text p {
    opacity: 0;
    animation: slideFromLeft 0.9s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-image img {
    animation: slideFromRight 1s ease-out forwards;
}

/* --- 3. TOMBOL & ACTION --- */
/* Base Style untuk Tombol Outline & Secondary */
.btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: transparent;
    color: #2d5a27;
    border: 2px solid #2d5a27;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary { margin-top: 20px; }

/* Hover States */
.btn-secondary:hover, .btn-outline:hover {
    background-color: #2d5a27;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.2);
    transform: translateY(-3px);
}

.btn-secondary:hover i { transform: translateX(5px); }
.btn-outline:hover i { transform: rotate(90deg); }

/* Container Action */
.services-action {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -30px; 
    padding-bottom: 20px; 
    position: relative;
    z-index: 10;
}

/* Pastikan grid menggunakan flexbox */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Jarak antar card */
    align-items: stretch; /* Ini yang membuat tinggi card sama rata */
}

.service-card {
    display: flex;
    flex-direction: column; /* Menyusun konten dari atas ke bawah */
    width: 100%;
    max-width: 350px; /* Sesuaikan lebar card */
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex-grow: 1; /* Membuat konten mengisi ruang kosong */
}

.service-info {
    flex-grow: 1; /* Dorong tombol ke paling bawah */
}

/* Membatasi tinggi judul agar sama rata */
.service-info h3 {
    min-height: 50px; /* Atur agar judul 2 baris tetap sama tinggi */
    margin-bottom: 10px;
}

/* Membatasi teks deskripsi agar tepat 3 baris dan ada titik-titik (...) */
.service-info p {
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.8em; /* Menjaga area teks tetap ada meski teksnya pendek */
    line-height: 1.6;
}

.card-action {
    margin-top: auto; /* Memastikan tombol selalu di dasar card */
    padding-top: 15px;
}

.gallery-container {
  display: flex;
    width: 100%; /* Menghapus max-width agar full ke pinggir */
    max-width: 100% !important; 
    align-items: center;
    gap: 40px;
    padding: 0 5%;
}

/* Kiri: Info */
.gallery-info {
     flex: 1;                   /* Mengambil porsi ruang teks */
    max-width: 450px; 
}

.subtitle {
    color: #629d5a;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.gallery-info h2 {
    font-size: 2.5rem;
    color: #2d4a27;
    margin: 10px 0;
    line-height: 1.2;
}

.divider {
    width: 60px;
    height: 4px;
    background: #629d5a;
    margin-bottom: 20px;
}

.gallery-info p {
    font-size: 1.2rem; /* Font deskripsi diperbesar */
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .gallery-full-wrapper {
        display: flex;
        flex-direction: column-reverse; /* Memutar urutan: Slider di atas, Info di bawah */
        gap: 30px; /* Memberi jarak antara gambar dan teks */
    }

    .gallery-info {
        text-align: center; /* Opsional: Membuat teks rata tengah di mobile agar lebih rapi */
       order: 2; /* Muncul kedua (di bawah gambar) */
    width: 100%;
    max-width: 800px; 
    }

    .gallery-slider {
        width: 100%;
    }

    /* Memposisikan navigasi panah agar tetap rapi di bawah teks atau di antara gambar */
    .nav-wrapper {
        justify-content: center;
        margin-top: 20px;
    }
}

/* Navigasi */
.nav-wrapper {
    display: flex;
    gap: 15px;
}

.swiper-button-next-custom, .swiper-button-prev-custom {
    width: 55px;
    height: 55px;
    border: 2px solid #629d5a;
    color: #629d5a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next-custom:hover, .swiper-button-prev-custom:hover {
    background: #629d5a;
    color: white;
}

/* Kanan: Slider */
.gallery-slider {
  flex: 1.2;                 /* Memberikan porsi ruang lebih besar untuk gambar */
    min-width: 0;   
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 450px; /* Lebar card */
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

/* Mengatur ukuran maksimal jendela gambar saat membesar */
.fancybox__content {
    max-width: 800px !important; /* Sesuaikan lebar maksimal yang kamu inginkan */
    max-height: 80vh !important; /* Maksimal 80% dari tinggi layar */
    border-radius: 12px; /* Agar sudutnya melengkung rapi seperti slide kamu */
    overflow: hidden;
}

/* Mengatur latar belakang agar tidak terlalu gelap (optional) */
.fancybox__backdrop {
    background: rgba(0, 0, 0, 0.7);
}

.swiper-slide img {
   width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
}

#slide-title, #slide-desc {
     transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Tambahan: Pastikan tinggi container info tetap konsisten */
.gallery-info {
    min-height: 300px; /* Atur sesuai kebutuhan agar layout tidak goyang saat teks berubah panjang */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .gallery-container {
        flex-direction: column;
        text-align: center;
    }
    .divider { margin: 0 auto 20px; }
    .nav-wrapper { justify-content: center; }
}

@media (max-width: 992px) {
    .gallery-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .gallery-info h2 {
        font-size: 2.5rem;
        /* Tambahkan ini juga di judul agar judul tidak nanggung */
        text-wrap: balance; 
    }

    /* Tambahkan selector untuk teks deskripsinya di sini */
    .gallery-info p {
        font-size: 1rem;      /* Sesuaikan ukuran font HP */
        text-wrap: balance;   /* JURUS AMPUH: Menyeimbangkan jumlah kata tiap baris */
        max-width: 90%;       /* Membatasi lebar agar tidak mentok ke pinggir layar */
        margin: 0 auto;       /* Memastikan teks tetap di tengah setelah di-limit lebarnya */
        line-height: 1.6;     /* Memberi ruang antar baris agar lebih enak dibaca */
    }

    .swiper-slide {
        width: 85vw;
        height: 450px;
    }
}

/* Tambahan untuk responsif di HP */
@media (max-width: 768px) {
    .gallery-full-wrapper {
        flex-direction: column; /* Teks akan pindah ke atas gambar di layar kecil */
        gap: 30px;
        text-align: center;
    }
    
    .subtitle::after {
        margin: 8px auto 0;    /* Garis bawah jadi di tengah saat mode mobile */
    }
}


/* --- 5. FOOTER STYLING --- */
.main-footer {
    background-color: #1e3d1a;
    color: #ffffff;
    padding-top: 50px !important;    /* Jarak dari atas footer ke konten */
    padding-bottom: 0 !important;  
    font-family: 'Lexend', sans-serif;
    margin-top: 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px; /* Tambahkan batas lebar maksimal */
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
   display: flex;
    flex-direction: column;
    align-items: flex-start; /* Memastikan logo dan elemen flex lainnya berbaris di kiri */
}

.footer-brand .footer-logo {
    height: 80px;
    margin-bottom: 15px;
    display: block;   /* Dorong dari kanan */
}

.footer-brand h3 {
     font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f1f8f1;
    font-weight: 700;
}


.footer-brand p {
   line-height: 1.6;
    opacity: 0.8;/* Opsional: Membatasi lebar teks agar enak dibaca saat rata kiri */
}

.main-footer h4 {
     color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    
}

.main-footer h4::after {
   content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #78a962;
}

/* 1. KODE UTAMA (UNTUK LAPTOP) - Taruh di Atas */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 0.8fr; /* 3 Kolom sejajar kiri */
    text-align: left; /* Rata kiri agar elegan di laptop */
}



/* 2. KODE RESPONSIF (UNTUK HP) - Taruh di Paling Bawah */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolom */
        text-align: center; /* Rata tengah agar rapi di layar sempit */
    }
    
    .footer-contact ul li {
        justify-content: center; /* Ikon & teks alamat pindah ke tengah */
    }

    .main-footer h4::after {
        left: 50%;
        transform: translateX(-50%); /* Garis dekorasi pindah ke tengah */
    }
}

.footer-contact h4, 
.footer-social h4 {
    margin-top: 20px; /* Menambah jarak dari elemen di atasnya (logo/deskripsi) */
    position: relative; /* Wajib ada agar border-bottom (absolute) merujuk ke sini */
    padding-bottom: 10px; /* Memberi ruang antara teks dan garis bawah */
    display: inline-block; /* Memastikan width garis mengikuti teks jika dibutuhkan */
}


/* Mengatur garis bawah (border-bottom) agar berada di tengah */
.footer-contact h4::after, 
.footer-social h4::after {
    content: ""; /* Pastikan content ada agar garis muncul */
    position: absolute;
    bottom: -8px; /* Jarak garis dari teks */
    left: 50%; /* Mulai dari titik tengah */
    transform: translateX(-50%); /* Geser balik 50% lebar garis agar presisi di tengah */
    
    /* Contoh ukuran garis (sesuaikan dengan desain Anda) */
    width: 50px; 
    height: 2px;
    background-color: #91be77; 
}

/* --- 1. FOOTER COMPONENTS --- */
.footer-contact ul {
    list-style: none;
    padding: 0;
     font-family: 'Lexend', sans-serif;
}

.footer-contact ul li {
   display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact ul li i {
     color: #78a962;
    margin-top: 5px;
}



.social-icons {
      display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
   background-color: #78a962;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    padding: 0 20px;
}

.footer-bottom hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.85rem;
}


/* --- RESPONSIVE MOBILE (HP) --- */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: center; /* Di HP semua kolom jadi ke tengah */
    }

    .footer-brand, .footer-contact, .footer-social {
        align-items: center; /* Di HP isi teks ikut ke tengah agar seimbang */
        text-align: center;
    }

    .footer-contact ul {
        margin: 0 auto; /* Di HP list kontak jadi tengah */
    }

    .social-icons {
        justify-content: center; /* Di HP ikon sosmed ke tengah */
    }
}
/* Bagian copyright bawah */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    margin-top: 30px; /* Kurangi margin atas footer bottom */
}

.footer-bottom hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
}


/* Ikon Hamburger */
.menu-btn{
    font-size: 24px;
    color: #2d5a27; /* Gunakan warna hijau gelap Anda agar kontras */
    cursor: pointer;
    display: none; /* Default sembunyi di desktop */
    
    /* KUNCI UTAMA */
    position: relative; 
    z-index: 9999;  /* Berikan nilai tertinggi agar tidak tertutup apapun */
    float: right;
    line-height: 60px; /* Sesuaikan dengan tinggi navbar Anda */
    margin-right: 10px;
}



/* --- 2. LOCATION & MAPS --- */
.location-section {
    padding: 60px 0;
    background-color: #fff;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 1.1rem;
}

.location-info i {
    color: #2d5a27;
    font-size: 1.2rem;
}

/* Container pembungkus tombol */
.contact-btn-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

/* Container pembungkus utama */
.contact-btn-wrapper {
    display: flex;
    flex-direction: row; /* Memaksa sejajar ke samping */
    gap: 15px;           /* Jarak antar tombol */
    align-items: center;
    justify-content: flex-start; /* Tombol mulai dari kiri */
    flex-wrap: nowrap;   /* KUNCI: Mencegah tombol turun ke bawah */
}

.btn-maps, .btn-chat {
    /* Layout & Alignment */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* Ukuran Tombol (Disamakan agar sejajar rapi) */
    height: 50px;
    width: 200px;        /* Menggunakan width tetap agar kembar identik */
    border-radius: 50px;
    
    /* Font & Teks */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;     /* Ukuran font sedikit dikecilkan agar muat satu baris */
    white-space: nowrap;
    
    /* Animasi */
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Tombol Google Maps */
.btn-maps {
    background-color: #2d5a27;
    color: white;
    border: 2px solid #2d5a27;
}

.btn-maps:hover {
    background-color: #1e3d1a;
    transform: translateY(-2px);
}

/* Tombol Chat Admin */
.btn-chat {
    background-color: #ffffff;
    color: #2d5a27;
    border: 2px solid #2d5a27;
}

.btn-chat:hover {
    background-color: #2d5a27;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Mengatur Ikon */
.btn-maps i, .btn-chat i {
    margin-left: 8px;
    font-size: 16px;
}
/* Creative Map Frame */
.map-wrapper-creative {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-decoration-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 90%;
    background-color: #f1f8f1;
    border-radius: 30px;
    z-index: 1;
    transform: rotate(-2deg);
}

.map-frame {
    position: relative;
    z-index: 2;
    background: white;
    padding: 15px;
    border: 8px solid #2d5a27;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.map-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(45, 90, 39, 0.2);
}

.map-frame iframe {
    border-radius: 10px;
    display: block;
    width: 100%;
}

/* --- 3. FLOATING WHATSAPP --- */
.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 9999;
}

.wa-text-wrapper {
    background: white;
    padding: 8px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    text-align: right;
    transition: 0.3s;
}

.wa-label {
    color: #2d5a27;
    font-weight: 700;
    font-size: 0.85rem;
}

.wa-hours {
    color: #666;
    font-size: 0.7rem;
}

.wa-icon {
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

.floating-wa:hover .wa-icon {
    transform: scale(1.1);
}

/* --- 4. RESPONSIVE (Unified Mobile) --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Menjadi 1 kolom */
        text-align: center;         /* Semua teks ke tengah */
        gap: 50px;
    }

    .footer-brand, 
    .footer-contact, 
    .footer-social {
        align-items: center;        /* Menengahkan konten flex */
        text-align: center;
    }

    .footer-brand .footer-logo {
        margin: 0 auto 15px;        /* Logo ke tengah */
    }

    .main-footer h4::after {
        left: 50%;
        transform: translateX(-50%); /* Garis bawah judul ke tengah */
    }

    .footer-contact ul li {
        justify-content: center;    /* Isi alamat ke tengah */
    }

    .social-icons {
        justify-content: center;    /* Ikon sosmed ke tengah */
    }
}
    


/* wa ngambang */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    text-decoration: none;
    
    /* Keadaan Awal: Sembunyi */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Class 'show' akan ditambahkan via JavaScript */
.fab-whatsapp.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1ebea5;
}

/* Tooltip kecil di samping tombol */
.tooltip-text {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.fab-whatsapp:hover .tooltip-text {
    opacity: 1;
}



/* RESPONSIVE: Safe Area untuk Mobile */
@media (max-width: 768px) {
    .fab-whatsapp {
        bottom: 20px; /* Jarak aman dari bawah layar HP */
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    .tooltip-text { display: none; } /* Sembunyikan tooltip di HP agar bersih */
}


/* Styling Modal Galeri */
.gallery-modal {
    display: none; /* Sembunyi secara default */
    position: fixed;
    z-index: 10000; /* Pastikan di atas navbar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Latar belakang hitam transparan */
    backdrop-filter: blur(5px);
    padding: 40px 20px;
    box-sizing: border-box;
}

.modal-content-wrapper {
    margin: auto;
    display: block;
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#modalImage {
    width: 100%;
    max-height: 70vh; /* Agar tidak kepotong di layar kecil */
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.modal-caption {
    color: #fff;
    font-size: 1.1rem;
    padding: 20px;
    line-height: 1.6;
    background: rgba(45, 74, 39, 0.8);
    margin-top: 15px;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #629d5a;
}

/* Tambahkan kursor pointer pada item galeri */
.gallery-item {
    cursor: pointer;
}

/* Tombol Navigasi Panah */
.prev-btn, .next-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none;
    z-index: 10001;
}

.next-btn {
    right: 20px;
    border-radius: 3px 0 0 3px;
}

.prev-btn {
    left: 20px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(45, 90, 39, 0.8);
    color: #fff;
}

/* Sembunyikan panah di layar sangat kecil jika terlalu mengganggu */
@media (max-width: 480px) {
    .prev-btn, .next-btn {
        padding: 10px;
        font-size: 20px;
    }
}


