/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
  user-select: none;
}

/* Container */
/* Base Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Headings: Centered & Highlighted */
.container h1, 
.container h2, 
.container h3, 
.container h4 {
  text-align: center;
  background: linear-gradient(120deg, rgba(255, 230, 0, 0.3) 0%, rgba(255, 230, 0, 0.3) 100%); /* Subtle SEO-friendly highlight */
  display: table; /* Ensures highlight only covers text width */
  margin: 0 auto 1.5rem auto; /* Centering the block and adding standard spacing */
  line-height: 1.2;
}

/* Standard Spacing: Heading to Paragraph 
   Google favors consistent vertical rhythm for better readability scores */
.container h1 + p,
.container h2 + p,
.container h3 + p,
.container h4 + p,
.container h5 + p {
  margin-top: 1.5rem; /* Standard rhythmic spacing (approx 24px) */
  margin-top: 1.5rem; /* Standard rhythmic spacing (approx 24px) */

}

/* Links: High Contrast for Accessibility/LCP 
   Using a deep blue (#0047AB) ensures WCAG AA compliance on white backgrounds */
.container a {
  color: #0047AB; 
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.container a:hover, 
.container a:focus {
  color: #002D62;
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container h1 { font-size: 2rem; }
  .container h2 { font-size: 1.75rem; }
  
  /* Slightly reduce spacing on mobile to keep content "above the fold" for LCP */
  .container h1 + p,
  .container h2 + p {
    margin-top: 1.25rem;
  }
}

/* ───────────────────────────────────────────────
   Header - Luxury Dark + Pink/Gold Theme
─────────────────────────────────────────────── */
.site-header {
  background: #0a0a0a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
  padding: 1.2rem 0;
}

.container.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
}

/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: none;
  z-index: 10;
}

.logo-text {
  color: #ff69b4;           /* Hot pink */
}

.logo-highlight {
  color: #ffd700;           /* Gold */
}

/* ───────────────────────────────────────────────
   Hamburger (pure CSS - three lines)
─────────────────────────────────────────────── */
.menu-toggle {
  display: none;            /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger-line {
  width: 100%;
  height: 4px;
  background: #ff69b4;
  border-radius: 4px;
  transition: all 0.35s ease;
}

/* When checked → X icon animation */
#menu-toggle:checked + .menu-toggle .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

#menu-toggle:checked + .menu-toggle .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

#menu-toggle:checked + .menu-toggle .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ───────────────────────────────────────────────
   Navigation
─────────────────────────────────────────────── */
.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.4rem;
  align-items: center;
}

.nav-list a {
  color: #e8e8e8;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.4rem 0;
}

.nav-list a:hover,
.nav-list a:focus {
  color: #ff69b4;
}

.nav-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #ff69b4;
  transition: width 0.35s ease;
}

.nav-list a:hover::after,
.nav-list a:focus::after {
  width: 100%;
}

/* ───────────────────────────────────────────────
   Mobile responsive (hamburger appears ≤ 992px)
─────────────────────────────────────────────── */
@media (max-width: 992px) {

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;                /* right site slide-in */
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0a0a0a;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 80px;                /* space below logo area */
    z-index: 999;
    overflow-y: auto;
  }

  /* Slide in when checkbox is checked */
  #menu-toggle:checked ~ .main-nav {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
  }

  .nav-list a {
    font-size: 1.45rem;
    padding: 0.8rem 0;
  }

  /* Optional: dim background when menu open */
  body:has(#menu-toggle:checked) {
    overflow: hidden;
  }

  body:has(#menu-toggle:checked)::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s;
  }

  #menu-toggle:checked ~ .main-nav + body::before {
    opacity: 1;
  }
}
/* Banner */
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}



/* Tags Container - Responsive Flexbox */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Responsive spacing */
  padding: 0;
  list-style: none;
}

/* Base Tag Style */
.tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px; /* Pill shape */
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none !important; /* Removes underline by default */
  border: 1px solid rgba(0,0,0,0.1);
}

/* Remove underline on hover for the anchor */
a:hover .tag {
  text-decoration: none !important;
  transform: translateY(-2px); /* Subtle lift effect */
  filter: brightness(1.1);
}

/* 4-Color Rotation for variety with High Contrast (WCAG AA Compliant) */

/* 1. Deep Pink */
.tag:nth-child(4n+1) {
  background-color: #D81B60;
  color: #ffffff;
}

/* 2. Royal Purple */
.tag:nth-child(4n+2) {
  background-color: #8E24AA;
  color: #ffffff;
}

/* 3. Indigo / Blue */
.tag:nth-child(4n+3) {
  background-color: #3949AB;
  color: #ffffff;
}

/* 4. Teal / Dark Green */
.tag:nth-child(4n+4) {
  background-color: #00796B;
  color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .tag {
    font-size: 12px;
    padding: 6px 12px;
    gap: 6px;
  }
}



.site-contact-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99999;
    contain: layout style; 
    pointer-events: none;
}

.site-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 30px 0 0 30px;  
    font-weight: 800;
    font-family: Arial, sans-serif;
    color: #ffffff;
    box-shadow: -2px 5px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    width: 50px;  
    overflow: hidden;
    white-space: nowrap;
    pointer-events: auto; 
    will-change: transform;
}

.site-call {
    background: #007bff; 
    border-left: 3px solid #fff;
}

.site-wa {
    background: #25d366; 
    border-left: 3px solid #fff;
    position: relative;
}

.site-tg {
    background-color: #f483fc !important; 
    background: #f483fc !important;     
    border-left: 3px solid #ffffff !important;
}

.btn-icon {
    font-size: 22px;
    min-width: 30px;
}

.btn-text {
    display: none; 
    margin-left: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.online-dot {
    height: 10px;
    width: 10px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 8px;
    box-shadow: 0 0 5px #fff;
}

@media screen and (min-width: 768px) {
    .site-btn:hover {
        width: 160px; 
        padding-right: 20px;
    }
    .site-btn:hover .btn-text {
        display: inline-block;
    }
}

@media screen and (max-width: 767px) {
    .site-contact-bar {
        right: 0;
    }
    .site-btn {
        width: 55px; 
        padding: 15px;
    }
    .site-wa {
        animation: pulse-site 2s infinite;
    }
    .site-tg {
        animation: pulse-site 2s infinite;
    }
}

@keyframes pulse-site {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: -5px 5px 20px #25d366; }
    100% { transform: scale(1); }
}

@keyframes pulse-site-tg {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: -5px 5px 20px #f483fc; }
    100% { transform: scale(1); }
}






/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-content {
  background: #fff;
  padding: 2rem;
  max-width: 500px;
  text-align: center;
  border-radius: 10px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
th,
td {
  border: 1px solid #ddd;
  padding: 0.8rem;
  text-align: left;
}

/* Footer */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: #222;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.dmca,
.copyright {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 1rem;
}

/* High contrast & LCP friendly */
img {
  max-width: 100%;
  height: auto;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0;
}

.profile-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.profile-card:hover {
  transform: translateY(-8px);
}

.profile-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;   /* helps with consistent card height */
  filter: contrast(1.08) brightness(1.02);  /* full contrast for LCP */
}

.profile-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.4rem;
  color: #e91e63;
}

.profile-card p {
  padding: 0 1rem 1.2rem;
  font-size: 0.95rem;
  color: #555;
}