Revert to version 503a892
This commit is contained in:
parent
a5e399e852
commit
8bbf937b65
@ -1,59 +1,38 @@
|
|||||||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #f8f9fa;
|
background-color: #F3F4F6;
|
||||||
font-family: 'Poppins', sans-serif;
|
font-family: 'Helvetica Neue', Arial, sans-serif;
|
||||||
color: #333;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero {
|
.hero {
|
||||||
background: linear-gradient(135deg, #6D28D9, #DB2777);
|
background: linear-gradient(to right, #3B82F6, #10B981);
|
||||||
color: white;
|
color: white;
|
||||||
padding: 6rem 2rem;
|
padding: 4rem 2rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: relative;
|
|
||||||
overflow: hidden;
|
|
||||||
border-bottom-left-radius: 50% 20%;
|
|
||||||
border-bottom-right-radius: 50% 20%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero h1 {
|
.hero h1 {
|
||||||
font-size: 3.5rem;
|
font-family: Georgia, 'Times New Roman', serif;
|
||||||
font-weight: 700;
|
font-size: 3rem;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
border-radius: 1rem;
|
border-radius: 0.5rem;
|
||||||
border: none;
|
border: none;
|
||||||
background: rgba(255, 255, 255, 0.7);
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||||
backdrop-filter: blur(10px);
|
|
||||||
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
|
|
||||||
transition: transform 0.2s ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card:hover {
|
|
||||||
transform: translateY(-5px);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
background-color: #DB2777;
|
background-color: #3B82F6;
|
||||||
border-color: #DB2777;
|
border-color: #3B82F6;
|
||||||
border-radius: 0.75rem;
|
border-radius: 0.5rem;
|
||||||
padding: 0.75rem 2rem;
|
padding: 0.75rem 1.5rem;
|
||||||
font-weight: 600;
|
font-weight: bold;
|
||||||
transition: background-color 0.2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary:hover {
|
|
||||||
background-color: #c41a68;
|
|
||||||
border-color: #c41a68;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-control {
|
.form-control {
|
||||||
border-radius: 0.75rem;
|
border-radius: 0.5rem;
|
||||||
padding: 0.75rem 1.5rem;
|
padding: 0.75rem 1.5rem;
|
||||||
background: rgba(255, 255, 255, 0.8);
|
|
||||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#suggestion-card {
|
#suggestion-card {
|
||||||
@ -62,8 +41,4 @@ body {
|
|||||||
|
|
||||||
#loading {
|
#loading {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
|
||||||
|
|
||||||
.spinner-border {
|
|
||||||
color: #DB2777 !important;
|
|
||||||
}
|
}
|
||||||
21
index.php
21
index.php
@ -5,33 +5,28 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>AI Travel Agent</title>
|
<title>AI Travel Agent</title>
|
||||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
|
|
||||||
<link href="assets/css/custom.css?v=<?php echo time(); ?>" rel="stylesheet">
|
<link href="assets/css/custom.css?v=<?php echo time(); ?>" rel="stylesheet">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="hero">
|
<div class="hero">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Find Your Next Adventure</h1>
|
<h1>Your Personal AI Travel Agent for Poland</h1>
|
||||||
<p class="lead">Let our AI guide you to the wonders of Poland.</p>
|
<p class="lead">Discover amazing places, historical sites, and hidden gems.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container mt-n5">
|
<div class="container mt-5">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
<div class="card p-4">
|
<div class="card">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<form id="suggestion-form">
|
<form id="suggestion-form">
|
||||||
<div class="mb-3 text-center">
|
<div class="mb-3">
|
||||||
<label for="query" class="form-label fs-5 mb-3">What kind of trip are you dreaming of?</label>
|
<label for="query" class="form-label">What are you looking for?</label>
|
||||||
<input type="text" class="form-control form-control-lg" id="query" placeholder="e.g., a relaxing weekend by the sea">
|
<input type="text" class="form-control" id="query" placeholder="e.g., a weekend in the mountains">
|
||||||
</div>
|
|
||||||
<div class="text-center">
|
|
||||||
<button type="submit" class="btn btn-primary btn-lg">Get Suggestion</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
<button type="submit" class="btn btn-primary">Get Suggestion</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user