Spaces:
Sleeping
Sleeping
File size: 4,294 Bytes
01704b9 da2d53f 01704b9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | /* 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;
}
} |