/* SKU Theme Claude - CSS cloned from frontend with Tailwind-like classes */

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 0%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 0%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 0%;
  --primary: 75 53% 48%;
  --primary-foreground: 0 0% 100%;
  --secondary: 68 76% 59%;
  --secondary-foreground: 0 0% 0%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 83 61% 26%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 75 53% 48%;
  --radius: 0.5rem;
}

/* Base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Dela Gothic One', cursive;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility classes matching Tailwind */
.min-h-screen { min-height: 100vh; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.ml-2 { margin-left: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.leading-relaxed { line-height: 1.625; }

/* Text utilities */
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.font-bold { font-weight: 700; }
.font-dela { font-family: 'Dela Gothic One', cursive; }

/* Colors */
.text-black { color: #000; }
.text-white { color: #fff; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }
.text-primary { color: #b1c134; }
.bg-white { background-color: #fff; }
.bg-yellow-50 { background-color: #fefce8; }
.bg-yellow-100 { background-color: #fef3c7; }
.bg-primary { background-color: #b1c134; }
.bg-secondary { background-color: #f6e96e; }
.bg-accent { background-color: #5d7f2a; }

/* Layout utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-full { max-width: 100%; }
.max-h-full { max-height: 100%; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.overflow-hidden { overflow: hidden; }

/* Grid utilities */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:h-full { height: 100%; }
  .md\:block { display: block; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid { display: grid; }
  .lg\:hidden { display: none; }
}

/* Button styles */
.btn-primary {
  background-color: #2d5016;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.15s ease-in-out;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background-color: #b1c134;
  text-decoration: none;
}

.btn-secondary {
  background-color: #fff;
  color: #2d5016;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid #2d5016;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #2d5016;
  color: #fff;
  text-decoration: none;
}

/* Card styles */
.card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  overflow: hidden;
}

.card-content {
  padding: 1.5rem;
}

/* Hero slider styles */
.hero-slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

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

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 1rem;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease-in-out;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-nav.prev {
  left: 1rem;
}

.hero-nav.next {
  right: 1rem;
}

.hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.dot.active {
  background: #fff;
  width: 32px;
  border-radius: 6px;
}

/* Aspect ratio utilities */
.aspect-video {
  aspect-ratio: 16 / 9;
}

.aspect-\[2\/1\] {
  aspect-ratio: 2 / 1;
}

/* Line clamp utility */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Header styles */
.site-header {
  background: #fff;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

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

.logo a {
  font-family: 'Dela Gothic One', cursive;
  font-size: 1.5rem;
  color: #2d5016;
  text-decoration: none;
}

/* Footer styles */
.site-footer {
  background: #2d5016;
  color: #fff;
  padding: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero-nav {
    display: none;
  }
  
  .text-3xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .px-8 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.pattern-bg {
  background-image: url('../images/pattern-bg.png');
}

.page-title-full {
  background-color: #f6e96e;
  color: #111827;
  padding: 80px 0;
  text-align: center;
  width: 100vw;
}
.page-title-full h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: #111827;
  text-transform: uppercase;
}

.page-title-full .subtitle {
  font-size: 18px;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title-full h1 {
      font-size: 32px;
  }
  
  .page-title-full .subtitle {
      font-size: 16px;
      padding: 0 20px;
  }
}

/* Jury Slider Styles */
.jury-slider-section {
    background: #fef3c7;
    padding: 80px 0;
}

.jury-slider-header {
    margin-bottom: 66px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.jury-header-content {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 32px;
    position: relative;
}

.jury-header-text {
    flex: 1;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.jury-slider-controls {
    position: relative;
    z-index: 10;
}

.jury-header-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.jury-header-text p {
    font-size: 20px;
    color: #6b7280;
}

.jury-slider-desktop {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.jury-cards-window {
    overflow: hidden;
    width: 100%;
}

.jury-slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2d5016;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.slider-btn:hover {
    background: #5d7f2a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.jury-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.jury-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.jury-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.jury-card-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.jury-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jury-card-content {
    padding: 24px;
}

.jury-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.jury-title {
    color: #abc135;
    font-size: 14px;
    margin-bottom: 8px;
}

.jury-specialization {
    color: #6b7280;
    font-size: 14px;
}

.jury-slider-mobile {
    display: none;
    position: relative;
}

.jury-mobile-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.jury-mobile-viewport {
    overflow: hidden;
    width: 100%;
}

.jury-mobile-track {
    display: flex;
    gap: 16px;
    transition: transform 0.35s ease;
}

.jury-card-mobile {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 0 0 var(--mobile-card-width, calc((100% - 16px) / 2));
}

.slider-btn-mobile {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2d5016;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.slider-prev-mobile {
    left: 16px;
    transform: translateY(-50%);
}

.slider-next-mobile {
    right: 16px;
    transform: translateY(-50%);
}

.slider-btn-mobile:hover {
    background: #5d7f2a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.jury-slider-footer {
    text-align: center;
    margin-top: 48px;
}

.jury-button {
    display: inline-block;
    background: white;
    border: 2px solid #2d5016;
    color: #2d5016;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jury-button:hover {
    background: #2d5016;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .jury-slider-desktop {
        display: none;
    }
    
    .jury-slider-mobile {
        display: block;
        padding: 0 40px;
    }
    
    .jury-header-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .jury-header-text {
        position: static;
        transform: none;
        left: auto;
    }
    
    .jury-slider-controls {
        display: none;
    }
    
    .jury-header-text h2 {
        font-size: 32px;
    }
    
    .jury-header-text p {
        font-size: 16px;
    }
}

.text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}

.competition-content .btn-primary{
  display: block;
}

.upcoming-contest .btn-primary{
  display: block;
}

/* About page */
.about-page section h3 {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}