/* Main CSS for Stephanie Gills Website */

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

.handwritten {
    font-family: 'Caveat', cursive;
}

/* Hero Section Styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Animation Styles */
.globe {
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Destination Map Styles */
.destination:hover .destination-info {
    opacity: 1;
    transform: translateY(0);
}

.destination-info {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Timeline Styles */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #F59E0B;
}

/* Package Card Hover Effects */
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Easter Egg Styles */
.easter-egg {
    cursor: pointer;
}

/* Active Link Styles */
.active-link {
    position: relative;
}

.active-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d97706;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

/* World Map Text Styles */
.text-xs {
    font-size: 0.75rem;
}

.font-bold {
    font-weight: 700;
}