@charset "UTF-8";
/* =====================
   VARIABLES
===================== */
/* =====================
   TYPOGRAPHY
===================== */
@font-face {
  font-family: "Merriweather";
  src: url("../typography/Merriweather-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Nunito";
  src: url("../typography/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
}
/* =====================
   RESET & BASE STYLES
===================== */
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  border: none;
  transition: all 0.3s ease;
  list-style: none;
  text-decoration: none;
  font-family: "Nunito";
}

body {
  background-color: #fdfdfd;
  overflow-x: hidden;
  color: #fdfdfd;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
  width: 100%;
}

/* =====================
   MIXINS
===================== */
/* =====================
   UTILITIES
===================== */
.bold {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.green-text {
  color: rgb(22, 148, 22);
}

.red-text {
  color: red;
}

.important-text {
  color: #fdfdfd;
}

.hidden {
  opacity: 0;
  scale: 0.8;
}

.shown {
  opacity: 1;
  scale: 1;
}

hr {
  width: 100%;
  background-color: #fdfdfd;
  height: 2px;
}

/* =====================
   BUTTONS
===================== */
.btn {
  padding: 0.7rem 1.6rem;
  border-radius: 35px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.4) 80%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fdfdfd;
  box-shadow: 0 0 15px rgba(173, 216, 230, 0.3);
}
.btn:hover {
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.5);
}
@media screen and (min-width: 700px) {
  .btn {
    max-width: 250px;
  }
}
.btn:active {
  transform: scale(0.95);
  box-shadow: none;
}
.btn:hover {
  translate: 0px -5px;
}

.ghost-btn {
  background: transparent;
  border: solid 2px #fdfdfd;
  color: #fdfdfd;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.ghost-btn:hover {
  box-shadow: 0 4px 12px rgba(11, 28, 44, 0.3);
  transform: translateY(-2px);
}
.ghost-btn:active {
  transform: scale(0.95);
  box-shadow: none;
}

/* =====================
   LAYOUT UTILITIES
===================== */
.body-content {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
  background: linear-gradient(#0b1c2c, #fdfdfd);
}

section {
  padding: 1rem;
  max-width: 1200px;
  margin-bottom: 50px;
}

.card {
  background-color: #0b1c2c;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.card .card-content {
  position: relative;
  padding: 1rem;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.card::after {
  content: "✿";
  position: absolute;
  bottom: 0;
  right: 10px;
  font-size: 8rem;
  color: rgba(253, 253, 253, 0.1);
  pointer-events: none;
  line-height: 1;
  transform: translateY(25%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover::after {
  opacity: 1;
}

.section-title {
  color: #0b1c2c;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-family: "Merriweather";
  letter-spacing: 2px;
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

/* .section-subtitle {
	color: $secondary-color;
	text-align: center;
	margin-bottom: 1rem;
	font-size: 1.2rem;
} */
.two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .two-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.show-up,
.show-down,
.show-left,
.show-right,
.bounce-in,
.rotate-left,
.rotate-right {
  opacity: 0;
}

.animated {
  opacity: 1;
}
.animated.show-up {
  animation: showUp 0.5s;
}
.animated.show-down {
  animation: showDown 0.5s;
}
.animated.show-left {
  animation: showLeft 0.5s;
}
.animated.show-right {
  animation: showRight 0.5s;
}
.animated.bounce-in {
  animation: bounceIn 0.5s;
}
.animated.rotate-left {
  animation: rotateLeft 0.5s;
}
.animated.rotate-right {
  animation: rotateRight 0.5s;
}

/* ---------------------
   Keyframes
--------------------- */
@keyframes showUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes showDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes showLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes showRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes rotateLeft {
  0% {
    transform: translateX(-100%) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes rotateRight {
  0% {
    transform: translateX(100%) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
.nav {
  position: fixed;
  z-index: 1000;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: bold;
  border-radius: 35px;
  width: 90%;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
  max-height: 60px;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.4) 80%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fdfdfd;
  box-shadow: 0 0 15px rgba(173, 216, 230, 0.3);
}
.nav:hover {
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.5);
}
@media screen and (min-width: 700px) {
  .nav {
    flex-direction: row;
    max-height: 70px;
  }
  .nav .nav-bar-social {
    display: none;
  }
}

.nav-icon-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  text-wrap: nowrap;
}
.nav-icon-wrapper .nav-icon {
  width: 100%;
  max-width: 40px;
}
@media screen and (min-width: 700px) {
  .nav-icon-wrapper .nav-icon {
    max-width: 50px;
  }
}
.nav-icon-wrapper .nav-title {
  font-size: 1.8rem;
  font-family: "Merriweather";
}
.nav-icon-wrapper .nav-title:hover {
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.556);
}

.nav-icon-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.5rem;
  margin-top: 1rem;
}
@media screen and (min-width: 700px) {
  .nav-links {
    margin-top: 0;
    flex-direction: row;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
  }
}

.nav-link:hover {
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.556);
}
@media screen and (min-width: 700px) {
  .nav-link {
    padding: 0.5rem 1rem;
    display: flex;
    gap: 10px;
    border-radius: 100vh;
  }
}

.nav-bar-social {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
}

.nav-social-links {
  display: flex;
  justify-content: space-around;
}

.social-link {
  width: 50px;
}

.toggle-btn {
  background: none;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 35px;
  height: 30px;
  padding: 5px;
  border-radius: 5px;
}
@media screen and (min-width: 700px) {
  .toggle-btn {
    display: none;
  }
}
.toggle-btn .bar {
  height: 3px;
  width: 100%;
  background-color: #fdfdfd;
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.2s ease;
}
.toggle-btn.toggled .bar:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.toggle-btn.toggled .bar:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}
.toggle-btn.toggled .bar:nth-child(2) {
  opacity: 0;
}

.footer {
  background: #0b1c2c;
  color: #fdfdfd;
  padding: 3rem 1.5rem;
  font-family: "Merriweather", serif;
  text-align: center;
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
}
.footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-brand .footer-logo {
  max-width: 100px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.footer .footer-brand .footer-logo:hover {
  transform: scale(1.05);
}
.footer .footer-links h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.footer .footer-links ul a {
  text-decoration: none;
  font-size: 0.95rem;
}
.footer .footer-links ul a:hover {
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.556);
}
.footer .footer-social h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer .footer-social .social-media {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.footer .footer-social .social-media .social-link {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(253, 253, 253, 0.15);
  border-radius: 50%;
  font-weight: 600;
  color: #fdfdfd;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.3rem;
}
.footer .footer-social .social-media .social-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(253, 253, 253, 0.3);
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.4) 80%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fdfdfd;
  box-shadow: 0 0 15px rgba(173, 216, 230, 0.3);
}
.footer .footer-social .social-media .social-link:hover:hover {
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.5);
}
.footer .footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(253, 253, 253, 0.2);
  text-align: center;
}
.footer .footer-bottom .copyright {
  font-size: 0.85rem;
  color: #fdfdfd;
  font-weight: 600;
  text-decoration: none;
}
.footer .footer-bottom .copyright:hover {
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.556);
}
.footer .footer-bottom .footer-description {
  font-size: 0.9rem;
  color: white;
  margin-top: 0.5rem;
}

/* =====================
   HEADER
===================== */
.header {
  height: 100vh;
  background: url("../assets/header.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.header::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.7) 90%);
  pointer-events: none;
}
@media screen and (min-width: 700px) {
  .header {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}

.header-content {
  z-index: 2;
  padding: 2rem;
  width: 100%;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .header-content {
    text-align: left;
    margin-left: 5%;
    width: 45%;
  }
}

.header-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: "Merriweather";
}

.header-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.cta-section {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (min-width: 700px) {
  .cta-section {
    justify-content: flex-start;
  }
}
.cta-section .btn {
  display: inline-block;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.4) 80%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fdfdfd;
  box-shadow: 0 0 15px rgba(173, 216, 230, 0.3);
}
.cta-section .btn:hover {
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.5);
}
.cta-section .btn:hover {
  transform: translateY(-2px);
}

/* =====================
   INFO SECTION
===================== */
.info-section {
  margin-top: 2rem;
}

.info-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 700px) {
  .info-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.4) 80%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fdfdfd;
  box-shadow: 0 0 15px rgba(173, 216, 230, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.15);
}
.info-card:hover {
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.5);
}
@media screen and (min-width: 700px) {
  .info-card {
    max-width: 500px;
  }
}
.info-card:hover {
  border: 1px solid rgba(200, 230, 255, 0.9);
  transform: translateY(-6px) scale(1.02);
}

.info-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  padding: 0.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
  background: rgba(200, 230, 255, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.4), 0 0 8px rgba(200, 230, 255, 0.4);
}
.info-card:hover .info-icon {
  transform: scale(1.05) rotate(-3deg);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.info-title {
  font-family: "Merriweather";
  font-size: 1.3rem;
  font-weight: 600;
}

.info-text {
  font-size: 1rem;
  line-height: 1.5;
}

/* =====================
   GALLERY SECTION
===================== */
.gallery-section .section-title,
.gallery-section .section-subtitle {
  color: #fdfdfd;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: 0.75rem;
  width: 100%;
}
.gallery-container .btn {
  max-width: none;
}
.gallery-container:hover .gallery-item:not(:hover) {
  filter: grayscale(1);
}
@media screen and (min-width: 700px) {
  .gallery-container {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.25rem;
  }
}

.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
  cursor: pointer;
  position: relative;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.4) 80%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fdfdfd;
  box-shadow: 0 0 15px rgba(173, 216, 230, 0.3);
}
.gallery-item:hover {
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.5);
}
.gallery-item:hover {
  transform: scale(1.03);
  filter: brightness(1.1) saturate(1.1);
}
.gallery-item:nth-child(1) {
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}
.gallery-item:nth-child(6) {
  grid-row: span 2;
}
@media screen and (min-width: 700px) {
  .gallery-item:nth-child(1) {
    grid-row: auto;
  }
  .gallery-item:nth-child(2) {
    grid-row: span 2;
  }
  .gallery-item:nth-child(3) {
    grid-column: span 2;
  }
  .gallery-item:nth-child(4) {
    grid-column: auto;
  }
  .gallery-item:nth-child(6) {
    display: none;
  }
}

/* =====================
   TIMELINE SECTION
===================== */
.timeline-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  position: relative;
}
.timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 3px;
  border-radius: 100dvh;
  background: rgba(11, 28, 44, 0.4);
}
@media screen and (min-width: 700px) {
  .timeline-container::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  display: flex;
  gap: 1rem;
  padding-left: 3rem;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 14px;
  width: 16px;
  height: 16px;
  border-radius: 100dvh;
  background: #0b1c2c;
  box-shadow: 0 0 0 4px rgba(11, 28, 44, 0.2);
}
.timeline-item p {
  font-size: 1rem;
  line-height: 1.5;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.4) 80%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fdfdfd;
  box-shadow: 0 0 15px rgba(173, 216, 230, 0.3);
  color: #0b1c2c;
}
.timeline-item p:hover {
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.5);
}
@media screen and (min-width: 700px) {
  .timeline-item {
    width: 45%;
    padding-left: 0;
  }
  .timeline-item:nth-child(odd) {
    align-self: flex-start;
    padding-right: 2rem;
  }
  .timeline-item:nth-child(odd)::before {
    left: auto;
    right: -36px;
  }
  .timeline-item:nth-child(even) {
    align-self: flex-end;
    padding-left: 2rem;
  }
  .timeline-item:nth-child(even)::before {
    left: -36px;
  }
}

/* =====================
	FACTS SECTION
===================== */
.facts-section {
  width: 100%;
}

.facts-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1.5rem;
}

.fact-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 700px) {
  .fact-item {
    flex-direction: row;
    gap: 30px;
  }
  .fact-item * {
    max-width: 400px;
  }
  .fact-item:nth-child(2) {
    flex-direction: row-reverse;
  }
}

.fact-image {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 5px;
}

.fact-text {
  color: #0b1c2c;
  text-align: left;
  font-weight: 600;
}
.fact-text h3 {
  font-family: "Merriweather";
  margin-bottom: 5px;
  font-size: 1.3rem;
}
@media screen and (min-width: 700px) {
  .fact-text h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}
.fact-text p {
  font-size: 0.95rem;
}

/*# sourceMappingURL=style.css.map */
