@charset "UTF-8";
/* Custom Properties */
:root {
  --beer-foam: #f2e2c4;
  --stout-black: #070a0e;
  --hops-green: #4B7334;
  --amber-glow: #f49d04;
}

/* Base styles */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--stout-black);
  background-color: #ffffff;
}

a {
  color: var(--stout-black);
  font-weight: 700;
  text-decoration: underline;
}

a:hover,
a:focus {
  color: var(--hops-green);
  text-decoration: none; 
  border-bottom: 2px solid var(--hops-green);
}

a:active {
  color: var(--hops-green);
  text-decoration: none;
  opacity: 0.8;
}

a:visited{
    border-bottom: 2px solid var(--hops-green);
}


.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5em;
}

/* Header */
header {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding: 0 1.5em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-secondary {
  font-family: 'Georama', sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--stout-black);
  display: flex;
  align-items: center;
}

.logo-secondary img {
  max-height: 90px;
  width: auto;
  height:90px;
}

/* Navigation */
.menu-icon {
  display: none;
}

.main-nav {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  margin-left: auto;
}

.main-nav a {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  color: var(--stout-black);
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:active {
  color: var(--amber-glow);
  
}

.main-nav a.active {
  color: var(--stout-black);
  border-bottom: 2px solid var(--amber-glow);
}

#menu-toggle {
  display: none;
}

/* Typography */

p {
  font-size: 18px;
  line-height: 1.5;
  text-align:left;
}

h1 {
  font-family: 'Georama', sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}

h2 {
  font-family: 'Georama', sans-serif;
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: left;
}


h3 {
  font-family: 'Georama', sans-serif;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: left;
  color: var(--stout-black);
  border-left: 5px solid var(--hops-green);
  padding-left: 12px;
}


h4 {
  font-family: 'Georama', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}


.destination-title {
  font-family: 'Georama', sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 20px 20px 0;
}

/* Hero Home Page */
.hero {
  background-color: rgba(242, 226, 196, 0.8); /* beer foam 0.8 = 80% opacity */
  border-bottom: 10px solid var(--hops-green); 
  padding: 3em 0;
}


.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
}

.hero-text {
  flex: 1;
  padding-right: 20px;
}

.hero-logo {
  flex: 1;
  display: flex; 
  justify-content: center; 
  align-items: center;
}

.hero-logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
}


/* Sections */
.secondary-hero,
.travel-text {
  padding: 1em 0;
}

/* Map Section */
.map-section {
  text-align: center;
  padding: 3em 0;
}

.map-section iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* Photo Grid */
.photo-grid {
  padding: 1em 0;
  max-width: 1000px;
  margin: 0 auto;
}

.photo-grid-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}

.photo-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.photo-grid-heading,
.photo-grid-subheading {
  text-align: left;
  margin-bottom: 1em;
}

.photo-item {
  position: relative;
  overflow: hidden;
}

.photo-caption {
  position: absolute;
  bottom: 0;
  background-color: rgba(242, 226, 196, 0.8); /* beer foam 0.5 = 80% opacity */
  color: var(--stout-black);
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  transform: translateY(-4%); 
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 1; 
  border-top: 4px solid var(--hops-green);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;

}

.photo-item:hover .photo-caption {
  transform: translateY(100%); 
  opacity: 0; 
}


/* Footer */
footer {
  width: 100%;
  background-color: rgba(242, 226, 196, 0.7);
  color: var(--stout-black);
  text-align: center;
  padding: 2em 1em;
  margin-top: 50px;
  border-top: 10px solid var(--hops-green); 
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin-bottom: 1em;
}

.footer-logos img {
  width: 40px;
  height: auto;
}


.footer-text {
  font-size: 18px;
  font-weight: bold;
}

/* Plane Asset*/
.plane-trail {
  position: absolute;
  right: 90px;
  top: 70%;
  transform: translateY(-95%);
  height:200px;
}

/* Destination Banner */
.destination-banner {
  background-color: var(--beer-foam);
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  overflow: visible;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  width: 240px;
  margin-bottom: 25px;
}

.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  border: 3px solid var(--hops-green);
  border-radius: 15px;
  background-color: white;
  color: var(--stout-black);
  cursor: pointer;
  text-align: left;
}

.arrow {
  transition: transform 0.3s ease;
}

.dropdown-toggle.open .arrow {
  transform: rotate(180deg);
}

.dropdown-list {
  display: none;
  position: absolute;
  width: 100%;
  background-color: white;
  border: 2px solid var(--hops-green);
  border-radius: 15px;
  margin-top: 5px;
  list-style: none;
  padding: 0;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-list li {
  padding: 12px 16px;
  margin: 4px 8px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.dropdown-list li:hover {
  background-color: var(--beer-foam);
}


/* Responsive Code */
@media (max-width: 600px) {
  .container {
    padding: 0 1em;
  }

  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1em 1.5em;
    height: auto;
    position: relative;
  }

  .logo-secondary {
    font-size: 20px;
    line-height: 120px;
  }

  #menu-toggle {
    display: none;
  }

  .menu-icon {
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 1001;
  }

  .menu-icon::before {
    content: "☰";
    font-size: 32px;
    color: var(--stout-black);
  }

  #menu-toggle:checked + .menu-icon::before {
    content: "✖";
    color: var(--amber-glow);
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  #menu-toggle:checked + .menu-icon + .main-nav {
    display: flex;
  }

  .main-nav a {
    text-align: center;
    font-size: 20px;
    padding: 0.5em 0;
  }

  .hero {
    padding: 2em 1em;
    text-align: left;
  }

  .hero-text,
  .hero-logo {
    flex: 1 1 100%;
    text-align: left;
  }

  .map-section iframe {
    height: 400px;
  }

  .photo-grid-items {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    padding: 2em 1em;
  }

  .photo-caption {
    font-size: 14px;
    height: 50px;
  }

  .plane-trail {
    display: none !important;
  }

  .footer-logos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
  }

  .footer-text {
    font-size: 16px;
  }

  .logo-secondary img {
    padding: 1em;
    max-height: 90px;
  }

  .jump-menu {
    text-align: center;
  }

  .destination-banner {
    text-align: center;
  }

  .destination-title {
    align-items: center;
    text-align: center;
  }
}
