Alaskan Whirleybirds | Your Gateway to Alaska Tours
/* — Google Font — */
@import url(‘https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap’);
/* This main container #aw-container helps prevent styles from your website theme from conflicting with our code. */
#aw-container {
font-family: ‘Nunito’, sans-serif;
margin: 0;
padding: 0;
color: #f0f8ff;
background-color: #0d1b2a;
background-image:
linear-gradient(175deg, rgba(13, 27, 42, 0.95) 0%, rgba(27, 38, 59, 0.8) 50%, rgba(65, 90, 119, 0.7) 100%),
radial-gradient(ellipse at top, #769fcd, #415a77 60%);
background-attachment: fixed;
line-height: 1.7;
width: 100%;
overflow-x: hidden; /* Prevents horizontal scroll issues */
}
/* — Enhanced Header with Navigation and Hero Image — */
#aw-container .aw-header {
background-image: url(‘https://coastalhelicopters.com/wp-content/uploads/sites/7464/2024/08/Icefield-Excursion-image-1.jpg’);
background-size: cover;
background-position: center;
color: white;
text-align: center;
padding: 80px 20px 120px;
position: relative;
border-bottom: 2px solid #769fcd;
}
#aw-container .aw-header::before {
content: “”;
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(13, 27, 42, 0.6); /* Slightly darker overlay for better text visibility */
}
#aw-container .aw-header > * {
position: relative;
z-index: 1;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
/* Navigation Bar */
#aw-container .aw-nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 40px;
background: rgba(13, 27, 42, 0.8);
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 2;
box-sizing: border-box;
}
#aw-container .aw-logo {
font-size: 1.8em;
font-weight: 700;
color: #ffc300;
text-decoration: none;
}
#aw-container .aw-menu {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 25px;
}
#aw-container .aw-menu li a {
color: #f0f8ff;
text-decoration: none;
font-weight: 600;
transition: color 0.3s;
}
#aw-container .aw-menu li a:hover {
color: #ffc300;
}
/* Hero Content */
#aw-container .aw-hero {
max-width: 900px;
margin: 100px auto 0;
}
#aw-container .aw-header h1 {
font-size: clamp(3em, 6vw, 4em); /* Larger for impact */
margin: 0 0 15px;
}
#aw-container .aw-header p {
font-size: clamp(1.4em, 3.5vw, 1.8em);
font-weight: 400;
margin: 0 0 30px;
}
/* Search Form (Modeled after alaskashoretours.com’s cruise info input) */
#aw-container .aw-search-form {
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
flex-wrap: wrap;
max-width: 600px;
margin: 0 auto;
}
#aw-container .aw-search-form input,
#aw-container .aw-search-form button {
font-family: ‘Nunito’, sans-serif;
padding: 12px 20px;
border-radius: 50px;
border: 1px solid #769fcd;
font-size: 1em;
}
#aw-container .aw-search-form input {
background: #1b263b;
color: #f0f8ff;
flex: 1;
min-width: 200px;
}
#aw-container .aw-search-form button {
background-color: #ffc300;
color: #0d1b2a;
font-weight: 700;
cursor: pointer;
transition: background-color 0.3s ease;
}
#aw-container .aw-search-form button:hover {
background-color: #ffd60a;
}
@media (max-width: 768px) {
#aw-container .aw-nav {
flex-direction: column;
gap: 15px;
padding: 15px 20px;
}
#aw-container .aw-menu {
flex-direction: column;
gap: 10px;
}
#aw-container .aw-hero {
margin-top: 150px; /* Adjust for nav height */
}
}
// Placeholder for search function (integrate with your API or logic)
function searchTours() {
const date = document.getElementById(‘tour-date’).value;
if (date) {
alert(`Searching for tours on ${date}…`); // Replace with actual functionality
}
}