@import url('https://fonts.googleapis.com/css2?family=Georgia&family=Helvetica+Neue&display=swap'); :root { --primary-color: #0A2A43; --accent-color: #FFD700; --bg-light: #F8F9FA; --surface-white: #FFFFFF; --text-dark: #212529; } body { font-family: 'Helvetica Neue', Arial, sans-serif; color: var(--text-dark); background-color: var(--bg-light); } h1, h2, h3, h4, h5, h6 { font-family: 'Georgia', serif; } .navbar-brand { font-family: 'Georgia', serif; font-weight: bold; color: var(--accent-color) !important; } .hero { background: linear-gradient(rgba(10, 42, 67, 0.7), rgba(10, 42, 67, 0.8)), url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=2070&auto=format&fit=crop') no-repeat center center; background-size: cover; color: var(--surface-white); padding: 10rem 0; text-align: center; } .hero h1 { font-size: 3.5rem; font-weight: bold; } .hero p { font-size: 1.25rem; margin-bottom: 2rem; } .btn-primary { background-color: var(--accent-color); border-color: var(--accent-color); color: var(--primary-color); font-weight: bold; padding: 0.75rem 1.5rem; border-radius: 0.5rem; transition: all 0.3s ease; } .btn-primary:hover { background-color: #e6c300; border-color: #e6c300; transform: translateY(-2px); } .section-title { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; color: var(--primary-color); } .tour-card { border: none; border-radius: 0.5rem; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; } .tour-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); } .tour-card .card-body { padding: 1.5rem; } .tour-card .card-title { color: var(--primary-color); font-size: 1.5rem; } .tour-card .card-price { color: var(--accent-color); font-weight: bold; font-size: 1.25rem; } .footer { background-color: var(--primary-color); color: var(--surface-white); padding: 3rem 0; } .footer a { color: var(--accent-color); text-decoration: none; } .footer a:hover { text-decoration: underline; }