/* 
    Google Fonts Imports

// <weight>: Use a value from 200 to 700
// <uniquifier>: Use a unique and descriptive class name

.oswald-<uniquifier> {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;

}

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.roboto-<uniquifier> {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/
/* #region Base Styles & Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

main {
  padding: 2rem 0rem 2rem 0;
  width: 50%;
  max-width: 90rem;
  margin: 0 auto;
}

/* #endregion Base Styles & Resets */
a:focus-visible, button:focus-visible {
  outline: 3px solid #007bff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
header {
  background-color: #004466;
  padding: 1rem;
}
header .custom-navbar .nav-link {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.75rem;
  display: inline-block;
}
header .custom-navbar .navbar-toggler {
  border-color: #ffffff;
}
header .custom-navbar .navbar-toggler .navbar-toggler-icon {
  color: #ffffff;
}
header .custom-navbar .navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 0;
}
header .custom-navbar .navbar-nav {
  align-items: end;
}
@media (min-width: 600px) {
  header .custom-navbar .navbar-brand img {
    margin-right: 1rem;
  }
}
header .custom-toggler {
  padding: 0.5rem;
}
header .custom-toggler .toggler-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: transform 0.45s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s ease;
}
header .custom-toggler[aria-expanded=true] .toggler-icon:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header .custom-toggler[aria-expanded=true] .toggler-icon:nth-child(2) {
  opacity: 0;
}
header .custom-toggler[aria-expanded=true] .toggler-icon:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover, nav a:focus {
  text-decoration: underline;
}

section {
  margin-bottom: 2rem;
}

h2 {
  margin-bottom: 0.5rem;
  color: #0d5e87;
}

.intro-h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: #0d5e87;
  text-align: center;
}

.custom-button {
  background-color: #004466;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.custom-button:hover, .custom-button:focus-visible {
  background-color: #006699;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35);
}

.important-button {
  background-color: #007bff;
}
.important-button:hover, .important-button:focus-visible {
  background-color: #0062cc;
  transform: translateY(-3px);
}

.secondary-button {
  background-color: #7c9dbc;
}
.secondary-button:hover {
  background-color: #5a84ab;
}

.masonry-gallery-small-section {
  margin: 3rem auto;
  max-width: 80vw;
  padding: 0.5rem;
  background-color: #f9f9f9;
}

.masonry-gallery-small {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.masonry-gallery-small img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  display: block;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
}
.masonry-gallery-small img:hover {
  transform: scale(1.25);
  transition: transform 0.6s ease;
}
@media (max-width: 768px) {
  .masonry-gallery-small {
    -moz-column-count: 1;
         column-count: 1;
  }
  .masonry-gallery-small img:hover {
    transform: scale(1.25);
    transition: transform 0.3s ease;
  }
}

.custom-hero {
  width: 100%;
  max-width: none;
  padding: 2rem;
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(120, 186, 219, 0.8), rgba(0, 68, 102, 0.8)), url("/images/Gallery Photos/Kwigwis-Gallery-17.jpeg") no-repeat center center;
  background-size: cover;
}
.custom-hero h1 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

.custom-hero-text-logo {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
}

.home-cta {
  font-weight: bold;
}

.home-page-buttons {
  text-decoration: none;
  max-width: 400px;
}
.home-page-buttons:hover {
  color: #ffffff;
}

.three-column-intro-photos {
  margin: 3rem auto;
  max-width: 80vw;
  padding: 0.5rem;
  background-color: #f9f9f9;
}

.about-captain-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .about-captain-section {
    flex-direction: row;
    align-items: center;
  }
  .about-captain-section .about-captain-text {
    flex: 1;
    padding-right: 1rem;
  }
}

.simple-inline-portrait {
  max-width: 350px;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
}
.simple-inline-portrait:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.gallery-intro-heading {
  font-size: 5rem;
}

.gallery-intro-paragraph {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: -2rem;
}

.gallery-section {
  margin: 3rem auto;
  max-width: 80vw;
  padding: 0.5rem;
  background-color: #f9f9f9;
}

.masonry-gallery {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.masonry-gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  display: block;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
}
.masonry-gallery img:hover {
  transform: scale(1.25);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .masonry-gallery {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.address-section {
  margin: 2rem auto;
  padding: 1rem;
  background-color: #e6f7ff;
  border-left: 0.25rem solid #0d5e87;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
}
.address-section p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d5e87;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.package-list-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 0.1rem solid #0d5e87;
  border-radius: 0.5rem;
  background-color: #f9f9f9;
}
.package-list-item:first-child {
  margin-top: 1rem;
}

.package-title {
  font-family: "montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 1rem;
  color: #0d5e87;
}

.contact-intro {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #0d5e87;
  padding-bottom: 1rem;
}

.contact-heading {
  font-family: "Oswald", sans-serif;
  color: #0d5e87;
  font-size: 2.5rem;
  padding-bottom: 1rem;
}

.whale-gallery-band {
  margin: 1rem auto;
}
.whale-gallery-band .whale-watching-picture {
  display: block;
  margin: 0rem auto 2rem auto;
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
  height: auto;
}
.whale-gallery-band .photo-credit {
  text-align: center;
  font-size: 0.85rem;
  color: #333;
  margin-top: -2rem;
  margin-bottom: 2rem;
}

.policy-section {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #ececec;
  border-left: 0.25rem solid #0d5e87;
  border-radius: 0.5rem;
}

footer {
  background-color: #222;
  color: #ffffff;
  padding: 1rem;
  text-align: center;
}
footer nav ul {
  display: flex;
  gap: 1rem;
  justify-content: center;
  list-style: none;
  margin-top: 0.5rem;
}
footer nav a {
  color: #ffffff;
  text-decoration: none;
}
footer nav a:hover {
  text-decoration: underline;
}
footer .social-media-links {
  margin-top: 0.5rem;
}
footer .social-media-links a {
  color: #ffffff;
  margin: 0 0.5rem;
  display: inline-block;
}
footer .social-media-links svg.bi {
  width: 1.5rem;
  height: 1.5rem;
}

@media (max-width: 600px) {
  main {
    width: 100%;
    padding: 2rem;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  footer nav ul {
    flex-direction: row;
    align-items: center;
    padding-left: 0;
  }
  footer nav ul .footer-links {
    margin: 0 0.5rem;
  }
  footer nav ul li {
    margin: 0 0.5rem;
  }
  footer .social-media-links {
    justify-content: center;
  }
  .intro-h1 {
    font-size: 2.7rem;
  }
  .custom-hero {
    padding: 1rem;
  }
  .custom-hero h1 {
    font-size: 1.5rem;
  }
  .custom-hero .custom-hero-image {
    width: 70%;
    height: auto;
  }
  /* About Us Section */
  .simple-inline-portrait {
    max-width: 100%;
  }
  .gallery-intro-heading {
    font-size: 4rem;
  }
  .gallery-intro-paragraph {
    margin-bottom: -1rem;
  }
  .address-section p {
    font-size: 1rem;
  }
  .contact-intro {
    font-size: 2.2rem;
  }
  .contact-heading {
    font-size: 2rem;
  }
  .whale-watching-picture {
    max-width: 100%;
  }
}
@media (min-width: 601px) and (max-width: 1023px) {
  main {
    width: 90%;
    padding: 2rem;
  }
  .intro-h1 {
    font-size: 3.5rem;
  }
  .custom-hero {
    padding: 1.5rem;
  }
  .custom-hero h1 {
    font-size: 2.5rem;
  }
  .custom-hero .custom-hero-image {
    width: 50%;
    height: auto;
  }
  /* About Us Section */
  .simple-inline-portrait {
    max-width: 60%;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=styles.css.map */