/* --- UNIVERSAL PREMIUM THEMING --- */
:root {
  --primary-red: #e61e1e;
  --accent-crimson: #990000;
  --dark-bg: #0a0a0c;
  --card-glass: rgba(15, 15, 20, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --gold-accent: #d4af37;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  scroll-behavior: smooth; 
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- RESPONSIVE STICKY NAVBAR --- */
.navbar {
  width: 100%;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: 0; left: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
}

/* --- HERO CENTER LOGO STYLING --- */
.hero-center-logo {
  width: clamp(150px, 12vw, 130px); /* Awtomatikong lumiliit sa mobile (80px) at lumalaki sa desktop (130px) */
  height: auto;
  object-fit: contain;
  margin: 0 auto 1px auto; /* Centered at may 20px na puwang sa pagitan ng logo at ng title */
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5)); /* May banayad na shadow para lutang na lutang ang logo mo */
}

.logo-area { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-area img { width: clamp(45px, 4vw, 55px); height: clamp(40px, 4vw, 52px); object-fit: contain; }
.logo-title h1 { font-size: clamp(11px, 1.3vw, 15px); font-weight: 800; letter-spacing: 0.5px; color: #fff; line-height: 1.2; }
.logo-title span { font-size: clamp(9px, 0.9vw, 11px); color: var(--primary-red); display: block; text-transform: uppercase; font-weight: 600; }

.menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.menu-item { position: relative; }
.menu a, .dropdown-toggle {
  text-decoration: none; color: #fff; font-weight: 700; padding: 10px 16px; border-radius: 30px;
  font-size: clamp(11px, 1.1vw, 13px); transition: var(--transition-smooth); background: transparent;
  border: none; cursor: pointer; display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.menu a:hover, .menu a.active, .dropdown-toggle:hover { 
  background: var(--primary-red); box-shadow: 0 4px 15px rgba(54, 54, 54, 0.3);
}

/* --- DESKTOP DROPDOWN --- */
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: rgba(15, 15, 20, 0.98); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  min-width: 100px; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; transition: var(--transition-smooth); overflow: hidden;
  border: 1px solid var(--glass-border); padding: 6px; z-index: 1010;
}
.dropdown-menu a { border-radius: 8px; padding: 12px 16px; display: block; width: 100%; font-weight: 600; text-decoration: none; color: #fff; }
.dropdown-menu a:hover { background: rgba(255, 255, 255, 0.08); color: var(--white); }

@media (min-width: 851px) {
  .menu-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(5px); }
}

.menu-toggle { display: none; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; cursor: pointer; background: transparent; border: none; z-index: 1050; }
.menu-toggle span { width: 100%; height: 2px; background-color: #fff; border-radius: 2px; transition: var(--transition-smooth); }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: var(--primary-red); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: var(--primary-red); }

/* --- FULL-SCREEN COVER HERO SLIDESHOW SHIELD --- */
.hero-showcase-master {
  position: relative;
  width: 100%;
  height: 100vh; /* Ginawang full view height para sagad sa body */
  overflow: hidden;
  background-color: #000;
}

.hero-slide-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.main-slide {
  position: absolute;
  inset: 0;
  background-size: cover; /* Binago mula contain patungong cover para full size sa screen window */
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.main-slide.active {
  opacity: 1;
}

/* Text floating shield protection layer */
.hero-overlay-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 60%, rgba(10,10,12,1) 100%);
}

.text-glass-shield {
  background: rgba(10, 10, 12, 0.6); /* Mas pinadilim nang kaunti para lalong mabasa */
  backdrop-filter: blur(0.5px); /* Dito lang sa box ang may blur para malinaw ang background images sa labas ng card */
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(30px, 6vw, 55px) clamp(20px, 5vw, 45px);
  border-radius: 24px;
  max-width: 850px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.text-glass-shield h2 {
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.text-glass-shield p {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: #f3f4f6;
  font-weight: 500;
  line-height: 1.5;
}

/* --- RESPONSIVE OTHER MAIN LAYOUTS --- */
.about-section { padding: 60px 5% 60px; max-width: 1200px; margin: 0 auto; }
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-bottom: 50px; }
.mv-card {
  background: var(--card-glass); border: 1px solid var(--glass-border); padding: clamp(25px, 4vw, 40px);
  border-radius: 16px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-left: 4px solid var(--primary-red);
}
.mv-card h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 15px; font-weight: 800; color: #fff; }
.mv-card p { color: var(--text-muted); font-size: clamp(0.9rem, 1.1vw, 1.05rem); }

.founder-card {
  background: var(--card-glass); border: 1px solid var(--glass-border); border-radius: 16px; padding: clamp(25px, 4vw, 45px);
  display: flex; align-items: center; gap: clamp(20px, 4vw, 45px); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); margin-bottom: 50px;
}
.founder-img-wrapper { flex-shrink: 0; }
.founder-img { width: clamp(130px, 15vw, 170px); height: clamp(130px, 15vw, 170px); border-radius: 12px; background: #141419; border: 1px solid var(--glass-border); background-size: cover; background-position: center; }
.founder-info h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 800; color: #fff; margin-bottom: 4px; }
.founder-info .role { color: var(--primary-red); font-weight: 700; margin-bottom: 15px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.founder-info p { color: var(--text-muted); font-size: clamp(0.9rem, 1.1vw, 1.05rem); }

.sec-section {
  background: radial-gradient(circle at top left, rgba(35, 28, 10, 0.4), rgba(15, 12, 8, 0.95)); border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px; padding: clamp(30px, 5vw, 50px) 25px; text-align: center; box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}
.sec-section h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.sec-section p { color: #d1d5db; max-width: 750px; margin: 0 auto 20px; font-size: clamp(0.9rem, 1.1vw, 1.05rem); }
.sec-number { 
  font-family: 'Courier New', monospace; font-size: clamp(1.1rem, 1.8vw, 1.4rem); color: var(--gold-accent); font-weight: 700; letter-spacing: 2px; 
  background: rgba(212, 175, 55, 0.05); padding: 10px 24px; border-radius: 6px; display: inline-block; border: 1px dashed rgba(212, 175, 55, 0.25); max-width: 100%; word-break: break-all;
}

/* --- FOOTER MAIN DESIGN --- */
.footer { background: #070709; padding: 50px 5% 30px; border-top: 2px solid var(--primary-red); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; color: #fff; position: relative; padding-bottom: 8px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary-red); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; transition: var(--transition-smooth); }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.fb-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #fff; font-weight: 800; font-size: 1rem; }
.fb-brand img.fb-icon { width: 28px; height: 28px; object-fit: contain; }
.fb-brand img.custom-badge { width: auto; height: 20px; object-fit: contain; } /* Para sa idaragdag mong bagong photo slot sa dulo */
.copyright { font-size: 0.8rem; color: var(--text-muted); text-align: right; line-height: 1.4; }

/* --- RESPONSIVE MOBILE MEDIA QUERIES --- */
@media (max-width: 850px) {
  .navbar { padding: 12px 20px; }
  .menu-toggle { display: flex; }
  .menu { 
    display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; 
    background: #0f0f14; padding: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    border-top: 1px solid var(--glass-border); gap: 5px; max-height: 80vh; overflow-y: auto;
  }
  .menu.active { display: flex; }
  .menu-item { width: 100%; }
  .menu a, .dropdown-toggle { width: 100%; justify-content: space-between; padding: 12px 20px; font-size: 0.95rem; border-radius: 8px; background: rgba(255, 255, 255, 0.02); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(0, 0, 0, 0.25); box-shadow: none; display: none; width: 100%; margin-top: 4px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.04); }
  .menu-item.open-dropdown .dropdown-menu { display: block; }
  
  .hero-showcase-master { height: 90vh; }
  .text-glass-shield { padding: 25px 20px; border-radius: 16px; }

  .founder-card { flex-direction: column; text-align: center; }
  .founder-img-wrapper { margin: 0 auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .copyright { text-align: center; }
}
