/* Font Face */
@font-face {
  font-family: "Adam-Medium";
  src: url("Assets/fonts/Adam-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Variables */
:root {
  --primary-dark: #1d260b;
  --primary-gold: linear-gradient(135deg, #d4af37 0%, #f1e5b9 100%);
  --primary-gold-solid: #d4af37;
  --light-gold: #f1e5b9;
  --white: #ffffff;
  --black: #000000;
  --dark-bg: #0a0e05;
  --card-bg: rgba(29, 38, 11, 0.8);
  --presenter:rgb(29, 38, 11);
  --text-light: #e2e8f0;
  --text-gray: #a0aec0;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --glow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* Remove blue outline when buttons/links are tapped or focused */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
}

button,
a,
input,
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
  background-color: inherit;
}

:focus-visible {
  outline: 2px solid var(--primary-color-dark); /* or any color you like */
  outline-offset: 2px;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Adam-Medium", sans-serif;
  font-weight: normal;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.logo img {
  scale: 2;
  padding: 5px 0px;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--primary-dark);
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--light-gold);
  border: 2px solid var(--primary-gold-solid);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gold);
  transition: var(--transition);
  z-index: -1;
}

.btn-outline:hover {
  color: var(--primary-dark);
}

.btn-outline:hover::before {
  left: 0;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2.5rem 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(10, 14, 5, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-img {
  height: 50px;
  width: auto;
}

.header.scrolled .logo-img {
  height: 40px;
}

.logo-text {
  font-family: "Adam-Medium", sans-serif;
  font-size: 1.8rem;
  background: var(--primary-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
  margin-right: 10px;
}

.nav-link {
  position: relative;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: var(--transition);
  justify-items: center;
  align-items: center;
  text-align: center;
  margin-right: 50px;
  font-family: "Adam-Medium";
  font-size: 21px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--light-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.auth-container {
  display: flex;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-gold-solid);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 14, 5, 0.7),
    rgba(10, 14, 5, 0.9)
  );
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: "Adam-Medium", sans-serif;
}

.hero-title span {
  background: var(--primary-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-gray);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.about-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><rect width="100" height="100" fill="%23D4AF37"/><path d="M0 0L100 100" stroke="%23D4AF37" stroke-width="2"/><path d="M100 0L0 100" stroke="%23D4AF37" stroke-width="2"/></svg>');
  opacity: 0.1;
  z-index: -1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  opacity: 0;
  transform: translateX(-50px);
  margin-top: 120px;
  margin-bottom: 0px;
}

.about-content.animated {
  opacity: 1;
  transform: translateX(0);
  transition: var(--transition);
}

.section-subtitle {
  color: var(--primary-gold-solid);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}
.mobile-about-image{
            display: none;
        }

.about-image {
  opacity: 0;
  transform: translateX(40px);
  position: relative;
  width: 65%;
  top: 100px;
  left: 70px;
  scale: 1.7;
}

.about-image.animated {
  opacity: 1;
  transform: translateX(0);
  transition: var(--transition);
}

/* About Company Section */
.about-company-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--dark-bg), var(--primary-dark));
  position: relative;
  overflow: hidden;
}

.about-company-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-company-image {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(-50px);
}

.about-company-image.animated {
  opacity: 1;
  transform: translateX(0);
  transition: var(--transition);
}

.about-company-image img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--glow);
}

.about-company-content {
  opacity: 0;
  transform: translateX(50px);
}

.about-company-content.animated {
  opacity: 1;
  transform: translateX(0);
  transition: var(--transition);
}

.about-company-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--primary-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-company-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}



/* Nominees Section */
.nominees-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(
    to bottom,
    var(--primary-dark) 0%,
    var(--dark-bg) 50%
  );
}

.nominees-header {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
}

.nominees-header.animated {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}

.nominees-container {
  position: relative;
  padding: 0 60px;
}

.nominees-scroller {
  display: flex;
  gap: 2rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 2rem 0;
}

.nominee-card {
  flex: 0 0 350px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.8s ease-in-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nominee-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.8s ease-in-out;
}

.nominee-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease-in-out;
}

.nominee-photo {
  position: relative;
  width: 100%;
  height: 100%; /* adjust to card height */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.05);
}

.nominee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.nominee-photo .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a3515;;
  width: 100%;
  height: 100%;
  font-size: 30rem;
}

.nominee-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, var(--primary-dark) 30%, transparent);
  transform: translateY(70px);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}
/* Adjust nominee content area */
.nominee-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, var(--primary-dark) 30%, transparent);
  transform: translateY(70px);
  opacity: 0;
  transition: all 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
}

.nominee-details {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0;
  max-height: 0;
  transition: var(--transition);
  flex-grow: 1;
}

/* Ensure vote info appears when details are shown */
.nominee-card:hover .nominee-details {
  opacity: 1;
  max-height: 100px;
  margin-bottom: 1rem;
}

.nominee-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nominee-category {
  font-size: 1rem;
  color: var(--light-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.nominee-details {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  max-height: 0;
  transition: var(--transition);
}

.nominee-id {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  opacity: 0;
  transition: var(--transition);
}

.nominee-card:hover .nominee-content {
  transform: translateY(0px);
  opacity: 4;
  background: linear-gradient(to top, var(--card-bg) 60%, transparent);
  transition: all 0.8s ease-out;
}

.nominee-card:hover .nominee-details,
.nominee-card:hover .nominee-id {
  opacity: 1;
  max-height: 100px;
}

.nominee-card:hover .nominee-image {
  transform: scale(1.1);
  filter: grayscale(90%) contrast(110%);
}

/* Vote bar positioned above vote button */
.vote-info {
  margin: 1.5rem 0;
  width: 100%;
}

.vote-bar-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.vote-bar {
  flex-grow: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.vote-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37 0%, #f1e5b9 100%);
  border-radius: 4px;
  width: 0%;
  transition: width 1s ease-in-out;
}

.vote-count {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 80px;
  text-align: right;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.vote-target {
  font-size: 0.8rem;
  color: var(--text-gray);
  text-align: center;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.4s ease 0.1s;
}

/* Show vote info on card hover */
.nominee-card:hover .vote-bar-container,
.nominee-card:hover .vote-target {
  opacity: 1;
  transform: translateY(0);
}

.scroller-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.scroller-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  color: #d4af37;
  border: #d4af37 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  pointer-events: all;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroller-btn:hover {
  transform: scale(1.05);
  background: var(--primary-gold);
  color: var(--primary-dark);
}

.view-all-btn {
  text-align: center;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
}

.view-all-btn.animated {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}

/* Categories Section */
.categories-section {
  position: relative;
  padding: 6rem 0;
  background: /*url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><rect width="100" height="100" fill="%23D4AF37"/><circle cx="50" cy="50" r="40" stroke="%23D4AF37" stroke-width="2" fill="none"/></svg>');*/
    linear-gradient(to bottom, var(--dark) 30%, var(--primary-dark) 100%);
}

.categories-header {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
}

.categories-header.animated {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.category-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow);
  border-color: var(--primary-gold-solid);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--primary-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.category-count {
  color: var(--light-gold);
  font-weight: 600;
}


/* Countdown Section */
.countdown-section {
  background: linear-gradient(to bottom, var(--dark-bg), var(--primary-dark));
  padding: 3rem 0;
  text-align: center;
}

.countdown-container{
  margin-top: 5rem;
}

.countdown-stats{
  margin-top: rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 1rem;
}

.countdown-timer span {
  display: block;
  font-size: 3rem;
  background: var(--primary-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.countdown-timer small {
  display: block;
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 0.3rem;
  text-transform: uppercase;
}

.countdown-stats .stat-value {
  display: inline-block;
  perspective: 200px;
  transition: transform 0.5s ease, color 0.3s ease;
}

.countdown-stats .stat-value.flip {
  transform: rotateX(360deg);
  color: var(--primary-gold-solid);
}


/* Footer */
.footer {
  position: relative;
  background: var(--primary-dark);
  padding: 5rem 0 2rem;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 20%
    ),
    linear-gradient(
      45deg,
      transparent 49%,
      rgba(212, 175, 55, 0.05) 50%,
      transparent 51%
    );
  background-size: cover, cover, 10px 10px;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  background: var(--primary-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: var(--transition);
}

.footer-links li i {
  color: #d4af37;

  font-size: 15px;
  vertical-align: middle;
}

.footer-link {
  color: var(--text-gray);
  transition: var(--transition);
  position: relative;
  padding-left: 0;
  transition: var(--transition);
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--light-gold);
  padding-left: 10px;
}

.footer-link:hover::before {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .logo-img {
    height: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid.scroll-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch; /* Smooth scroll for iOS */
  }

  .categories-grid.scroll-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for clean UI */
  }

  .category-card {
    min-width: 240px;
    flex: 0 0 auto;
  }

  .view-all-btn {
    margin-top: 1rem;
    
  }

  .nominees-scroller {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
  }
  .nominees-scroller::-webkit-scrollbar {
    display: none;
  }

  .nominees-scroller {
    scrollbar-width: thin;              /* Firefox */
    scrollbar-color: var(--primary-gold-solid) var(--dark-bg);
  }

  /* Chrome, Edge, Safari */
  .nominees-scroller::-webkit-scrollbar {
    height: 8px; /* thickness of the scrollbar */
  }

  .nominees-scroller::-webkit-scrollbar-track {
    background: var(--dark-bg); 
    border-radius: 10px;
  }

  .nominees-scroller::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-gold-solid), var(--primary-gold));
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(212,175,55,0.6);
  }

  .mobile-about-image{
            display: block;
              opacity: 0;
  transform: translateX(40px);
  position: relative;
  width: 65%;
  top: 100px;
  left: 70px;
  scale: 1.7;
        }
        .mobile-about-image.animated {
  opacity: 1;
  transform: translateX(0);
  transition: var(--transition);
}

  .about-image {
    z-index: -1;
    width: 40%;
    display: none;
  }
  .about-section {
    padding-bottom: 70rem;
    height: 100vh;
    margin-bottom: 20px;
  }
  .about-company-image {
    display: block;
  }
  .about-company-container {
    margin-top: 70px;
    text-align: center;
  }
  .footer-col img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .about-company-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-company-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .auth-container {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .logo-img {
    height: 50px;
    margin-left: 33px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .nominee-card {
    flex: 0 0 250px;
  }

  .voting-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 340px) and (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .nominee-image{
    max-height: 450px;
    
  }

  .nominee-card {
    flex: 0 0 380px;
    max-height: 500px;
    min-height: 300px;
    width: 380px;
  }

  .nominees-container {
    padding: 0 30px;
  }
  .nominee-photo{
    height:100%;
  }
  .nominee-photo .placeholder{
   font-size: 20rem;
  }
  .about-image {
    top: -0px;
    z-index: -1;
  }
  .about-section {
    margin-bottom: -90px;
  }
  
  .about-company-container {
    margin-top: -70px;
    text-align: center;
  }
  .footer-col img {
    width: 50%;
  }
  .sponsors-header h2 {
    scale: 0.85;
  }
  .sponsors-slide {
    animation: slide-mobile 25s linear infinite;
  }

  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 5));
    }
  }

  .sponsor-card {
    flex: 0 0 140px;
    height: 100px;
  }

  .sponsor-logo {
    max-width: 340px;
    max-height: 60px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sponsors-header h2 {
    scale: 0.85;
  }
  .sponsors-slide {
    animation: slide-mobile 25s linear infinite;
  }

  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 5));
    }
  }

  .sponsor-card {
    flex: 0 0 100px;
    height: 100px;
  }

  .sponsor-logo {
    max-width: 140px;
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .sponsors-header .section-title {
    font-size: 1.8rem;
  }

  .sponsor-card {
    flex: 0 0 100px;
    height: 70px;
    margin: 0 10px;
    width: 30px;
  }

  .sponsor-logo {
    max-width: 120px;
    max-height: 50px;
  }
  .categories-grid.scroll-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch; /* Smooth scroll for iOS */
  }

  .categories-grid.scroll-container {
    scrollbar-width: thin;              /* Firefox */
    scrollbar-color: var(--primary-gold-solid) var(--dark-bg);
  }

  /* Chrome, Edge, Safari */
  .categories-grid.scroll-container::-webkit-scrollbar {
    height: 8px; /* thickness of the scrollbar */
  }

  .categories-grid.scroll-container::-webkit-scrollbar-track {
    background: var(--dark-bg); 
    border-radius: 10px;
  }

  .categories-grid.scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-gold-solid), var(--primary-gold));
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(212,175,55,0.6);
  }

  .category-card.scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffd700, var(--primary-gold-solid));
  }


  .category-card {
    max-width: 370px;
    flex: 0 0 375px;
  }

  .view-all-btn {
    margin-top: 1rem;
    text-align: center;
  }

  .nominees-scroller {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
}

/* Hide nav by default on small screens */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #111; /* dark background */
    padding: 1rem;
    border-radius: 0.5rem;
    position: absolute;
    top: 70px;
    right: 20px;
    z-index: 1000;
  }

  /* When active, show nav */
  .main-nav.active {
    display: flex;
  }
  /* Hide menu by default on small screens */
  .main-nav {
    display: none;
    flex-direction: column;
    background: var(--primary-dark); /* or dark if you prefer */
    position: absolute;
    top: 80px; /* below header */
    right: 20px;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  /* Show when active */
  .main-nav.active {
    display: flex;
  }

  /* Optional: style toggle button when active */
  .mobile-menu-toggle.active {
    color: rgb(127, 3, 3); /* highlight when open */
  }

  .nav-link {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
  }

  .scroller-btn {
    margin-top: 450px;
    top: 550px;
    display: none;
  }
  .nominees-container {
    padding: 0 0px;
    margin-top: -30px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  .categories-grid.scroll-container {
    scrollbar-width: thin;              /* Firefox */
    scrollbar-color: var(--primary-gold-solid) var(--dark-bg);
  }

  /* Chrome, Edge, Safari */
  .categories-grid.scroll-container::-webkit-scrollbar {
    height: 8px; /* thickness of the scrollbar */
  }

  .categories-grid.scroll-container::-webkit-scrollbar-track {
    background: var(--dark-bg); 
    border-radius: 10px;
  }

  .categories-grid.scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-gold-solid), var(--primary-gold));
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(212,175,55,0.6);
  }

  .category-card.scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffd700, var(--primary-gold-solid));
  }

  .countdown-container{
  margin:50px 0 0 0;
  display: inline-flexbox;
  scale: 0.9;
}
}
