/* Add your CSS code here.

/* General Styles */
		* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }        
/* Hero Section */
        .hero {
            height: 80vh;
            /*background-image: url('/api/placeholder/1200/800');*/
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.4);
        }
        
        .hero-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        /* Destinations Section */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        .section-title p {
            color: #777;
        }        
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .destination-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 200px;
        }
        
        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .destination-card:hover img {
            transform: scale(1.25);
        }
        
        .destination-name {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }
        
        /* Best Value Trips */
        .trips-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .trip-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .trip-image {
            height: 200px;
            position: relative;
        }
        
        .trip-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .price-tag {
            position: absolute;
            top: 15px;
            left: 0;
            background-color: #FF6B6B;
            color: white;
            padding: 5px 10px;
            font-weight: bold;
        }
        
        .trip-details {
            padding: 15px;
        }
        
        .trip-title {
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        .trip-info {
            color: #777;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .rating {
            color: #FFD700;
        }
        
        .days {
            float: right;
            color: #FF6B6B;
        }
        
        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: center;
        }
        
        .feature-icon {
            font-size: 50px;
            color: #FF6B6B;
            margin-bottom: 20px;
        }
        
        .feature-title {
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .feature-desc {
            color: #777;
            font-size: 14px;
        }
        
        /* Articles */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .article-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .article-image {
            height: 200px;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .article-details {
            padding: 15px;
        }
        
        .article-date {
            color: #FF6B6B;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .article-title {
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .article-excerpt {
            color: #777;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .read-more {
            color: #FF6B6B;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }
        
        .recent-trips {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        
        .recent-trip {
            height: 80px;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .recent-trip img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Parallax Video Container */
        .parallax-video-container {
            position: relative;
            width: 100%;
            height: 80vh;
            overflow: hidden;
            z-index: 1;
        }
        
        /* Video Background */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }
        
        .video-background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
        }
        
        /* Dark overlay */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        /* Content */
        .parallax-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .parallax-content h2 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        
        .parallax-content p {
            font-size: 18px;
            max-width: 600px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }
        
        .cta-button {
            padding: 15px 30px;
            background-color: #FF6B6B;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #FF5252;
        }
        
        /* Parallax Effect (with scroll) */
        .parallax-scroll {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        /* Responsive */
        @media (max-width: 992px) {
            .destinations-grid, .trips-grid, .features-grid, .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .search-form input {
                margin-bottom: 10px;
                margin-right: 0;
            }
            
            .trips-grid, .features-grid, .articles-grid, .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .destinations-grid {
                grid-template-columns: 1fr;
            }
        }
For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 


