/**
 * Global style definitions
 */

/* ========== Fonts ========== */
@font-face {
  font-family: 'Muli';
  src: url('../common/src/font/Muli-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'Muli', sans-serif;
}

/* ========== Header & Navbar ========== */
.tu-header {
  padding: 1rem 2rem;
  background: white;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.4);

  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.tu-header img {
  transition: all 0.3s ease;
}

.navbar-inner {
  max-width: 1600px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tu-navbar img {
  height: 40px;
}

#nwt-navbar {
  padding: 0.2rem 2rem;
}

#nwt-logo {
  width: 200px;
}

.tu-navbar nav a {
  margin-left: 1.5rem;
  padding: 5px 0;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Responsive Navigation */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
}

@media (max-width: 768px) {
  .tu-navbar nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 1rem;
    z-index: 1000;
  }

  .tu-header {
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .tu-header img {
    height: 30px; 
  }
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0% 100%);
}

/* ========== Cards ========== */

.cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 1.5625rem 0 rgba(0,0,0,.15);
  padding: 1.5rem;
  width: 100%;
  position: relative;
}

.card::before {
  content: "\f007";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 0;
  background: #b00;
  color: white;
  padding: 0.5rem;
  border-bottom-left-radius: 6px;
  font-size: 1.5rem;
}

.title {
  font-weight: bold;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.2rem;
}

.name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.row {
  margin-bottom: 0.6rem;
}

.row i {
  margin-right: 0.5rem;
  color: #b00;
}

.label {
  font-weight: bold;
}

.value {
  display: inline;
}

.email, .phone {
  display: flex;
  align-items: center;
  color: #b00;
  margin-bottom: 0.6rem;
}

.email i, .phone i {
  margin-right: 0.5rem;
}

@media (max-width: 700px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 90%;
  }
}

/* ========== Content Section ========== */
.module-info {
  background: linear-gradient(135deg, #90278e, #e1001a);
  color: white;
  padding: 4rem 1.5rem;
  clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0% 100%);
  font-family: 'Muli', sans-serif;
}

.module-info h1,
.module-info h3,
.module-info p {
  text-shadow: 1px 1px 3px rgba(0,0,0,0.66);
}

.module-info-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1600px;
  margin: auto;
}

@media (min-width: 768px) {
  .module-info-inner {
    flex-direction: row;
  }
}

.text-column {
  flex: 2;
}

.text-column h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.text-column h3 {
  font-size: 1.4rem;
  color: #f0f0f0;
  margin-top: 0;
}

.text-column p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.info-box {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid white;
  padding: 1.5rem;
  border-radius: 8px;
  flex: 1;
}

.info-box div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.info-box strong {
  font-weight: 600;
  color: #fff;
}

.info-box span {
  font-weight: 400;
  color: #f0f0f0;
}

/* ========== General Text Container ========== */
.text-content {
  padding: 1.5rem;
}

.text-content-inner {
  max-width: 1600px;
  margin: auto;
}

/* ========== Footer ========== */
.footer {
  color: white;
  background-color: #111;
}

.footer-inner {
  max-width: 1600px;
  margin: auto;
}

.footer-top-first {
  padding: 1em;
  background: white;
}

.footer-top-second {
  position: relative;
  background-color: black;
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.footer-triangle {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  fill: black;
}

.footer-slogan p {
  font-size: 1.8rem;
  font-weight: 300;
  margin: 0;
}

.footer-slogan span {
  font-size: 1.5rem;
  display: block;
  margin-top: 0.5rem;
}

.footer-bottom {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1600px;
  margin: auto;
}

.footer-socials a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.4rem;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-logo {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.15rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 3rem;
  }

  .footer-socials,
  .footer-links,
  .footer-logo {
    margin: 0.5rem 1rem;
  }

  .footer-logo {
    text-align: right;
  }
}
