.tittle {
  font-style: italic;
  color: rgb(0, 0, 0);
}
h1,
h2,
h3,
p {
  text-align: center;
  color: rgb(0, 0, 0);
  margin: auto;
}

.header {
  color: white;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.jumbotron h1 {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: white;
}

.jumbotron p {
  color: black;
  background-color: white;
  border-radius: 10px;
  opacity: 0.8;
  padding: 15px;
  width: 50%;
  margin: 20px auto;
  font-size: 18px;
}
h3 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: rgb(40, 40, 123);
}
.items {
  display: flex;
  justify-content: center;
}
.item {
  display: flex;
  flex-direction: column;
}

.portrait {
  /* width height = biasa */
  /* max width/max height = max yg ditampilin selama layar di split atau dll */
  /* max-width: 300px;
    max-height: 350px; */
  width: 300px;
  height: 350px;
  border: 10px solid rgb(40, 40, 123);
  border-radius: 5px;
  box-shadow: 2px 2px 5px blue;
  /* bottom, right, blur */
}
.portrait:hover {
  opacity: 0.8;
}
/* .portrait kalo gambarnya portrait */
/* .landscape kalo gambarnya landscape */
.landscape {
  width: 350px;
  height: 240px;
}

/* menggunakan shorthand (menyamping) */

/* background-size: auto > otomatis ikut ukuran asli gambar */
/* background-size: cover > otomatis ikut ukuran website */

/* CSS Reset for header positioning */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-image: url(MicroCenterimg/micro3.png);
  background-size: cover;
  padding-top: 60px; /* Add space for fixed header */
}
section.cover {
  background-image: url(MicroCenterimg/micro3.png);
  background-size: cover;
}
.item {
  margin: 5px;
  background-color: rgb(217, 245, 255);
  border-radius: 10px;
  width: 320px;
}
h3,
p {
  text-align: center;
  padding: 5px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

/* Header Styles */
.main-header {
  background-image: linear-gradient(rgb(40, 40, 123), rgb(2, 2, 93));
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 48px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 998;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.header-info {
  position: absolute;
  left: 20px;
  text-align: left;
  color: rgb(219, 84, 75);
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0 10px;
}

@media screen and (max-width: 768px) {
  .header-info {
    position: relative;
    margin: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: auto;
  }

  .header-info a {
    font-size: 18px;
    line-height: 1;
  }
}

.header-info a {
  padding: 0;
  text-decoration: none;
  color: rgb(219, 84, 75);
  transition: all 0.3s ease;
  position: relative;
}

.header-info a:hover {
  background-color: transparent;
  color: white;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

nav {
  position: static;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: white;
  padding: 15px 30px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
}

nav a:hover {
  background-color: rgb(0, 140, 190);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover::after {
  width: 80%;
}

/* nav a.active {
  background-color: rgb(0, 140, 190);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
} */

.jumbotron {
  margin-top: 5%;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* .tabbronze {
  background-color: rgb(205, 127, 57);
  width: 300px;
  padding: 40px;
  margin: 20px;
  border-radius: 20px;
}
.tabsilver {
  background-color: silver;
  width: 300px;
  padding: 40px;
  margin: 20px;
  border-radius: 20px;
}
.tabgold {
  background-color: gold;
  width: 300px;
  padding: 40px;
  margin: 20px;
  border-radius: 20px;
} */

h1.name {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: black;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
h2.price {
  font-size: 38px;
  color: black;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.list {
  list-style-type: disc;
  margin-bottom: 50px;
  text-align: left;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.list li {
  margin-top: 20px;
  color: black;
}

hr {
  height: 7px;
  width: 80%;
  margin: auto;
  background-color: rgb(219, 84, 75);
  border: none;
  border-radius: 50px;
  margin-top: 20px;
}

button {
  /* margin-left: 50px;
    margin-right: 50px; */
  background-color: rgba(219, 85, 75, 0.616);
  /* a adalah opacity dalam rgba */
  border-radius: 8px;
  color: white;
  padding: 8px;
  border: none;
  font-size: 20pt;
}
button:hover {
  transform: scale(1.2, 1.2);
  background-color: rgb(219, 85, 75);
  cursor: pointer;
}
div.about {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  margin-bottom: 30px;
  background-color: blanchedalmond;
  width: 80%;
  border-radius: 20px;
  opacity: 0.9;
}

.about {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  text-align: left;
  color: black;
  padding: 10px;
  width: 100%;
}

div.image-about {
  margin-bottom: auto;
  margin-top: auto;
}

img.about-us {
  width: 300px;
  border: none;
  border-radius: 10px;
}

/* Footer Styles - Enhanced */
footer {
  background: linear-gradient(
    135deg,
    rgb(40, 40, 123) 0%,
    rgb(2, 2, 93) 50%,
    rgb(0, 140, 190) 100%
  );
  margin: 0;
  padding: 40px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(219, 84, 75) 25%,
    rgb(0, 140, 190) 50%,
    rgb(219, 84, 75) 75%,
    transparent 100%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.center-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  align-items: stretch;
}

.left-footer,
.right-footer {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.left-footer:hover,
.right-footer:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.info-left,
.info-right {
  color: white;
  margin: 0;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.info-left h3,
.info-right h3 {
  color: rgb(219, 84, 75);
  margin-bottom: 15px;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-left p,
.info-right p {
  margin: 8px 0;
  opacity: 0.9;
  line-height: 1.5;
}

.info-center {
  text-align: center;
  color: white;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9em;
  opacity: 0.8;
}

/* Social icons placeholder */
.social-icons {
  display: none;
  gap: 15px;
  margin-top: 160px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Responsive footer */
@media (max-width: 768px) {
  .main-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
  }

  .left-footer,
  .right-footer {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }

  footer {
    padding: 30px 0 15px;
  }

  .pricing-container {
    width: 90%;
    margin: 0 auto;
    padding: 10px;
  }

  .pricing-card {
    width: 100%;
    margin: 10px auto;
    box-sizing: border-box;
  }

  .center-footer {
    width: 95%;
    margin: 0 auto;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px !important;
  }

  h2 {
    font-size: 24px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  p {
    font-size: 16px !important;
  }

  .nav-links a {
    font-size: 22px !important;
  }

  .item p {
    font-size: 16px !important;
  }

  .list li {
    font-size: 16px !important;
  }

  .info-left p,
  .info-right p {
    font-size: 16px !important;
  }
}

.map-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .map-container {
    max-width: 100%;
    padding: 0 15px;
  }
}
