Spaces:
Sleeping
Sleeping
| /* 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 ; | |
| /* 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; | |
| } | |
| } |