/* ====== FULL CSS — consistent, full-width, stable ====== */

/* Reset */
* { box-sizing: border-box; margin:0; padding:0; }
html,body { height:100%; width:100%; overflow-x:hidden; font-family:"Poppins",sans-serif; background:#f5f5f5; color:#222; }



/* Header Base (keeps your original styling) */
/* ----- HEADER HIDE / SHOW ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: #710000c8;

  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;      /* prevent clicking while hidden */

  transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-header.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Hide state */
.site-header.hide {
  top: -150px;  /* slightly more than header height */
}

/* Inner structure stays same */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
}


.fade-container,
.fade-slide {
  z-index: 1 !important;
}
/* Prevent header from hiding while dropdown is open */
.site-header.hover-lock {
  top: 0 !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Logo */
.logo-area { display:flex; align-items:center; gap:12px; }
.logo-box { width:56px; height:56px; border-radius:50%; overflow:hidden; border:2px solid #000000; background:#fff; display:flex; align-items:center; justify-content:center; }
.logo-img { width:100%; height:100%; object-fit:cover; }
.brand-name { color:#fff; font-size:40px; font-weight:600; letter-spacing:0.6px; }

/* Nav */
.nav-container { flex:1; display:flex; justify-content:flex-end; }
.nav { display:flex; list-style:none; gap:28px; align-items:center; margin:0; padding:0; }
.nav > li { position:relative; }
nav ul li a {
    color: rgba(230, 230, 230, 0.796);      
    text-decoration: none;
    transition: 0.3s ease; 
}

nav ul li a:hover {
    color: #2de743;   
}

.nav-label { color:#fff; font-size:17px; font-weight:500; cursor:pointer; padding:8px; display:inline-block; }
.no-dropdown:hover { opacity:0.85; }

/* Dropdown (hover) */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;         /* instead of calc(100% + 8px) */
  left: 0;
  margin-top: 4px;   /* tiny gap but still hoverable */
  background: #d6fdc4d6;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  z-index: 9999;
}
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 32px;        /* hover buffer */
  background: transparent;
}

.dropdown:hover > .dropdown-content { display:flex; }
.dropdown-content.small-menu { width:340px; }

/* columns */
.menu-column { min-width:160px; }
.menu-column h3 { margin:0 0 8px; color:#d32f2f; font-weight:600; font-size:15px; }
.menu-column a { display:block; color:#222; text-decoration:none; padding:6px 0; font-size:14px; }
.menu-column a:hover { color:#d32f2f; transform:translateX(4px); }

/* --------------------------------------
   CONTACT PAGE BACKGROUND
-------------------------------------- */
/* ================= CONTACT PAGE ================= */
/* Center the Contact Us main heading */
.contact-info h2 {
    text-align: center;
    width: 100%;
}

.contact-page {
    max-width: 1200px;
    margin: 10px auto 60px;   /* spacing below header */
    padding: 20px;
    display: flex;
    gap: 40px;
}

/* -------- LEFT SIDE – CONTACT INFORMATION -------- */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #710000;
}

.contact-info p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #444;
}

.info-block h3 {
    margin-top: 18px;
    font-size: 20px;
    color: #710000;
}

.info-block p {
    margin: 6px 0;
    color: #333;
}

/* -------- RIGHT SIDE – CONTACT FORM -------- */
.contact-form-section {
    flex: 1;
}

.contact-form-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #710000;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form label {
    font-size: 14px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    width: 180px;
    padding: 12px;
    background: #710000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 12px;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #540000;
}

/* -------- QR SECTION AT BOTTOM (HORIZONTAL) -------- */
.qr-row {
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.qr-box {
    text-align: center;
}

.qr-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #710000;
}

.qr-text {
    margin-top: 8px;
    font-size: 14px;
    color: #333;
}
/* ----------------------------- Link not Appearing blue-------------------- */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #d32f2f;
}
/* --------------------------------------
   FOOTER
-------------------------------------- */
.footer {
  width: 100%;
  background: #2f2b1b;
  color: #fff;
  padding: 28px 0 36px;
  margin-top: 40px;
}

.footer-container {
  width: 95%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col { min-width: 220px; }
.footer-col h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.footer-col p { font-size: 15px; opacity: 0.95; margin: 6px 0; }

.footer-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.95;
}

/* --------------------------------------
   RESPONSIVE
-------------------------------------- */
@media (max-width: 900px) {
    .contact-page {
        flex-direction: column;
        padding: 20px;
    }

    .qr-row {
        flex-direction: column;
        gap: 25px;
    }
}