/* General Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url("image/bg.jpeg");
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #0099cc; /* Turquoise */
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.header .nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.header .nav a:hover {
    color: #ff9933; /* Hover effect */
}

/* Admin icon button */
.header .nav .admin-icon {
    display: inline-block;
    color: #ff9933; /* Icon oren supaya menonjol */
    font-size: 20px;
    margin-left: 15px;
    transition: color 0.3s;
}

.header .nav .admin-icon:hover {
    color: #cc6600; /* Hover jadi oren gelap */
}

/* Pastikan icon selari dengan link lain */
.header .nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.header .nav a:hover {
    color: #ff9933;
}


/* Responsive */
@media(max-width: 768px){
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    .header .nav a {
        margin-left: 0;
        margin-top: 10px;
    }
}


/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    /* fallback gradient jika gambar tiada */
    background-image: linear-gradient(to bottom, #66ccff, #0099cc);
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top:0; left:0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* overlay gelap */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 20px;
}

.hero-content .btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff9933; /* oren */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hero-content .btn:hover {
    background: #cc6600;
}

/* Packages Section */
.packages {
    padding: 50px 20px;
    text-align: center;
}

.packages h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.package-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.package {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 280px;
}

.package img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.package h3 {
    margin: 10px 0 5px 0;
}

.package p {
    font-weight: bold;
    margin-bottom: 10px;
}

.package .btn {
    display: inline-block;
    margin-top: 10px;
}

/* Why Choose Us */
.why-us {
    background: #66cc99; /* accent green */
    padding: 40px 20px;
    text-align: center;
    color: #333333;
}

.why-us h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.icon-box {
    text-align: center;
    font-size: 18px;
}

.icon-box span {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

/* Customer Reviews */
.testimoni {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
}

.testimoni h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.testimoni blockquote {
    font-style: italic;
    margin: 15px auto;
    max-width: 600px;
}
/*packages*/
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff9933; /* oren mesra */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: #cc6600; /* oren gelap bila hover */
}

/* Footer */
footer {
    background: #003366; /* navy */
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

footer .social-icons a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-icons a:hover {
    color: #ff9933; /* hover oren */
}

/* Responsive */
@media(max-width: 900px){
    .package-list {
        flex-direction: column;
        align-items: center;
    }
    .icons {
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 18px;
    }
}
/* About Us Section */
.about-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-section h2, .about-section h3 {
    color: #0099cc;
    margin-bottom: 15px;
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333333;
}

/* Why Choose Us Boxes */
.why-choose {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}
.why-choose div {
    background: #66cc99;
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    flex: 1 1 200px;
    text-align: center;
    font-weight: bold;
}

/* Contact Form */
.contact-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.contact-form button {
    background-color: #ff9933;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #cc6600;
}

/* Google Map Embed */
.map-container {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* Sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    background-color: #0099cc; /* Primary color */
    color: white;
    position: fixed;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.sidebar h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.sidebar ul li:hover {
    background-color: #ff9933; /* Secondary hover color */
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

/* Content */
.content {
    margin-left: 250px;
    padding: 20px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    background-color: #ff9933;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #cc6600;
}

.container {
    width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 26px;
}

.booking-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="number"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.booking-form input {
  box-sizing: border-box;
}


.booking-form textarea {
    resize: vertical;
}

.date-row, .person-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.date-row div, .person-row div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.date-row label,
.person-row label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.date-row input,
.person-row input {
    width: 100%;
}

.booking-form button {
    width: 100%;
    background: #3498db;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.booking-form button:hover {
    background: #2176bd;
}

.help-section {
    text-align: center;
    margin-top: 30px;
    color: #444;
}

.help-section a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

/*calendar section*/
#calendar {
    font-family: Arial, sans-serif;
    max-width: 1000px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Calendar header */
.fc .fc-toolbar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    text-align: center;
}

/* Background untuk nama hari (Mon, Tue, Wed...) */
.fc .fc-col-header-cell {
    background: #28a745;
    color: #fff;
    font-weight: 600;
    padding: 8px 0;
}
.fc .fc-col-header-cell-cushion {
    color: #fff !important;
    text-decoration: none;
}

/* Buttons in calendar */
.fc .fc-button {
    background: #007bff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s;
    text-transform: capitalize;
}
.fc .fc-button:hover {
    background: #0056b3;
}
.fc .fc-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Day cells */
.fc .fc-daygrid-day-frame {
    padding: 6px;
    transition: background 0.2s;
}
.fc .fc-daygrid-day-frame:hover {
    background: #f1f8ff;
}

/* Today highlight */
.fc .fc-day-today {
    background: #eaf6ff !important;
    border: 2px solid #007bff !important;
}

/* Style only the Today button */
.fc .fc-today-button {
    background: #28a745 !important; /* green */
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 600;
    transition: background 0.3s;
}

/* Hover effect */
.fc .fc-today-button:hover:not(:disabled) {
    background: #218838 !important; /* darker green */
}

/* Disabled state */
.fc .fc-today-button:disabled {
    background: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
}

/* Events */
.fc .fc-event {
    background: #28a745;
    border: none;
    border-radius: 6px;
    padding: 4px 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}
.fc .fc-event:hover {
    transform: scale(1.05);
    background: #218838;
}

/* Empty date cursor */
.fc-daygrid-day {
    cursor: pointer;
}

