Skip to content

TOSINIRL/PORTFOLIO

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

86 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

IT Chic Travels v2.0 - Premium Redesign

IT Chic Travels Version Design

🌍 Overview

A complete v2.0 redesign of IT Chic Travels website, transforming it from a traditional static layout into a premium, immersive 2026-standard digital experience with cinematic video backgrounds, glassmorphism aesthetics, and advanced animations.

✨ Key Features

🎬 Cinematic Experience

  • Full-bleed video backgrounds with rotating global destinations
  • Smooth 10-second transitions between video clips
  • Glassmorphic overlays for depth and readability

🎨 Glassmorphism Design

  • Transparent-to-solid blurred navigation header
  • Frosted glass effect on all content cards
  • Multi-layer depth with backdrop filters

πŸ“ Bento-Box Grid Layouts

  • Asymmetric, visually interesting layouts
  • Interactive service and trip cards
  • Floating 3D icons with hover animations

🎭 Advanced Animations

  • Kinetic Typography: Cursor-reactive "travel THE WORLD" text
  • Liquid Motion Buttons: Expanding gradient hover effects (blue β†’ coral)
  • Scroll-Triggered Fade-Ins: Staggered GSAP animations
  • Parallax Effects: Depth-based scrolling

🎯 Premium UX

  • Sticky navigation that shrinks on scroll
  • "Start Your Journey" CTA always visible
  • Cursor trail effect (desktop)
  • Mobile-optimized responsive design

πŸš€ Quick Start

Prerequisites

  • Modern web browser (Chrome 90+, Firefox 88+, Safari 14+)
  • Local web server (for video playback)

Installation

  1. Clone or download this redesign folder

    cd "IT CHICH TRAVELS/v2_redesign"
  2. Start a local server

    # Using Python 3
    python3 -m http.server 8000
    
    # Using Node.js
    npx http-server -p 8000
    
    # Using PHP
    php -S localhost:8000
  3. Open in browser

    http://localhost:8000
    

πŸ“ Project Structure

v2_redesign/
β”œβ”€β”€ index.html              # Main HTML file
β”œβ”€β”€ css/
β”‚   └── style.css          # Complete design system
β”œβ”€β”€ js/
β”‚   └── main.js            # All interactive features
β”œβ”€β”€ assets/
β”‚   β”œβ”€β”€ videos/            # Hero background videos
β”‚   β”œβ”€β”€ images/            # Service & trip images
β”‚   └── icons/             # SVG icons and logo
β”œβ”€β”€ DESIGN_DOCUMENTATION.md # Comprehensive design guide
└── README.md              # This file

🎨 Required Assets

⚠️ Important: Asset Placeholder Notice

The current implementation uses placeholder asset paths. You need to add the following assets to make the website fully functional:

Videos (MP4, 1920x1080, H.264)

Place in assets/videos/:

  • hero-destinations.mp4 - Mixed global highlights
  • hero-santorini.mp4 - Greek islands footage
  • hero-bali.mp4 - Tropical paradise scenes
  • hero-morocco.mp4 - Desert and marketplace

Recommended Sources:

Search Terms: "santorini sunset", "bali beach", "morocco market", "travel destination"

Images (WebP/JPEG, 1920x1080+)

Place in assets/images/:

Services:

  • service-custom-itinerary.jpg - Travel planning concept
  • service-concierge.jpg - Luxury hotel concierge
  • service-exclusive.jpg - VIP yacht/exclusive access

Trips:

  • trip-santorini.jpg - Santorini white buildings
  • trip-bali.jpg - Bali wellness/nature
  • trip-morocco.jpg - Moroccan marketplace
  • trip-japan.jpg - Cherry blossoms in Kyoto

Testimonials:

  • avatar-1.jpg (400x400) - Client photo
  • avatar-2.jpg (400x400) - Client photo
  • avatar-3.jpg (400x400) - Client photo

Recommended Sources:

Logo

Place in assets/images/:

  • logo.svg - IT Chic Travels logo (transparent background)

Note: You can extract the current logo from https://itchictravels.com/ or create a new SVG version.

🎯 Asset Quick Download Guide

Step 1: Download Videos

# Example using Pexels (requires account)
# 1. Go to https://www.pexels.com/videos/
# 2. Search for: "santorini sunset aerial"
# 3. Download 1920x1080 MP4
# 4. Rename to hero-santorini.mp4
# 5. Move to assets/videos/

# Repeat for other destinations

Step 2: Download Images

# Example using Unsplash
# 1. Go to https://unsplash.com/
# 2. Search for: "santorini white buildings blue dome"
# 3. Download Large (1920x1080+)
# 4. Rename to trip-santorini.jpg
# 5. Move to assets/images/

# Repeat for all required images

Step 3: Optimize Assets

# Compress images (optional but recommended)
# Using ImageOptim (Mac) or TinyPNG (web)

# Convert to WebP for better performance
# Using online tool: https://cloudconvert.com/jpg-to-webp

πŸ› οΈ Customization

Colors

Edit CSS variables in css/style.css:

:root {
    --color-primary: hsl(200, 85%, 45%);    /* Blue */
    --color-accent: hsl(12, 85%, 62%);      /* Coral */
    /* Modify to match your brand */
}

Typography

Change fonts in index.html (Google Fonts link) and css/style.css:

:root {
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

Content

Edit text directly in index.html:

  • Hero title and subtitle
  • Service descriptions
  • Trip details and dates
  • Testimonials
  • Footer information

πŸ“± Responsive Breakpoints

  • Desktop: 1024px and above
  • Tablet: 768px - 1023px
  • Mobile: Below 768px

All layouts automatically adapt to screen size.

⚑ Performance Tips

  1. Optimize Videos:

    • Use H.264 codec
    • Keep file size under 5MB per video
    • Consider poster images for mobile
  2. Compress Images:

    • Use WebP format with JPEG fallback
    • Compress to 80% quality
    • Lazy load below-the-fold images
  3. Minify Assets (for production):

    # CSS minification
    npx clean-css-cli -o style.min.css style.css
    
    # JS minification
    npx terser main.js -o main.min.js

🎨 Design Features Explained

Glassmorphism

The frosted glass effect is achieved using:

backdrop-filter: blur(20px) saturate(180%);
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.18);

Liquid Motion Buttons

Hover effects use expanding circular gradients:

  • Initial: Blue gradient background
  • Hover: Coral gradient expands from cursor position
  • Transition: 600ms smooth animation

Kinetic Typography

The hero title reacts to cursor movement:

  • Each letter tracks cursor proximity
  • Movement within 200px radius
  • Smooth requestAnimationFrame updates

πŸ› Troubleshooting

Videos Not Playing

  • Ensure you're using a local server (not file://)
  • Check video format is MP4 with H.264 codec
  • Verify file paths are correct

Animations Not Working

  • Check browser console for JavaScript errors
  • Ensure GSAP CDN is loading (check network tab)
  • Verify ScrollTrigger plugin is included

Glassmorphism Not Showing

  • Check browser support for backdrop-filter
  • Safari requires -webkit-backdrop-filter
  • Fallback: solid background colors

Mobile Menu Not Opening

  • Check JavaScript console for errors
  • Verify mobile-menu-toggle ID exists
  • Test on actual mobile device, not just resize

πŸ“Š Browser Support

Browser Version Support
Chrome 90+ βœ… Full
Firefox 88+ βœ… Full
Safari 14+ βœ… Full
Edge 90+ βœ… Full
IE Any ❌ Not supported

πŸ”— Resources

Documentation

Asset Sources

Tools

πŸ“ž Support

For questions about this redesign:

  1. Review the DESIGN_DOCUMENTATION.md
  2. Check browser console for errors
  3. Verify all assets are properly placed

πŸ“ License

This redesign concept is created for IT Chic Travels. All rights reserved.

πŸŽ‰ Next Steps

  1. βœ… Review the design documentation
  2. ⬇️ Download required video and image assets
  3. 🎨 Customize colors and content to match brand
  4. πŸ§ͺ Test on multiple devices and browsers
  5. πŸš€ Deploy to production server
  6. πŸ“ˆ Monitor analytics and user engagement

Version: 2.0
Created: February 2026
Status: Ready for Implementation

Design Philosophy: "Luxury Storyteller" - Premium, emotionally evocative, and energetic.


Quick Asset Checklist

Before going live, ensure you have:

  • 4 hero videos (MP4, 1920x1080)
  • 7 destination/service images (JPEG/WebP, 1920x1080+)
  • 3 testimonial avatars (JPEG, 400x400)
  • 1 logo file (SVG, transparent)
  • All content updated (dates, descriptions, contact info)
  • Tested on mobile, tablet, and desktop
  • Performance optimized (images compressed, videos under 5MB)

Ready to launch your premium travel experience! ✈️🌍

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors