<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ===== Reset &amp; Base Styling ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: url("../images/background-image.jpg") no-repeat center center
    fixed;
  background-size: cover;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ===== Header Logo and Navbar ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent */
  backdrop-filter: blur(8px);
  padding: 10px 5%;
}

/* ===== Header Layout ===== */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Logo Section ===== */
.logo h1 {
 color: white;
  text-decoration: none;
  font-size: 2.1rem;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 2,2,2 rgb(17, 4, 4);
}

/* ===== Navbar ===== */
nav {
  display: flex;
  gap: 50px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
}

/* ===== Underline animation ===== */
nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: white;
  left: 0;
  bottom: -5px;
  transition: width 0.4s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: white;
}

/* ===== Hamburger Menu ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: rgb(250, 248, 248);
  margin: 4px 0;
  margin-right: 25px;
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    width: 100vw;
    max-width: 768px;
    padding: 1rem;
    border-radius: 8px 0 0 8px;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
    z-index: 999;
  }

  nav.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
  }

  nav a {
    padding: 12px 0;
    color: white;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: right;
    transition: color 0.3s ease;
  }

  nav a:hover {
    color: #ffcc00;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== Social Media Bar Above Footer ===== */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.social-bar a {
  font-size: 2.8rem;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}


.social-bar a.fb:hover {
  color: #1877f2; /* Facebook blue */
}

.social-bar a.ig:hover {
  color: #e1306c; /* Instagram pink */
}

.social-bar a.wa:hover {
  color: #25D366; /* WhatsApp green */
}

.social-bar a.tw:hover {
  color: #1da1f2; /* Twitter blue */
}
.social-bar a.yt:hover {
  color: #fa0404; /* Youtube red */
}

.social-bar a:hover {
  transform: scale(1.2);
}


/* ===== Footer ===== */
footer {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  color: white;
  text-align: center;
  padding: 10px 10px;
  font-size: 1.1rem;
  margin-top: 0;
}
</pre></body></html>