/* Style sheet for Brightwater Creative Studio */

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

body {
    background-image: url(images/Background.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-color: #151515;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center; /* horizontal center */
    justify-content: center; /* vertical center */
}

.header {
    height: 20vh;
    width: 100%;
    padding-bottom: 5%;
    background-image: url();
    background-position: center;
    background-size: cover;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 35px;
    flex-wrap: wrap; /* stacks on small screens */
    justify-content: center; /* keeps rows centered when they wrap */
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    text-transform:uppercase
}

.nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;   /* tight vertical spacing */
}

.logo {
  max-width: 1000px; /* adjust as needed */
  display: block;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover {
    border: 1px solid #c2ecd8;
    background: #f5f5f5;
    transition: 1s;
    color: #252525;
}

/*-------- Index Look and Feel --------*/
h1 {
    font-size: 36px;
    font-weight: 600;
    color: #353535;
}

p {
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding: 8px;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    color: #656565;
}

/* Tablet */
@media (max-width: 900px) {
  .logo {
    max-width: 500px;
  }
  .nav-links {
    flex-direction: column;
          margin-top: 35px;
    align-items: center;  /* centers each link */
    gap: 12px;
  }
  .nav-links a {
    font-size: 12px;
    align-items: center;  /* centers each link */
    gap: 10px;
  }
}


/* Phone */
@media (max-width: 600px) {
  .logo {
    max-width: 350px;
  }

  .nav-links {
    flex-direction: column;
          margin-top: 35px;
    align-items: center;  /* centers each link */
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }
}

/*-------- Call To Action --------*/
.cta {
    margin: 100px auto;
    width: 80%;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 0px 0;
}

.cta h1 {
    color: white;
    margin: 40px;
    padding: 0;
}

.cta hero-btn {
    color: #252525;
}

/*-------- Footer --------*/
.footer {
    width: 100%;
    text-align: center;
    padding: 25px 0;
}

.footer p {
    margin-bottom: 18px;
}

.footer h4 {
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 600;
    color: #f5f5f5;
}

.footer i {
    color: #656565;
}

.footerlink {
    text-decoration: none;
    color: #f5f5f5;
}

.copyright {
    color: #252525;
    font-weight: 400;
    background-color: #f5f5f5;
}