:root {
    --primary: #0a2540;
    --primary-light: #164070;
    --accent: #d97750;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-alt: #f4f7f6;
    --radius: 12px;
    --transition: 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
}

body {
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }

h1, h2, h3 { color: var(--primary); }

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(217, 119, 80, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 119, 80, 0.6);
    background: #c16340;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 37, 64, 0.5), rgba(10, 37, 64, 0.5)), 
                url('https://images.unsplash.com/photo-1599640842225-85d111c60e6b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.light-bg {
    background: var(--bg-alt);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

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

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

/* Cards */
.card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.activity-item {
    height: 300px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.activity-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: var(--transition);
}

.activity-item:hover::before {
    background: linear-gradient(transparent, rgba(217, 119, 80, 0.8));
}

.activity-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.activity-content h3 {
    color: #fff;
    font-size: 1.5rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.activity-item:hover .activity-content h3 {
    transform: translateY(-5px);
}

.activity-item:hover .hover-text {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Dining Cards */
.dining-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.dining-card:hover {
    transform: scale(1.02);
}

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

.dining-info {
    padding: 2rem;
}

/* Destination Cards */
.destination-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.destination-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(10,37,64, 0.9));
    color: #fff;
}

.dest-info h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
    padding: 4rem 0 2rem;
}

footer h2 {
    color: #fff;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* New Buttons */
.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary);
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary);
    text-decoration: underline;
}

.mt-1 {
    margin-top: 1rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    z-index: 1002;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.close-modal:hover {
    color: var(--primary);
}

.modal h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.menu-list li:last-child, .itinerary-list li:last-child {
    border-bottom: none;
}

.menu-list li span:last-child {
    font-weight: 700;
    color: var(--accent);
}

.itinerary-list {
    list-style: none;
}

.itinerary-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
}

.itinerary-list li strong {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
    .grid-2 { grid-template-columns: 1fr; }
}
