@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f5f5f5;
}

/* ===== NAVBAR ===== */
nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #242526;
  z-index: 1000;
  padding-bottom: 0px;
}

nav .wrapper {
  max-width: 1300px;
  padding: 10px 30px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.logo-w{
  color: white;
}

.logo-h{
  color:  #7EE787;
}

#icons-container-right {
  display: flex;
  align-items: center;
}

#icons-container-right a {
  text-decoration: none;
}

#icons-container-right i {
  margin: 0 10px;
  transition: transform 0.3s;
  color: white;
}

#icons-container-right i:hover {
  transform: scale(1.2);
}



.geometric-card {
  background: white;
  padding: 50px 40px;
  position: relative;
  height: 300px;
  overflow: hidden;
}

.geometric-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: #dfbdbd;
  z-index: 0;
  transform: skewX(-15deg);
}

.name-container {
  position: relative;
  z-index: 1;
}

.name-piece {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.name-piece.accent {
  font-weight: 600;
  color: #4a6fa5;
  margin-left: 10px;
}

.motto {
  font-family: 'Courier New', monospace;
  color: #055707e8;
  margin-top: 20px;
  padding-left: 15px;
  position: relative;
  font-size: 0.95rem;
}

.motto::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  height: 60%;
  width: 3px;
  background: #4a6fa5;
}


/* ===== TICKER ===== */
/* Terminal-style ticker */
.ticker-container {
  width: 100%;
  overflow: hidden;
  background-color: #011627; /* Dark terminal background */
  padding: 12px 0;
  border-top: 1px solid #1E2D3D;
  border-bottom: 1px solid #1E2D3D;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-page {
  display: flex;
  flex-shrink: 0;
}

.ticker-item {
  white-space: nowrap;
  padding: 0 40px;
  position: relative;
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 16px;
  font-weight: 400;
  color: #7EE787; /* Terminal green */
  text-shadow: 0 0 5px rgba(126, 231, 135, 0.3);
}

/* Blinking cursor separator */
.ticker-item:not(:last-child)::after {
  content: "_";
  position: absolute;
  right: 15px;
  color: #FF7B72;
  animation: blink 1s step-end infinite;
}

/* Ticker scroll animation */
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Blinking animation */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}



/* ===== FOOTER ===== */
.footer{
  padding: 0;
  margin-top: 0;
}

.footer-container {
  display: flex;
  width: 100%;
  min-height: 300px;
  background-color: #2a2a2a;
  color: white;
  padding: 0px 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  padding: 15px;
  border-right: 0px;
}

.footer-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

.footer-about ul {
  list-style: none;
  padding: 0;
}

.footer-about li {
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.terminal {
  color: #7EE787; /* Warna terminal */
  font-family: 'Courier New', monospace;
}


.cta-link {
  color: #58A6FF;
  text-decoration: none;
  font-weight: bold;
}

.blok-contact {
  display: flex;
  padding: 20px 0px;

}

.footer-botom{
  background-color: #2a2a2a;
  display: flex;
  color: white;
  justify-content: center;
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  
  .portfolio-container {
    flex-direction: column;
    width: 90%;
  }

  .portfolio-text-container {
    width: 100%;
    text-align: center;
  }

  .footer-section {
    flex: 100%;
    border-right: none;
    border-bottom: 1px solid #444;
  }
}


