/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@1,400&family=Rakkas&family=Gajraj+One&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  color: white;
  position: relative;
  background: none; /* remove any body background */
}




/* Base gradient background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #131313 0%, #020604 100%);
  z-index: -3;
}

/* Background image with dark overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url('../public/Untitled design (3).jpg') center/cover no-repeat;
  z-index: -1;
}









/* Container */
.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: space-between; /* center horizontally */
      /* center vertically */
}

/* Hero Container - Responsive Layout */
.hero-container {
  position: relative;
  width: 100%;
  height: 100vh; /* or desired height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5vw 7vw; /* spacing scales with screen width */
  box-sizing: border-box;
  margin-top: 20px;
}

/* Left side contents */
.hero-contents {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  max-width: 50%;
}

.circular-image {
  flex-shrink: 0;
  width: clamp(200px, 25vw, 400px);
  height: clamp(200px, 25vw, 400px);
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  border: 0.2vw solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 1.5vw 0.5vw rgba(255, 255, 255, 0.2);
  object-fit: cover;
}






/* Hero text */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  padding: 1.5vw;
}

.hero-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-text {
  font-family: 'Rakkas', cursive;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1.1;
  text-shadow: 0 0 2vw rgba(246, 20, 20, 0.58);
}

.hero-text.white {
  color: #ffffff;
}

.hero-text.red {
  color: #E3000B;
}

/* Intro paragraph */
.intro-text {
  font-size: clamp(14px, 1.8vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  font-family: 'Raleway', sans-serif;
  color: white;
  background: rgba(11, 9, 9, 0.578);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0.8vw;
  padding-left: 1.5vw;
  padding-right: 1.5vw;
  padding-top: .1vw;
  padding-bottom: .1vw;
}


/* Brand text */
.topbar {
  position: fixed;  /* stays at the top while scrolling */
  top: 0;           /* aligns to very top */
  left: 0;          /* aligns to left edge */
  width: 100vw;     /* full viewport width */
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* Glassy effect */
  background: rgba(21, 20, 20, 0.345); /* semi-transparent */
  backdrop-filter: blur(10px);          /* frosted glass blur */
  -webkit-backdrop-filter: blur(10px);  /* for Safari */
  border-radius: 0;                      /* straight edges */
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* subtle bottom border */
  z-index: 10;  /* keep it above content */
}



.brand {
  display: flex;
  gap: 2px;
}

.glow {
  font-family: 'Rakkas', cursive;
  font-size: 40px;
  font-weight: 400;
  text-shadow: 0px 0px 8px rgba(255, 10, 10, 0.68);
}

.glow.white {
  color: #ffffff;
}

.glow.offwhite {
  color: #F3F2FF;
}

.glow.fdfdfd {
  color: #FDFDFD;
}

/* Nav bar */
.nav {
  display: flex;
  gap: 30px;
  background: #151515;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  border-left: none;
  border-right: none;
  padding: 10px 20px;
  transform: skew(-20deg);
  position: relative;
  margin-right: 50px;
}

.nav-link {
  color: #FDFDFD;
  font-size: 20px;
  font-family: 'Rakkas', cursive;
  text-decoration: none;
  display: inline-block;
  transform: skew(20deg);
  cursor: pointer;
}

/* Dropdown wrapper */
.nav-dropdown {
  position: relative;
}

/* Down arrow */
.down-icon {
  font-size: 14px;
  margin-left: 5px;
  transform: skew(20deg);
}

/* Dropdown menu hidden by default */
.dropdown-container {
  display: none;        /* hidden initially */
  position: absolute;
  top: 100%;            /* below the parent link */
  right: -50;             /* align to right of parent */
  background: #151515;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  border-left: none;
  border-right: none;
  padding: 10px 15px;
  gap: 20px;
  transform: skew(-20deg);
  z-index: 100;
  white-space: nowrap;  /* prevent wrapping */
}

/* Counter-skew links */
.dropdown-container .nav-link {
  transform: skew(20deg);
}

/* Show dropdown on hover of parent container (desktop only) */
@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-container {
    display: flex;
  }
}

/* Optional: hover effect on dropdown links (desktop only) */
@media (min-width: 769px) {
  .dropdown-container .nav-link:hover {
    color: #E3000B;
  }
  
  .nav .nav-link:hover {
    color: #E3000B;
    transition: color 0.2s ease;
  }
  
  .dropdown-container .nav-link:hover {
    color: #E3000B;
    transition: color 0.2s ease;
  }
}




/* Contact button */
.contact-section {
  position: absolute;
  left: 100px;
  bottom: 60px;
}

.contact-btn {
  background: white;
  color: black;
  font-family: 'Gajraj One', cursive;
  font-size: 24px;
  border: none;
  border-radius: 4px;
  padding: 13px 62px;
  cursor: pointer;
  box-shadow: 0px 8px 16px rgba(96, 97, 112, 0.16);
}

.contact-btn:hover {
  background: #E3000B;
  color: white;
}
.contact-social {
  position: absolute;
  left: 120px;
  bottom: 4%;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Reuse your existing button */
.contact-btn {
  background: white;
  color: black;
  font-family: 'Gajraj One', cursive;
  font-size: 24px;
  border: none;
  border-radius: 4px;
  padding: 13px 62px;
  cursor: pointer;
  box-shadow: 0px 8px 16px rgba(96, 97, 112, 0.16);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #E3000B;
  color: white;
}

/* Social icons next to button */
/* Social icons next to button */
.social-icons {
  display: flex;
  align-items: center;
  gap: 30px; /* spacing between icons */
}

/* First three icons inside links */
.social-icons a:nth-child(-n+3) img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* make them white */
  transition: transform 0.2s ease;
}

/* Last icon larger and keep original color */
.social-icons a:last-child img {
  width: 80px;  /* bigger */
  height: 80px;
  filter: none; /* original colors */
  transition: transform 0.2s ease;
}

/* Hover effects */
.social-icons a:nth-child(-n+3) img:hover {
  transform: scale(1.15);
}

.social-icons a:last-child img:hover {
  transform: scale(1.25);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ============================================ */

/* Mobile Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid white;
  color: white;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 20;
  flex-shrink: 0;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    padding: 4vw 6vw;
  }

  .hero-contents {
    max-width: 55%;
  }

  .circular-image {
    width: clamp(180px, 28vw, 350px);
    height: clamp(180px, 28vw, 350px);
  }

  .contact-social {
    left: 60px;
    bottom: 40px;
    gap: 25px;
  }

  .contact-btn {
    font-size: 20px;
    padding: 11px 50px;
  }

  .social-icons {
    gap: 25px;
  }

  .social-icons a:last-child img {
    width: 60px;
    height: 60px;
  }

  .glow {
    font-size: 32px;
  }

  .nav {
    gap: 20px;
    padding: 8px 15px;
    margin-right: 30px;
  }

  .nav-link {
    font-size: 18px;
  }
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
  /* Disable hover on mobile devices completely */
  * {
    -webkit-tap-highlight-color: transparent;
  }

  /* Body - allow scrolling on mobile */
  body {
    overflow-y: auto;
  }

  /* Container - stack vertically */
  .container {
    flex-direction: column;
    padding: 80px 20px 140px 20px;
    min-height: auto;
  }

  /* Hero Container - Responsive for Mobile */
  .hero-container {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10vw 5vw;
  }

  .hero-contents {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  /* Circular Image - center and resize for mobile */
  .circular-image {
    width: clamp(150px, 50vw, 300px);
    height: clamp(150px, 50vw, 300px);
    margin-top: 5vw;
  }

  /* Hero Title - center and resize */
  .hero-title {
    text-align: center;
    align-items: center;
  }

  .hero-line {
    justify-content: center;
  }

  /* Intro Text - full width on mobile */
  .intro-text {
    width: 100%;
    max-width: 100%;
  }

  /* Topbar - mobile navigation */
  .topbar {
    padding: 12px 15px;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: space-between;
  }

  .topbar .brand {
    flex: 1;
    min-width: 0;
  }

  .brand {
    font-size: 24px;
  }

  .glow {
    font-size: 24px;
  }

  /* Hide desktop nav on mobile */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(21, 20, 20, 0.95);
    backdrop-filter: blur(15px);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    margin: 0;
    transform: none;
    gap: 15px;
    z-index: 15;
  }

  .nav.active {
    display: flex;
  }

  .nav-link {
    transform: none;
    padding: 10px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Dropdown on mobile */
  .dropdown-container {
    position: static;
    display: flex;
    flex-direction: column;
    transform: none;
    background: rgba(10, 10, 10, 0.8);
    border: none;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    margin-top: 0;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin-top 0.3s ease;
    /* Disable pointer events when closed to prevent hover issues */
    pointer-events: none;
  }

  /* Active state - dropdown is open (use !important to override any hover) */
  .nav-dropdown.active .dropdown-container {
    pointer-events: auto !important;
    max-height: 200px !important;
    padding: 10px 0 10px 20px !important;
    margin-top: 5px !important;
    opacity: 1 !important;
    display: flex !important;
  }
  
  /* Not active - dropdown is closed (use !important to override any hover) */
  .nav-dropdown:not(.active) .dropdown-container {
    pointer-events: none !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    opacity: 0 !important;
  }

  /* Hover should never affect dropdown on mobile - block hover specifically */
  .nav-dropdown:hover .dropdown-container {
    max-height: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    opacity: 0 !important;
    display: none !important;
  }
  
  /* Active state overrides hover - this ensures click works */
  .nav-dropdown.active:hover .dropdown-container {
    pointer-events: auto !important;
    max-height: 200px !important;
    padding: 10px 0 10px 20px !important;
    margin-top: 5px !important;
    opacity: 1 !important;
    display: flex !important;
  }

  .dropdown-container .nav-link {
    transform: none;
    font-size: 16px;
    padding-left: 10px;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
  }

  .nav-dropdown.active .dropdown-container .nav-link {
    opacity: 1;
  }

  /* Visual indicator for dropdown toggle */
  .dropdown-toggle {
    position: relative;
  }

  .nav-dropdown.active .dropdown-toggle .down-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .dropdown-toggle .down-icon {
    transition: transform 0.3s ease;
    display: inline-block;
  }

  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Contact Section - stack vertically on mobile */
  .contact-social {
    position: relative;
    left: auto;
    bottom: auto;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0 20px 0;
    width: 100%;
    order: 4;
  }

  .contact-btn {
    width: 100%;
    max-width: 280px;
    font-size: 20px;
    padding: 12px 40px;
  }

  /* Social Icons - center and resize */
  .social-icons {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .social-icons a:nth-child(-n+3) img {
    width: 30px;
    height: 30px;
  }

  .social-icons a:last-child img {
    width: 50px;
    height: 50px;
  }
}

/* Small Mobile Devices (up to 480px) */
@media (max-width: 480px) {
  .container {
    padding: 70px 15px 120px 15px;
  }

  .hero-container {
    padding: 8vw 4vw;
  }

  .circular-image {
    width: clamp(120px, 60vw, 250px);
    height: clamp(120px, 60vw, 250px);
  }

  .glow {
    font-size: 20px;
  }

  .brand {
    flex-wrap: wrap;
  }

  .topbar {
    padding: 10px 12px;
  }

  .contact-btn {
    font-size: 18px;
    padding: 10px 30px;
    max-width: 100%;
  }

  .social-icons a:nth-child(-n+3) img {
    width: 28px;
    height: 28px;
  }

  .social-icons a:last-child img {
    width: 45px;
    height: 45px;
  }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-container {
    flex-direction: row;
    padding: 5vw 7vw;
  }

  .hero-contents {
    max-width: 60%;
  }

  .circular-image {
    width: clamp(100px, 30vw, 200px);
    height: clamp(100px, 30vw, 200px);
    margin-top: 0;
  }
}



