/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER */
.site-header {
  background-image: url('../Images/header backgorund.png');
  background-color: #415a77;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  position: relative;
  z-index: 1000;
}

/* LAYOUT */
.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 100px;
  width: auto;
}


/* NAV (desktop) */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: x-large;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.main-nav a:hover {
  color: slategray;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
  user-select: none;
}

/* MOBILE STYLES */
@media (max-width: 900px) {

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .main-nav ul {
    position: absolute;
    top: 120px;
    right: 0;
    width: 100%;
    background-image: url('../Images/dropdown\ image.png');
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    gap: 1.5rem;
    display: none; /* hidden by default */
  }

  .main-nav a {
  text-decoration: none;
  color: lightslategray;
  font-size: x-large;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  }

  .main-nav.open ul {
    display: flex; /* show when toggled */
  }
}

.about-section {
  padding: 80px 20px;
  background-image: url('../Images/About/coastal-themed\ sand\ .png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.about-text {
  flex: 1;
  min-width: 300px;
  color: #1b263b;
  font-family: Arial, Helvetica, sans-serif;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: lightslategray;
}

.about-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #415a77;
}

/* Mobile */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-text p {
    font-size: 1.1rem;
  }
}

/* Fade + Slide Animation */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-container {
  animation: fadeSlideUp 1.2s ease-out forwards;
}

.site-footer {
  background-color: #1b263b;
  color: white;
  padding: 20px 20px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-left h4 {
  margin-bottom: 10px;
}

.footer-right .social-link {
  display: block;
  color: #a8c0d6;
  text-decoration: none;
  margin: 5px 0;
}

.footer-right .social-link:hover {
  color: white;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}