/* Global Styles */
body {
    font-family: 'Nunito', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    color: #0077b6; /* Deep Ocean Blue */
}

/* Navbar */
#mainNav {
    background-color: #0096c7; /* Pacific Blue */
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: background-color 0.3s ease-in-out;
}

#mainNav .navbar-brand {
    font-family: 'Fredoka One', cursive;
    font-size: 1.75rem;
    color: #fff;
}

#mainNav .nav-link {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#mainNav .nav-link:hover, #mainNav .nav-link.active {
    color: #ffb703; /* Sun Yellow */
}

/* Masthead (Hero) */
header.masthead {
    padding-top: 10.5rem;
    padding-bottom: 6rem;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(rgba(0, 119, 182, 0.6), rgba(0, 119, 182, 0.4)), url('https://images.unsplash.com/photo-1544256718-3bcf237f3974?auto=format&fit=crop&q=80&w=2000');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

header.masthead .site-heading {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

header.masthead h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

header.masthead .subheading {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 2rem;
    font-family: 'Nunito', sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Buttons */
.btn-primary {
    background-color: #ffb703;
    border-color: #ffb703;
    font-family: 'Fredoka One', cursive;
    color: #fff;
    padding: 1.25rem 2.5rem;
    text-transform: uppercase;
    font-size: 1.25rem;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: #fb8500;
    border-color: #fb8500;
}

/* Attractions */
.page-section {
    padding: 6rem 0;
}

.section-heading {
    text-transform: uppercase;
}

.section-subheading {
    margin-bottom: 4rem;
    font-style: italic;
    font-size: 1.25rem;
}

.attraction-card {
    border: none;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-card img {
    height: 200px;
    object-fit: cover;
}

.attraction-card .card-body {
    padding: 2rem;
    background-color: #fff;
}

/* Gallery */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #caf0f8;
    color: #03045e;
}

.btn-social {
    border-radius: 100%;
    display: inline-flex;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.25rem;
    justify-content: center;
    align-items: center;
}
