body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #ffffff;
    color: #222;
    overflow-x: hidden;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    background: #111 url(Blackwave.png) center/cover no-repeat;
    color: white;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.logo {
    height: 120px;
    max-width: 100%;
    display: block;
}

.logo-text {
    font-size: 40px;
    font-weight: bold;
    color: white;
    margin-left: 10px;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 25px;
}

nav a:hover {
    color: #27ae60;
}

/* HERO */
.hero {
    text-align: center;
    padding: 140px 20px 120px;
    color: white;
    background:
        linear-gradient(
            to bottom,
            rgba(17,17,17,1) 5%,
            rgba(17,17,17,0.98) 8%,
            rgba(17,17,17,0.92) 18%,
            rgba(25,30,35,0.85) 30%,
            rgba(40,50,60,0.65) 60%,
            rgba(100,120,140,0.37) 75%,
            rgba(230,230,230,0.4) 90%,
            rgba(244,244,244,0.6) 100%
        ),
        url(pexels-adrien-olichon-1257089-2387793.jpg) center/cover no-repeat;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.btn:hover {
    background: #219150;
}

/* GENERAL SECTION */
section {
    padding: 80px 20px;
    text-align: center;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 34px;
    margin-bottom: 10px;
}

.section-subtext {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

/* SERVICES */
#services {
    background: #f4f4f4;
}

.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 30px;
    width: 260px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    box-sizing: border-box;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #111;
}

.card p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.card:hover {
    transform: translateY(-6px);
}

/* ABOUT */
#about {
    background: #f4f4f4;
}

#about .section-subtext {
    color: #444;
}

/* CONTACT */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8f9fb, #eef2f7);
}

.contact-container {
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.contact-container h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 10px;
  color: #111;
}

.contact-subtext {
  text-align: center;
  font-size: 17px;
  color: #666;
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 18px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  font-size: 16px;
  border: 1px solid #d8dce3;
  border-radius: 12px;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2d6cdf;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45, 108, 223, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form button {
  background: linear-gradient(to right, #111, #2d6cdf);
  color: white;
  border: none;
  padding: 16px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 108, 223, 0.25);
}

@media (max-width: 768px) {
  .contact-container {
    padding: 30px 20px;
  }

  .contact-container h2 {
    font-size: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 18px;
  }
}
/* FOOTER */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
}

/* IMAGES */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* TABLET */
@media (max-width: 992px) {
    .logo {
        height: 95px;
    }

    .logo-text {
        font-size: 32px;
    }

    nav a {
        font-size: 20px;
    }

    .hero h1 {
        font-size: 36px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 15px 20px;
    }

    .logo-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .logo {
        height: 70px;
        margin-bottom: 10px;
    }

    .logo-text {
        font-size: 22px;
        margin-left: 0;
    }

    nav {
        margin-top: 10px;
        flex-direction: column;
        gap: 12px;
    }

    nav a {
        font-size: 18px;
        margin: 0;
    }

    .hero {
        padding: 100px 20px 80px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtext {
        font-size: 16px;
    }

    .card {
        width: 100%;
        max-width: 320px;
    }
}

/* SMALL PHONES */
@media (max-width: 480px) {
    .logo {
        height: 140px;
        margin-bottom: 1px;

    }

    .logo-text {
        font-size: 30px;
      	margin-top: 1px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 15px;
    }
 nav {
    display: flex;
    justify-content: center;   /* centers the links */
    align-items: center;
    gap: 25px;                 /* space between links */
    flex-wrap: nowrap;  
    flex-direction: row;	   /* prevents stacking */
    margin-top: 40px;
  }

  nav a {
    display: inline-block;
    font-size: 25px;           /* shrink text for mobile */
    margin: 0;
  }
}