/* ================================
   RESET & VARIABLES
================================ */
:root {
    --color-primary: #2D4A3E; /* Deep tropical green */
    --color-secondary: #1A1A1A; /* Dark accent */
    --color-accent: #f97316; /* Orange recommended */
    --color-dark: #1A1A1A;
    --color-light: #F5F2ED;
    --color-white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   TYPOGRAPHY
================================ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
}

/* ================================
   NAVBAR
================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: rgba(245, 242, 237, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 74, 62, 0.1);
    padding: 10px 0; 
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 105px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.lang-selector select {
    padding: 0.3rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* ================================
   HERO SECTION
================================ */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    padding-top: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--color-white);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 0.9rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--color-dark);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* ================================
   DESTINATIONS
================================ */
.destinations {
    padding: 5rem 0;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--color-white);
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

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

.dest-card {
    background: var(--color-white);
    border-radius: 2px;
    border: 1px solid rgba(45, 74, 62, 0.05);
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
}

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

.dest-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.dest-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-card:hover .dest-img-wrap img {
    transform: scale(1.05);
}

.dest-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
}

.dest-content {
    padding: 1.5rem;
}

.dest-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.dest-content p {
    color: #666;
    font-size: 0.95rem;
}

/* ================================
   PACKAGES
================================ */
.packages {
    background-color: var(--color-light);
    padding: 5rem 0;
}

.package-card {
    background: var(--color-white);
    border-radius: 2px;
    border: 1px solid rgba(45, 74, 62, 0.05);
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pkg-img-wrap {
    position: relative;
    height: 250px;
    background-color: #e2e8f0;
}

.pkg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-recommended {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.pkg-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pkg-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pkg-duration {
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.pkg-itinerary {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.itin-day, .itin-item {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.itin-day strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
}

.itin-day ul {
    padding-left: 1rem;
    list-style: disc;
    color: #555;
}

.itin-item {
    display: flex;
    gap: 1rem;
}

.itin-time {
    font-weight: bold;
    color: var(--color-secondary);
    min-width: 45px;
}

.btn-book {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--color-dark);
}

.ferry-warning {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    background: rgba(212, 163, 115, 0.1);
    border-left: 4px solid var(--color-accent);
    color: #555;
    font-style: italic;
}

/* ================================
   EXPERIENCES
================================ */
.experiences {
    padding: 5rem 0;
}

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

.exp-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 2px;
    border: 1px solid rgba(45, 74, 62, 0.05);
    box-shadow: none;
}

.exp-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.exp-item p {
    font-size: 0.95rem;
    color: #666;
}

/* ================================
   HOTELS
================================ */
.hotels {
    padding: 5rem 0;
    background-color: #E8E4DD;
}

.hotel-card {
    background: var(--color-white);
    border-radius: 2px;
    border: 1px solid rgba(45, 74, 62, 0.05);
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
}
.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hotel-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    background-color: #e2e8f0;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-type {
    font-size: 0.8rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hotel-content h3 {
    margin-bottom: 0.5rem;
}

.hotel-content p {
    font-size: 0.95rem;
    color: #555;
}

/* ================================
   GALLERY
================================ */
.gallery {
    padding: 5rem 0;
}

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

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ================================
   ABOUT & FAQ
================================ */
.about {
    padding: 5rem 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.about h2 {
    color: var(--color-white);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.faq {
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1rem;
}

/* ================================
   BOOKING FORM
================================ */
.booking {
    padding: 5rem 0;
    background-color: var(--color-light);
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid rgba(45, 74, 62, 0.05);
    box-shadow: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(26,26,26,0.1);
    border-radius: 2px;
    font-family: var(--font-body);
    background-color: var(--color-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--color-dark);
}

/* ================================
   FOOTER
================================ */
.footer {
    background-color: #E8E4DD;
    color: var(--color-dark);
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(45, 74, 62, 0.1);
}

.footer img {
    height: 50px;
    margin: 0 auto 1rem;
    filter: none;
}

.footer p {
    color: var(--color-dark);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 74, 62, 0.1);
    font-size: 0.75rem;
    color: var(--color-dark);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
