/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff9ff3 25%, #feca57 50%, #48dbfb 75%, #667eea 100%);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}

.header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.header-left {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
}

.header-center {
    flex: 1;
    text-align: center;
}

.header-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
}

.header-elephant, .header-dog {
    width: 120px;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.3));
    animation: gentle-bounce 4s ease-in-out infinite;
    margin-bottom: -30px; /* Makes it appear to sit on the navigation bar */
    z-index: 10;
    position: relative;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-2deg); }
}



.main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.main-title i {
    margin-right: 1rem;
    margin-left: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.countdown-container {
    margin-top: 2rem;
}

.countdown-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.countdown-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-item .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Navigation */
.nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    padding: 1rem 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    transform: translateY(-2px);
}



@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-2deg); }
}

/* Main Content */
.main {
    padding: 3rem 0;
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-title i {
    margin-right: 1rem;
    color: #feca57;
}

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

.overview-card {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.overview-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.trip-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.trip-info a {
    color: #48dbfb;
    text-decoration: none;
    font-weight: 600;
}

.trip-info a:hover {
    text-decoration: underline;
}

/* Route Map */
.map-container {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.map-container h3 {
    text-align: center;
    color: #ff6b6b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

 

 

.route-map {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.port-stop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.port-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    position: relative;
}

.port-dot.miami { background: #ff6b6b; }
.port-dot.celebration { background: #feca57; }
.port-dot.halfmoon { background: #48dbfb; }
.port-dot.stmaarten { background: #ff9ff3; }

.route-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    border-radius: 2px;
    margin: 0 1rem;
}

/* Itinerary Section */
.itinerary-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.day-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.day-header {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.day-header:hover {
    background: linear-gradient(135deg, #feca57, #48dbfb);
}

.day-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.day-location {
    font-size: 1rem;
    opacity: 0.9;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.day-header.active .toggle-icon {
    transform: rotate(180deg);
}

.day-content {
    padding: 2rem;
    display: none;
}

.day-content.active {
    display: block;
}

.timeline {
    margin-bottom: 2rem;
}

.timeline-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

.time {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    margin-right: 1rem;
}

.activity {
    flex: 1;
    font-size: 1.1rem;
}

.day-notes {
    background: linear-gradient(135deg, #48dbfb, #ff9ff3);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
}

.day-notes h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.day-notes ul {
    list-style: none;
}

.day-notes li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.day-notes li:before {
    content: "🌴";
    position: absolute;
    left: 0;
}

/* Ship Info Section */
.ship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ship-card-wide {
    grid-column: 1 / -1;
    min-height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ship-image {
    max-width: calc(100% - 4rem);
    max-height: calc(100% - 4rem);
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.ship-image:hover {
    transform: scale(1.02);
}



.ship-card {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.ship-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.ship-card p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ship-card a {
    color: #48dbfb;
    text-decoration: none;
    font-weight: 600;
}

.ship-card a:hover {
    text-decoration: underline;
}

/* Ports Section */
.ports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.port-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.port-header {
    padding: 2rem;
    color: white;
    text-align: center;
}

.port-header.celebration {
    background: linear-gradient(135deg, #feca57, #ff9ff3, #ff6b6b);
}

.port-header.halfmoon {
    background: linear-gradient(135deg, #48dbfb, #667eea, #ff9ff3);
}

.port-header.stmaarten {
    background: linear-gradient(135deg, #ff9ff3, #feca57, #48dbfb);
}

.port-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.port-date {
    font-size: 1.1rem;
    opacity: 0.9;
}

.port-content {
    padding: 2rem;
}

.port-overview, .port-activities, .port-tips {
    margin-bottom: 2rem;
}

.port-overview h4, .port-activities h4, .port-tips h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.port-content ul {
    list-style: none;
}

.port-content li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.port-content li:before {
    content: "🏝️";
    position: absolute;
    left: 0;
}

/* Photo Gallery Section */
.photo-intro {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.photo-intro h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.photo-intro p {
    color: #666;
    font-size: 1.1rem;
}

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

.photo-placeholder {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 2px dashed #ddd;
}

.photo-placeholder i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
    display: block;
}

.photo-placeholder p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.photo-placeholder small {
    color: #999;
    font-size: 0.9rem;
}

.photo-item {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    position: relative;
}

.photo-item:hover {
    transform: translateY(-5px);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.photo-info {
    padding: 1.5rem;
}

.photo-date {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.photo-caption {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.photo-location {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333, #666);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #ff6b6b;
}

.deck-plan-placeholder {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    margin-top: 1rem;
}

.deck-plan-placeholder a {
    color: #48dbfb;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-left {
        order: 2; /* Move elephant below title on mobile */
    }
    
    .header-center {
        order: 1; /* Title first on mobile */
    }
    
    .header-right {
        display: none; /* Hide empty right side on mobile */
    }
    
    .header-elephant, .header-dog {
        width: 80px;
        max-height: 100px;
        margin-bottom: -20px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 0.8rem;
    }
    
    .countdown-item .number {
        font-size: 2rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .overview-grid, .ship-grid, .ports-grid {
        grid-template-columns: 1fr;
    }
    
    .route-map {
        flex-direction: column;
        gap: 2rem;
    }
    
    .route-line {
        width: 3px;
        height: 50px;
        margin: 0;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .time {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for interactive elements */
.day-card, .overview-card, .ship-card, .port-card {
    transition: all 0.3s ease;
}

.day-card:hover, .overview-card:hover, .ship-card:hover, .port-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
} 