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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background: #2c7a7b;
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero {
    background: #38b2ac;
    color: white;
    text-align: center;
    padding: 8rem 2rem 5rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.btn {
    display: inline-block;
    background: #e07b39;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #c96a30;
}

.destinasi {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.destinasi h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c7a7b;
    margin-bottom: 2rem;
}

.destinasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.card-info {
    padding: 1.5rem;
}

.card-info h3 {
    color: #2c7a7b;
    margin-bottom: 0.5rem;
}

.card-info p {
    color: #666;
    margin-bottom: 0.75rem;
}

.lokasi {
    color: #e07b39;
    font-weight: 500;
    font-size: 0.9rem;
}

.tentang {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tentang h2 {
    color: #2c7a7b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tentang p {
    color: #555;
    line-height: 1.8;
}

footer {
    background: #2c7a7b;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
}

.modal-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.modal-content h3 {
    color: #2c7a7b;
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: #555;
    margin-bottom: 1rem;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
}

.close:hover {
    color: #333;
}