tarist-web / static /css /explore_style.css
moathA's picture
Upload folder using huggingface_hub
da2d53f verified
/* explore_style.css */
body {
background: #203667;
margin: 0;
font-family: 'Cairo', sans-serif;
color: #F2F4EF;
}
.explore-container {
padding: 100px 64px 40px 64px;
max-width: 1400px;
margin: 0 auto;
}
/* Header Section */
.explore-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
}
.explore-header h1 {
font-size: 48px;
color: #F2F4EF;
margin: 0;
}
.stats-card {
background: rgba(251, 246, 220, 0.9);
/* #FBF6DC */
padding: 20px 40px;
border-radius: 23px;
display: flex;
gap: 40px;
color: #203667;
}
.stat-item {
display: flex;
flex-direction: column;
align-items: center;
}
.stat-number {
font-size: 24px;
font-weight: 700;
}
.stat-label {
font-size: 14px;
}
/* Filter Bar */
.filter-bar {
display: flex;
gap: 20px;
margin-bottom: 40px;
overflow-x: auto;
padding-bottom: 10px;
}
.filter-btn {
background: #203667;
color: #FFFFFF;
border: none;
padding: 10px 30px;
border-radius: 40px;
font-family: 'Cairo';
font-weight: 700;
font-size: 16px;
cursor: pointer;
box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
transition: background 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
background: #FDC554;
/* Gold */
color: #203667;
}
/* Grid */
.section-title {
font-size: 36px;
margin-bottom: 20px;
}
.experiences-grid {
display: flex;
flex-wrap: nowrap;
gap: 30px;
justify-content: flex-start;
overflow-x: auto;
padding-bottom: 20px;
}
.experience-card {
background: #E8E8E8;
border-radius: 20px;
width: 300px;
height: 400px;
position: relative;
overflow: hidden;
transition: transform 0.3s;
cursor: pointer;
}
.experience-card:hover {
transform: translateY(-10px);
}
.card-image {
height: 60%;
background: #ccc;
/* Placeholder grey */
background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}
.card-content {
padding: 20px;
color: #203667;
height: 40%;
position: relative;
}
.card-price {
position: absolute;
top: -20px;
/* Overlap image */
right: 20px;
background: #FDC554;
padding: 5px 15px;
border-radius: 20px;
font-weight: 700;
font-size: 14px;
}
.experience-card h3 {
margin: 10px 0;
font-size: 18px;
line-height: 1.4;
}
.card-meta {
display: flex;
justify-content: space-between;
font-size: 14px;
color: #666;
margin-top: 10px;
}
/* Auth Popup Styles */
.popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(20, 36, 72, 0.9);
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
}
.popup-content {
background: #F2F4EF;
padding: 40px;
border-radius: 20px;
text-align: center;
max-width: 400px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
border: 4px solid #FDC554;
}
.popup-content h2 {
color: #203667;
margin-top: 0;
}
.popup-content p {
color: #666;
margin-bottom: 30px;
}
.popup-actions {
display: flex;
gap: 15px;
justify-content: center;
}
/* Responsive Design */
@media (max-width: 1024px) {
.explore-container {
padding: 90px 40px 40px 40px;
}
}
@media (max-width: 768px) {
.explore-container {
padding: 80px 20px 40px 20px;
}
.explore-header {
flex-direction: column;
align-items: flex-start;
gap: 20px;
}
.explore-header h1 {
font-size: 32px;
}
.stats-card {
width: 100%;
padding: 15px 25px;
gap: 20px;
justify-content: center;
}
.section-title {
font-size: 28px;
}
.experiences-grid {
flex-direction: row;
/* Keep scrollable but better spacing */
gap: 20px;
}
.experience-card {
width: 280px;
height: 380px;
flex-shrink: 0;
}
}