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 {
|
||||
background-color: #f8f9fa;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
color: #333;
|
||||
background-color: #F3F4F6;
|
||||
font-family: 'Helvetica Neue', Arial, sans-serif;
|
||||
}
|
||||
|
||||
.hero {
|
||||
background: linear-gradient(135deg, #6D28D9, #DB2777);
|
||||
background: linear-gradient(to right, #3B82F6, #10B981);
|
||||
color: white;
|
||||
padding: 6rem 2rem;
|
||||
padding: 4rem 2rem;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border-bottom-left-radius: 50% 20%;
|
||||
border-bottom-right-radius: 50% 20%;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 3.5rem;
|
||||
font-weight: 700;
|
||||
font-family: Georgia, 'Times New Roman', serif;
|
||||
font-size: 3rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.card {
|
||||
border-radius: 1rem;
|
||||
border-radius: 0.5rem;
|
||||
border: none;
|
||||
background: rgba(255, 255, 255, 0.7);
|
||||
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);
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: #DB2777;
|
||||
border-color: #DB2777;
|
||||
border-radius: 0.75rem;
|
||||
padding: 0.75rem 2rem;
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background-color: #c41a68;
|
||||
border-color: #c41a68;
|
||||
background-color: #3B82F6;
|
||||
border-color: #3B82F6;
|
||||
border-radius: 0.5rem;
|
||||
padding: 0.75rem 1.5rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
border-radius: 0.75rem;
|
||||
border-radius: 0.5rem;
|
||||
padding: 0.75rem 1.5rem;
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
#suggestion-card {
|
||||
@ -62,8 +41,4 @@ body {
|
||||
|
||||
#loading {
|
||||
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">
|
||||
<title>AI Travel Agent</title>
|
||||
<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">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="hero">
|
||||
<div class="container">
|
||||
<h1>Find Your Next Adventure</h1>
|
||||
<p class="lead">Let our AI guide you to the wonders of Poland.</p>
|
||||
<h1>Your Personal AI Travel Agent for Poland</h1>
|
||||
<p class="lead">Discover amazing places, historical sites, and hidden gems.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container mt-n5">
|
||||
<div class="container mt-5">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8">
|
||||
<div class="card p-4">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<form id="suggestion-form">
|
||||
<div class="mb-3 text-center">
|
||||
<label for="query" class="form-label fs-5 mb-3">What kind of trip are you dreaming of?</label>
|
||||
<input type="text" class="form-control form-control-lg" id="query" placeholder="e.g., a relaxing weekend by the sea">
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<button type="submit" class="btn btn-primary btn-lg">Get Suggestion</button>
|
||||
<div class="mb-3">
|
||||
<label for="query" class="form-label">What are you looking for?</label>
|
||||
<input type="text" class="form-control" id="query" placeholder="e.g., a weekend in the mountains">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Get Suggestion</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user