@charset "utf-8";
/* CSS Document 

Encore Competition Page

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: #0a0e27;
	color: #ffffff;
	overflow-x: hidden;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 20px 50px;
	background: rgba(10, 14, 39, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

nav.scrolled {
	padding: 15px 50px;
	background: rgba(10, 14, 39, 0.98);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	text-decoration: none;
}

.logo-icon {
	width: 55px;
	height: 55px;
	background: transparent; /* Hilangkan gradient background */
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-icon img {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 0 12px rgba(0,255,220,0.5));
}

/* tetap dipakai */
.logo-text {
	font-size: 20px;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	gap: 40px;
	list-style: none;
}

.nav-links a {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff6b6b, #ff8e53);
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-links a:hover {
	color: #ff8e53;
	text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #00ffcc, #00ccff);
	transform: translateX(-50%);
	box-shadow: 0 0 15px rgba(0, 255, 204, 0.6);
	border-radius: 2px;
}

.search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
	transition: transform 0.3s ease;
	fill: white;
}

.search-icon:hover {
	transform: scale(1.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav .cta-button {
  padding: 10px 24px;
  font-size: 15px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

nav .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

nav .cta-button {
  margin-left: auto;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 0 20px;
	background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background-image:
		linear-gradient(45deg, transparent 30%, rgba(0, 255, 204, 0.1) 50%, transparent 70%),
		linear-gradient(-45deg, transparent 30%, rgba(255, 0, 128, 0.1) 50%, transparent 70%);
	animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-20px, -20px);
	}
}

.geometric-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.shape {
	position: absolute;
	border: 2px solid rgba(0, 255, 204, 0.3);
}

.shape1 {
	width: 300px;
	height: 300px;
	top: 10%;
	left: -150px;
	transform: rotate(45deg);
	animation: float 15s ease-in-out infinite;
}

.shape2 {
	width: 200px;
	height: 200px;
	top: 60%;
	right: -100px;
	border-color: rgba(255, 0, 128, 0.3);
	animation: float 20s ease-in-out infinite reverse;
}

.shape3 {
	width: 150px;
	height: 150px;
	bottom: 20%;
	left: 10%;
	border-color: rgba(0, 204, 255, 0.3);
	transform: rotate(30deg);
	animation: float 18s ease-in-out infinite;
}

.shape4 {
	width: 250px;
	height: 250px;
	top: 15%;
	right: 5%;
	border-color: rgba(255, 0, 128, 0.25);
	transform: rotate(45deg);
	animation: float 16s ease-in-out infinite;
}

.shape5 {
	width: 180px;
	height: 180px;
	top: 55%;
	right: 12%;
	border-color: rgba(0, 255, 204, 0.25);
	transform: rotate(-30deg);
	animation: float 22s ease-in-out infinite reverse;
}

.shape6 {
	width: 120px;
	height: 120px;
	bottom: 15%;
	right: 8%;
	border-color: rgba(0, 204, 255, 0.25);
	transform: rotate(20deg);
	animation: float 19s ease-in-out infinite;
}

.hero-center {
  display: flex;
  flex-direction: row;      /* ✅ sejajarkan gambar dan teks horizontal */
  align-items: center;
  justify-content: center;
  gap: 50px;
  min-height: 100vh;
  padding: 60px 0px;
  text-align: left;         /* agar teks tidak center */
  z-index: 10;
}

.hero-center img.hero-logo {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0,255,200,0.4));
}

.hero-text {
  max-width: 600px;
}

.hero-center h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-center p {
  font-size: 18px;
  line-height: 1.6;
  color: #a0a0a0;
  max-width: 600px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.hero-visual {
     width: 100%;
    margin-top: -200px; /* bukan negatif */
    z-index: 1;
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.city-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 16/9; /* lebih responsif daripada fixed height */
    max-height: 500px;
    perspective: 1000px;
    background: rgba(255,255,255,0.05); /* bantu lihat */
    height: 200px;

}

@media (max-width: 768px) {
  .hero-center {
    flex-direction: column;   /* ubah jadi vertikal */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;                /* jarak antar elemen lebih kecil */
    min-height: auto;         /* biar tidak terlalu tinggi */
  }

  .hero-logo {
    max-width: 180px;         /* perkecil gambar robot */
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 32px;          /* perkecil judul */
    margin-bottom: 20px;      /* jarak bawah judul */
  }

  .hero-text p {
    font-size: 15px;          /* perkecil paragraf */
    line-height: 1.4;
    margin-bottom: 25px;      /* jarak bawah paragraf */
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 15px;
  }

  .hero-visual {
    margin-top: 20px;         /* beri jarak sedikit dari teks */
    max-height: 250px;        /* batasi tinggi visual */
  }

  .city-container {
    max-height: 200px;
    aspect-ratio: 16 / 9;
  }
  
  .hero {
    padding-top: 100px; /* kalau navbar lebih tinggi di mobile */
  }

  .nav-actions {
    gap: 12px;
  }

  nav .cta-button {
    padding: 8px 20px;
    font-size: 14px;
  }

}


.building {
	position: absolute;
	background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
	border: 1px solid rgba(0, 255, 204, 0.2);
	box-shadow:
		0 0 20px rgba(0, 255, 204, 0.1),
		inset 0 0 20px rgba(0, 255, 204, 0.05);
	overflow: hidden;
}

/* Building fill effect */
.building-fill {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	animation: pulse 3s ease-in-out infinite;
}

.building1 {
	width: 60px;
	height: 250px;
	bottom: 0;
	left: 20%;
}

.building1 .building-fill {
	height: 45%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 204, 0.6) 100%);
}

.building2 {
	width: 80px;
	height: 320px;
	bottom: 0;
	left: 35%;
}

.building2 .building-fill {
	height: 60%;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 128, 0.6) 100%);
	animation-delay: 0.5s;
}

.building3 {
	width: 100px;
	height: 280px;
	bottom: 0;
	right: 25%;
}

.building3 .building-fill {
	height: 35%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 204, 255, 0.6) 100%);
	animation-delay: 1s;
}

.building4 {
	width: 70px;
	height: 200px;
	bottom: 0;
	right: 10%;
}

.building4 .building-fill {
	height: 50%;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 107, 0.6) 100%);
	animation-delay: 1.5s;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.6;
		transform: translateY(0);
	}

	50% {
		opacity: 1;
		transform: translateY(-5px);
	}
}

/* Building windows */
.building-windows {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: repeating-linear-gradient(0deg,
			transparent,
			transparent 8px,
			rgba(255, 255, 255, 0.05) 8px,
			rgba(255, 255, 255, 0.05) 10px);
	opacity: 0.8;
}

.neon-line {
	position: absolute;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00ffcc, transparent);
	animation: scan 3s linear infinite;
}

.neon-line1 {
	width: 100px;
	top: 30%;
	left: 10%;
}

.neon-line2 {
	width: 150px;
	top: 50%;
	right: 15%;
	animation-delay: 1s;
}

@keyframes scan {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translateX(200%);
		opacity: 0;
	}
}

/* Tentang Section */
.Tentang-section {
	padding: 80px 50px;
	background: linear-gradient(180deg, #0a0e27 0%, #0f1329 100%);
}

.Tentang-container {
	max-width: 1400px;
	margin: 0 auto;
}
.section {
    padding: 100px 8%;
    background: #0d1028;
    color: #dfe7ff;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #8afcf5;
}

.section-desc {
    max-width: 800px;
    margin-bottom: 50px;
    font-size: 18px;
	text-align: justify
    line-height: 1.6;
    color: #c7d1ff;
}

.grid-3, .grid-4 {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 28px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(6px);
}

.card h3 {
    font-size: 22px;
    color: #8afcf5;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

.section-title1 {
	font-size: 36px;
	margin-bottom: 40px;
	text-align: center;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Stats Cards */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.stat-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(0, 255, 204, 0.3);
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00ffcc, transparent);
	animation: scan 3s linear infinite;
}

.stat-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.stat-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #00ffcc, #00ccff);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.stat-title {
	font-size: 14px;
	color: #a0a0a0;
	font-weight: 500;
}

.stat-value {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-description {
	font-size: 13px;
	color: #707070;
	line-height: 1.5;
}

.stat-chart {
	margin-top: 20px;
	height: 60px;
	position: relative;
}

.mini-chart {
	width: 100%;
	height: 100%;
}

/* Bidang Lomba Section */
.BidangLomba-section {
	padding: 80px 50px;
	background: linear-gradient(180deg, #0f1329 0%, #1a1f3a 100%);
}

/* Grid */
.lomba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    justify-items: center;
    padding: 0 40px;
}

/* Item */
.lomba-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
    width: 180px;
}

.lomba-item img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
}

.lomba-item p {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

/* Hover Effect */
.lomba-item:hover img {
    transform: scale(1.15) rotate(3deg);
    filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.8));
}

.lomba-item:hover p {
    color: #00ffd2;
}

/* Chart Cards */
.charts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.chart-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	min-height: 400px;
}

.chart-card:hover {
	background: rgba(255, 255, 255, 0.05);
}

.chart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.chart-title {
	font-size: 20px;
	font-weight: 600;
}

.chart-options {
	display: flex;
	gap: 10px;
}

.chart-option {
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.chart-option:hover,
.chart-option.active {
	background: rgba(0, 255, 204, 0.1);
	border-color: rgba(0, 255, 204, 0.3);
	color: #00ffcc;
}

.chart-container {
	position: relative;
	height: 300px;
}

/* Bar Chart */
.bar-chart {
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	height: 100%;
	padding: 20px 0;
}

.bar {
	width: 30px;
	background: linear-gradient(180deg, #00ffcc 0%, #00ccff 100%);
	border-radius: 5px 5px 0 0;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}

.bar:hover {
	transform: scaleY(1.05);
	filter: brightness(1.2);
}

.bar-label {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	color: #707070;
}

.bar-value {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	font-weight: 600;
	color: #00ffcc;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bar:hover .bar-value {
	opacity: 1;
}

/* Line Chart */
.line-chart {
	position: relative;
	width: 100%;
	height: 100%;
}

.line-chart-svg {
	width: 100%;
	height: 100%;
}

.chart-grid-line {
	stroke: rgba(255, 255, 255, 0.05);
	stroke-width: 1;
}

.chart-line {
	fill: none;
	stroke: #00ffcc;
	stroke-width: 2;
	filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.5));
}

.chart-area {
	fill: url(#gradient);
	opacity: 0.3;
}

.chart-dot {
	fill: #00ffcc;
	stroke: #0a0e27;
	stroke-width: 2;
	r: 4;
	cursor: pointer;
	transition: all 0.3s ease;
}

.chart-dot:hover {
	r: 6;
	filter: drop-shadow(0 0 15px rgba(0, 255, 204, 0.8));
}

/* Metrics Grid */
.metrics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.metric-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
}

.metric-item:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 255, 204, 0.3);
}

.metric-value {
	font-size: 24px;
	font-weight: 700;
	color: #00ffcc;
	margin-bottom: 5px;
}

.metric-label {
	font-size: 12px;
	color: #a0a0a0;
}

/* Twibbon Section */
.Twibbon-section {
	padding: 80px 50px;
	background:
		linear-gradient(135deg, #1a0033 0%, #2d1b69 50%, #0f1329 100%),
		linear-gradient(90deg, transparent 49%, rgba(0, 255, 204, 0.05) 50%, transparent 51%),
		linear-gradient(0deg, transparent 49%, rgba(0, 255, 204, 0.05) 50%, transparent 51%);
	background-size: 100% 100%, 40px 40px, 40px 40px;
	position: relative;
}

.Twibbon-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(0, 204, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

/* Info Cards Section */
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.info-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.info-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 255, 204, 0.3);
}

.info-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #00ffcc 0%, #00ccff 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.info-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.info-value {
	font-size: 28px;
	font-weight: 700;
	color: #00ffcc;
	margin-bottom: 10px;
}

canvas {
  width: 100%;
  border-radius: 10px;
  background: #1a1f3a;
}

select, input, button {
  margin: 10px 0;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
}

button {
  background: #00e7ff;
  cursor: pointer;
  font-weight: bold;
}
button:hover {
  background: #00b7d1;
}

/* Kontak Section */
.Kontak-section {
	padding: 80px 50px;
	background: linear-gradient(180deg, #0f1329 0%, #0a0e27 100%);
}

.Kontak-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	max-width: 2400px;
	margin: 0 auto;
	align-items: start;
}

.Kontak-form {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	color: #a0a0a0;
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: #ffffff;
	font-size: 16px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: rgba(0, 255, 204, 0.5);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}


.Kontak-info {
	padding: 20px 0;
}

.Kontak-info h3 {
	font-size: 24px;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.Kontak-item {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 30px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.Kontak-item:hover {
	transform: translateX(5px);
	border-color: rgba(0, 255, 204, 0.3);
	background: rgba(0, 255, 204, 0.05);
}

.Kontak-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #00ffcc, #00ccff);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.Kontak-details h4 {
	font-size: 16px;
	margin-bottom: 5px;
	color: #ffffff;
}

.Kontak-details p {
	font-size: 14px;
	color: #a0a0a0;
	line-height: 1.4;
}

/* Footer */
footer {
	padding: 40px 50px;
	background: #0a0e27;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.copyright {
	font-size: 14px;
	color: #707070;
}

.copyright a {
	color: #707070;
	text-decoration: none;
	transition: color 0.3s ease;
}

.copyright a:hover {
	color: #00ffcc;
	text-shadow: 0 0 10px rgba(0, 255, 204, 0.4);
}

/* Mobile Menu */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
	z-index: 1001;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #ffffff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links-mobile {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	background: rgba(10, 14, 39, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	flex-direction: column;
	gap: 0;
	list-style: none;
	z-index: 1000;
	padding: 20px;
}

.nav-links-mobile.active {
	display: flex;
}

.nav-links-mobile a {
	color: #ffffff;
	text-decoration: none;
	padding: 15px 20px;
	display: block;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

.nav-links-mobile a:hover {
	border-left-color: #ff6b6b;
	background: rgba(255, 107, 107, 0.1);
	color: #ff8e53;
}

.nav-links-mobile a.active {
	border-left-color: #00ffcc;
	background: rgba(0, 255, 204, 0.1);
	color: #00ffcc;
}


@media (max-width: 768px) {
	nav {
		padding: 15px 20px;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		display: none;
	}

	.Tentang-section,
	.BidangLomba-section,
	.Twibbon-section,
	.Kontak-section {
		padding: 40px 20px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.Kontak-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}