/* Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background: linear-gradient(to right, #004080, #007acc);
  color: white;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* header img {
  height: 60px;
} */

header h1 {
  margin: 0;
  font-size: 28px;
}

header p {
  margin: 0;
  font-size: 14px;
}

.rayterton {
  color: #FFFFFF;
  margin: 0;
  font-size: 25px;
}

.apps {
  color: #FF4C4C;
  display: inline;
}

.software {
  display: inline;
  color: #161616;
  font-size: 28px;
  text-align: right;
  margin-top: -10px;
  line-height: 1.2;
}

/* Footer unused, lihat di footer.html */
/* footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 40px;
}

footer a {
  color: white;
  text-decoration: underline;
} */
.header-logo-wrapper {	  display: flex;	  justify-content: space-between;	  align-items: center;	  width: 100%;	  gap: 15px;	}	
.header-partial-wrapper .logo-rayterton,	.logo-academy {	  height: 60px;	  max-width: 100%;	  transition: transform 0.3s ease;	}	

/* Responsive Header/Footer */
@media (max-width: 480px) {
  header {
    flex-direction: column;
    text-align: center;		
    padding: 20px 10px;
  }
  /* header img {
    margin-bottom: 10px;
  } */

  .header-logo-wrapper {		
    flex-direction: column;		
    justify-content: center;		
    gap: 8px;		transform: scale(0.9);		
    transform-origin: top center;	  
  }	  
  .header-partial-wrapper .logo-rayterton,	  .logo-academy {		
    height: auto !important;		
    max-width: 80% !important;	 
  }	
}
