<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Airline Revenue Tools</title>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
    <style>
        /* General Styles */
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Top Bar */
        .top-bar {
            background: #000;
            color: #fff;
            padding: 10px 20px;
            text-align: center;
        }

        /* Navbar */
        .navbar {
            background: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .navbar .nav-link {
            color: #333;
            font-weight: 500;
            margin-right: 15px;
        }

        .navbar .nav-link:hover {
            color: #007bff;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            background: url('https://via.placeholder.com/1920x1080') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }

        .hero h1 {
            font-size: 4rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }

        .hero p {
            font-size: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
        }

        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        /* Smooth Scrolling Effect */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease-in-out;
        }

        .fade-in.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Sections */
        .section {
            padding: 80px 20px;
            text-align: center;
        }

        .section h2 {
            margin-bottom: 30px;
            font-weight: bold;
        }

        /* Footer */
        footer {
            background: #333;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }
    </style>
</head>
<body>
    <!-- Top Bar -->
    <div class="top-bar">
        Welcome to the Airline Revenue Tools Platform
    </div>

    <!-- Navigation Bar -->
    <nav class="navbar navbar-expand-lg navbar-light sticky-top">
        <div class="container">
            <a class="navbar-brand" href="#">AirlineTools</a>
            <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
                <span class="navbar-toggler-icon"></span>
            </button>
            <div class="collapse navbar-collapse" id="navbarNav">
                <ul class="navbar-nav ms-auto">
                    <li class="nav-item"><a class="nav-link" href="#about">About</a></li>
                    <li class="nav-item"><a class="nav-link" href="#features">Features</a></li>
                    <li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
                </ul>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <div class="hero">
        <div class="content">
            <h1>Optimize Revenue, Elevate Results</h1>
            <p>Explore the best tools for airline professionals</p>
        </div>
    </div>

    <!-- About Section -->
    <div id="about" class="section fade-in">
        <h2>About Our Platform</h2>
        <p>We provide essential tools and resources for airline revenue optimization, catering to professionals worldwide.</p>
    </div>

    <!-- Features Section -->
    <div id="features" class="section fade-in">
        <h2>Key Features</h2>
        <p>From great circle distance calculations to ATPCO pricing insights, our platform empowers professionals.</p>
    </div>

    <!-- Contact Section -->
    <div id="contact" class="section fade-in">
        <h2>Contact Us</h2>
        <p>Have questions? Reach out to us for more details.</p>
    </div>

    <!-- Footer -->
    <footer>
        &copy; 2024 AirlineTools. All rights reserved.
    </footer>

    <!-- Scripts -->
    <script>
        // Fade-in effect on scroll
        const sections = document.querySelectorAll('.fade-in');

        const observer = new IntersectionObserver((entries) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.classList.add('show');
                }
            });
        });

        sections.forEach(section => observer.observe(section));
    </script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
</body>
</html>
<<<<<<< HEAD


/* Add this CSS to your assets directory (e.g., 'assets/style.css') */

/* General page styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Header style */
h1 {
    text-align: center;
    color: #1f77b4;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Verdana', sans-serif;
}

/* Chat area */
#chat-history {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    height: 400px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* User message and GPT response bubbles */
.user-message, .gpt-message {
    border-radius: 15px;
    padding: 12px 20px;
    margin-bottom: 10px;
    max-width: 75%;
    word-wrap: break-word;
    font-size: 1rem;
}

.user-message {
    background-color: #d1e7ff;
    align-self: flex-end;
}

.gpt-message {
    background-color: #f1f1f1;
    align-self: flex-start;
}

/* Input field and button */
#user-input {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border-radius: 25px;
    border: 2px solid #ccc;
    margin-bottom: 10px;
    box-sizing: border-box;
}

button {
    background-color: #1f77b4;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #4c8bf5;
}

/* Add some space to the bottom of the page */
footer {
    padding: 10px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    background-color: #fff;
}
=======
>>>>>>> 38b684b038d1be0f882eb950f6a28eebfad71ef7
