/* Import Google Fonts (CSS only) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@300;400;500&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: #2C3E50; 
    background-color: #F8F9FA; 
    overflow-x: hidden;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #8B0000; 
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-align: center;
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #8B0000, #001F3F);
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px; 
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #001F3F; 
    transform: translateY(-2px);
}

/* Main Content */
main {
    margin-top: 120px; 
    padding: 20px 0;
}

.hero {
    background: linear-gradient(rgba(139, 0, 0, 0.8), rgba(0, 31, 63, 0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 120px 20px;
    color: #fff;
    position: relative;
    border-radius: 0 0 30px 30px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F8F9FA;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #001F3F, #8B0000); 
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 31, 63, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 31, 63, 0.4);
    color: #fff;
}

.section {
    padding: 80px 0;
    background: #fff; 
    margin: 20px 0;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #001F3F;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


.card.tourist { border-top-color: #001F3F; } 
.card.school { border-top-color: #4682B4; } 
.card.corporate { border-top-color: #8B0000; } 

.card i {
    font-size: 2.5em;
    color: #001F3F; 
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.package-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.package-price {
    font-size: 1.4em;
    color: #001F3F;
    font-weight: 700;
    margin: 15px 0;
}

.testimonial {
    background: linear-gradient(135deg, #F8F9FA, #fff);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #4682B4;
    font-style: italic;
    text-align: center;
}

/* Stats Section - Professional Metrics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3em;
    color: #8B0000;
    font-weight: 700;
    display: block;
}

.stat-label {
    color: #2C3E50;
    font-size: 1.1em;
}

/* Founder Section - Single Column Layout */
.founder-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.founder-image {
    flex: 0 0 100px;
    
}

.founder-image img {
    width: 50%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.founder-bio {
    flex: 1;
    padding: 20px;
}

.founder-name {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 10px;
}

.founder-quote {
    font-style: italic;
    color: #001F3F;
    margin: 20px 0;
    font-size: 1.1em;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.2); /* Navy shadow */
}

/* Forms - Professional Styling */
form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

input, textarea, select {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #F8F9FA;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #4682B4;
    box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.1);
}

button, .book-now {
    background: linear-gradient(135deg, #001F3F, #8B0000); 
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

button:hover, .book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 31, 63, 0.3); 
    color: #fff;
}

a.book-now {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width: auto;
}

/* Footer*/
footer {
    background: linear-gradient(135deg, #2C3E50, #8B0000);
    color: #fff;
    text-align: center;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #001F3F;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #F8F9FA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #001F3F; 
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.5em;
    color: #fff;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #001F3F; 
}

.newsletter {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 70%;
    margin-right: 10px;
}

.newsletter button {
    width: auto;
    padding: 10px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo { font-size: 1.5em; }
    nav ul { flex-direction: column; }
    nav ul li { margin: 8px 0; }
    
    .hero { padding: 80px 20px; background-attachment: scroll; }
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    
    .grid { grid-template-columns: 1fr; gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    
    .founder-section {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image {
        flex: none;
        max-width: 250px;
        margin: 0 auto 20px;
    }
    
    .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    main { margin-top: 140px; }
    .hero { padding: 60px 15px; }
    .card { padding: 25px; }
    form { padding: 25px; }
}
/* Header and Navigation - Compact Professional Design */
header {
    background: linear-gradient(135deg, #8B0000, #B22222); 
    color: #fff;
    padding: 0.75rem 0; 
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em; 
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px; 
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px; 
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #B22222; 
    transform: translateY(-2px);
}

/* Main Content - Adjusted Margin for Compact Header */
main {
    margin-top: 90px; 
    padding: 20px 0;
}

/* ... (Rest of the CSS remains unchanged, e.g., hero, sections, etc.) ... */

/* Responsive Design - Enhanced for Compact Header on Mobile */
@media (max-width: 768px) {
    .logo { 
        font-size: 1.3em; 
        margin-bottom: 3px; 
    }
    nav ul { 
        flex-direction: column; 
        align-items: center; 
    }
    nav ul li { 
        margin: 5px 0; 
    }
    
    .hero { 
        padding: 80px 20px; 
        background-attachment: scroll; 
    }
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    
    .grid { grid-template-columns: 1fr; gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    
    .founder-section { padding: 40px 20px; }
    .founder-image { width: 200px; height: 250px; }
    
    .footer-content { grid-template-columns: 1fr; }
    
    main { margin-top: 100px; } 
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    main { margin-top: 100px; } 
    .hero { padding: 60px 15px; }
    .card { padding: 25px; }
    form { padding: 25px; }
    
    header { padding: 0.5rem 0; } 
    .logo { font-size: 1.2em; }
    nav ul li { margin: 3px 0; }
    nav ul li a { padding: 6px 12px; }
}
/* Hero Banner - Consistent Photo Banner for All Pages */
.hero {
    background: linear-gradient(rgba(139, 0, 0, 0.7), rgba(178, 34, 34, 0.5)), url('images/hero-bg.jpg'); /* Default; override per page */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    text-align: center;
    padding: 100px 20px; 
    color: #fff; 
    position: relative;
    border-radius: 0 0 30px 30px;
    margin-bottom: 40px;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: #fff !important; 
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F8F9FA; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content - Adjusted for Hero Banner */
main {
    margin-top: 0; 
    padding: 0; 
}

/* Section - Now follows hero directly */
.section {
    padding: 60px 0; 
    background: #fff;
    margin: 20px 0;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-out;
}

/* Responsive for Hero Banners */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        background-attachment: scroll; 
        border-radius: 0;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    /* ... (other mobile styles unchanged) ... */
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 15px;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    /* ... (other small screen styles unchanged) ... */
}
/* Container - Enhanced Side Gaps */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px; 
}

/* Main Content - Global Top/Bottom Gaps */
main {
    margin-top: 0;
    padding: 40px 0; 
}

/* Hero Banner - Gap Below */
.hero {
    background: linear-gradient(rgba(139, 0, 0, 0.7), rgba(178, 34, 34, 0.5)), url('images/hero-bg.jpg'); /* Default; override per page */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    text-align: center;
    padding: 100px 20px; 
    color: #fff; 
    position: relative;
    border-radius: 0 0 30px 30px;
    margin-bottom: 60px; 
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: #fff !important; 
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F8F9FA; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section - Enhanced Vertical and Internal Gaps */
.section {
    padding: 60px 0; 
    background: #fff;
    margin: 40px 0; 
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-out;
}

/* Founder Section - Consistent with Gaps */
.founder-section {
    padding: 60px 0; 
    background: #fff;
    margin: 40px 0; 
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.founder-image {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px auto 30px; 
    display: block; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid #B22222; 
}

.founder-bio {
    font-size: 1.1em;
    line-height: 1.8;
    color: #2C3E50;
    margin-bottom: 20px;
    padding: 0 20px; 
}

.founder-quote {
    font-style: italic;
    color: #4682B4;
    font-size: 1.2em;
    margin-top: 20px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 10px;
    border-left: 4px solid #8B0000;
    margin-bottom: 20px; 
    text-align: center;
}

/* Grid and Cards - Minor Gap Adjustments */
.grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px; 
    margin-top: 30px; 
    margin-bottom: 30px;
    width: 100%;
    height: 300px; 
}

.card {
    background: #fff;
    padding: 40px; 
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #B22222;
    position: relative;
    margin-bottom: 0px;
    text-align: center;
   /* Extra bottom gap per card if needed */
}

/* Responsive Design - Scaled Gaps for Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px; 
    }
    
    main {
        padding: 30px 0; 
    }
    
    .section, .founder-section {
        padding: 40px 0; 
        margin: 30px 0; 
    
    .hero {
        padding: 60px 20px;
        background-attachment: scroll;
        border-radius: 0;
        margin-bottom: 40px; 
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    .grid {
        gap: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .card {
        padding: 25px;
        margin-bottom: 15px;
    }
    
    .founder-section {
        padding: 40px 0;
        margin: 30px 0;
    }
    
    .founder-image {
        width: 200px;
        height: 250px;
        margin: 15px auto 25px;
    }
    
    .founder-bio {
        padding: 0 15px;
    }
    
    /* ... (other mobile styles unchanged) ... */
}
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px; 
    }
    
    main {
        padding: 20px 0;
    }
    
    .section, .founder-section {
        padding: 30px 0;
        margin: 20px 0;
    }
    
    .hero {
        padding: 50px 15px;
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .grid {
        gap: 20px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .card {
        padding: 20px;
    }
    
    
}
nav.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav ul li a:hover {
    background: #444;
    border-radius: 5px;
}
/* Base styles */
header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
        background: #444;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 10px;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    nav ul li a {
        display: block;
        padding: 10px;
        background: #555;
        border-radius: 4px;
    }

    nav ul li a:hover {
        background: #666;
    }
}
/* Header Styles */
header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: white;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
        background: #444;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 10px;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    nav ul li a {
        display: block;
        padding: 10px;
        background: #555;
        border-radius: 4px;
    }

    nav ul li a:hover {
        background: #666;
    }
}
/* Header umum */
header {
    background-color: #a00000;
    color: white;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Toggle menu (hidden on desktop) */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Responsive layout untuk skrin kecil */
@media screen and (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo {
        font-size: 20px;
        text-align: center;
        margin-bottom: 10px;
    }

    .menu-toggle {
        display: block;
        margin-bottom: 10px;
    }

    nav {
        display: none;
        width: 100%;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav.show {
        display: block;
    }
}
header {
    background-color: #a00000;
    color: white;
    padding: 15px 0;
    position: fixed;       /* 🧠 Ini kunci utama */
    top: 0;                /* Letak di atas */
    left: 0;
    width: 100%;           /* Penuh skrin */
    z-index: 1000;         /* Pastikan berada atas elemen lain */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Tambah bayang untuk kesan 3D */
}

body {
    padding-top: 80px; /* 🧠 Elak content tertindih header */
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
/* RESET DEFAULT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 70px; /* Space for fixed header */
}

/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #a00000;
    color: #fff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

/* NAVIGATION */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f0c040;
}

/* BURGER MENU */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .logo {
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
    }

    nav.show {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    nav ul li a {
        font-size: 16px;
    }
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding-top: 60px; /* space for fixed header */
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #a00000;
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    max-width: 1200px;
    margin: auto;
}

/* LOGO */
.logo {
    font-size: 18px;
    font-weight: bold;
}

/* MENU */
.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

/* BURGER MENU */
.menu-toggle {
    display: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

/* RESPONSIVE - MOBILE */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #a00000;
        padding: 10px 0;
        text-align: center;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .logo {
        font-size: 16px;
    }

    .nav-links li a {
        font-size: 14px;
        padding: 8px 0;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media screen and (max-width: 768px) {
    nav {
        position: absolute;
        top: 60px; /* bawah header */
        right: 10px;
        width: 200px; /* kecilkan lebar */
        background-color: #a00000;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        display: none;
        padding: 10px 0;
    }

    nav.show {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li a {
        padding: 8px 12px;
        font-size: 14px;
        text-align: left;
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .logo {
        font-size: 16px;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
