Spaces:
Sleeping
Sleeping
File size: 3,711 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 | /* experiencedetails_clean.css */
body {
background: #203667;
font-family: 'Cairo', sans-serif;
color: #F2F4EF;
margin: 0;
padding-top: 80px;
/* Navbar space */
}
.details-container {
max-width: 1200px;
margin: 0 auto;
padding: 40px;
}
/* Header */
.details-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 40px;
margin-bottom: 60px;
}
.header-text h1 {
font-size: 48px;
line-height: 1.2;
margin-bottom: 20px;
color: #FDC554;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.header-text p {
font-size: 24px;
opacity: 0.9;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.header-map {
flex-shrink: 0;
width: 400px;
height: 300px;
background: #FBF6DC;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
color: #203667;
font-weight: 900;
font-size: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* Core Focus Points */
.focus-points-section h2 {
font-size: 40px;
border-bottom: 2px solid #FDC554;
display: inline-block;
margin-bottom: 40px;
}
.points-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.point-card {
background: #142448;
padding: 30px;
border-radius: 30px;
text-align: center;
border: 1px solid rgba(253, 197, 84, 0.1);
transition: transform 0.3s;
}
.point-card:hover {
transform: translateY(-5px);
border-color: #FDC554;
}
.point-icon {
font-size: 50px;
margin-bottom: 20px;
}
.point-card h3 {
color: #FDC554;
margin-bottom: 10px;
font-size: 24px;
}
.point-card p {
font-size: 16px;
line-height: 1.5;
}
/* Action Bar */
.action-bar {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: #142448;
padding: 20px 60px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
z-index: 100;
}
.price-tag {
font-size: 24px;
font-weight: 700;
}
.price-tag span {
color: #FDC554;
font-size: 32px;
}
.detail-book-btn {
background: #FDC554;
color: #203667;
border: none;
padding: 15px 40px;
font-size: 20px;
font-weight: 700;
border-radius: 50px;
cursor: pointer;
font-family: 'Cairo', sans-serif;
transition: transform 0.2s;
}
.detail-book-btn:hover {
transform: scale(1.05);
}
/* Responsive Design */
@media (max-width: 1024px) {
.details-container {
padding: 30px;
}
.header-text h1 {
font-size: 40px;
}
}
@media (max-width: 768px) {
.details-container {
padding: 20px;
}
.details-header {
flex-direction: column;
padding: 30px 20px !important;
/* Override inline bg padding */
min-height: auto;
gap: 30px;
}
.header-text h1 {
font-size: 32px;
}
.header-text p {
font-size: 18px;
}
.header-map {
width: 100%;
height: 200px;
}
.focus-points-section h2 {
font-size: 28px;
margin-bottom: 30px;
}
.points-grid {
grid-template-columns: 1fr;
}
.action-bar {
padding: 15px 20px;
}
.price-tag {
font-size: 18px;
}
.price-tag span {
font-size: 26px;
}
.detail-book-btn {
padding: 12px 30px;
font-size: 16px;
}
} |