
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base Styles */
:root {
  --rkabel-blue: #0056b3;
  --rkabel-dark-blue: #003b7a;
  --rkabel-light-blue: #0074d9;
  --rkabel-dark-gray: #333333;
  --rkabel-gray: #f5f5f7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--rkabel-dark-gray);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

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

img {
  max-width: 100%;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 1rem;
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}

/* Typography */
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--rkabel-dark-blue);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--rkabel-blue);
  color: white;
  font-weight: 500;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--rkabel-dark-blue);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--rkabel-dark-gray);
  border: none;
  background-color: transparent;
  cursor: pointer;
}

/* Header */
#header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.text-rkabel-blue {
  color: var(--rkabel-blue);
}

.text-rkabel-dark-blue {
  color: var(--rkabel-dark-blue);
}

.text-rkabel-dark-gray {
  color: var(--rkabel-dark-gray);
}

/* Navigation */
nav {
  display: none;
}

@media (min-width: 768px) {
  nav {
    display: flex;
    align-items: center;
  }
  
  nav a {
    margin-left: 2rem;
  }
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  border-top: 1px solid #e5e5e5;
}

#mobile-menu.show {
  display: block;
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
}

/* Mobile Menu Animation */
.animate-fade-in {
  animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
#hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero-slides {
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

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

.hero-slide .container {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Hero Slide Animation */
.animate-slide-in {
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.8s forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide Indicators */
.slide-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 4px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.slide-indicator.active {
  background-color: white;
  transform: scale(1.25);
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-black {
  background-color: black;
}

.bg-opacity-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.relative {
  position: relative;
}

.bottom-8 {
  bottom: 2rem;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.flex {
  display: flex;
}

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

.space-x-2 > * + * {
  margin-left: 0.5rem;
}

/* Product Cards */
.product-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.h-48 {
  height: 12rem;
}

.overflow-hidden {
  overflow: hidden;
}

.object-cover {
  object-fit: cover;
}

.transition-transform {
  transition-property: transform;
}

.duration-500 {
  transition-duration: 0.5s;
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

/* Background Colors */
.bg-rkabel-gray {
  background-color: var(--rkabel-gray);
}

.bg-white {
  background-color: white;
}

.bg-rkabel-dark-blue {
  background-color: var(--rkabel-dark-blue);
}

.bg-rkabel-blue {
  background-color: var(--rkabel-blue);
}

/* Text Colors */
.text-white {
  color: white;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-600 {
  color: #4b5563;
}

/* Form Elements */
input, textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.25rem;
  font-family: inherit;
}

textarea {
  min-height: 150px;
}

/* Stats Section */
.rounded-lg {
  border-radius: 0.5rem;
}

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

/* Footer */
.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.items-start {
  align-items: flex-start;
}

.mr-2 {
  margin-right: 0.5rem;
}

.hover\:bg-opacity-80:hover {
  background-color: rgba(0, 59, 122, 0.8);
}

.rounded-full {
  border-radius: 9999px;
}

.transition-colors {
  transition-property: background-color, color;
  transition-duration: 0.3s;
}

/* Utility Classes */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.opacity-90 {
  opacity: 0.9;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .md\:text-4xl {
    font-size: 2.25rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .md\:mb-0 {
    margin-bottom: 0;
  }
  
  .md\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .lg\:text-6xl {
    font-size: 3.75rem;
  }
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.flex-col {
  flex-direction: column;
}

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

.justify-between {
  justify-content: space-between;
}
