/**
 * Hosakka Studio - Styles CSS
 */

/* Base styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Gradient text */
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

/* Card styles */
.bento-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Animation for modal */
.modal-content {
  animation: modal-appear 0.3s ease-out forwards;
}

@keyframes modal-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Newsletter form styles */
.ml-form-embedContainer {
  width: 100% !important;
}

.ml-form-embedWrapper {
  width: 100% !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.ml-form-embedBody {
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
}

.ml-form-embedContent {
  margin: 0 !important;
  padding: 0 !important;
}

.ml-form-embedContent h4 {
  display: none !important;
}

.ml-form-embedContent p {
  display: none !important;
}

.ml-form-formContent {
  margin: 0 !important;
}

.ml-form-fieldRow {
  display: flex !important;
  margin-bottom: 10px !important;
}

.ml-form-embedSubmit {
  margin-top: 10px !important;
}

.ml-form-embedSubmitButton {
  background-color: rgb(124, 58, 237) !important;
  border-radius: 0.375rem !important;
  width: 100% !important;
  padding: 0.5rem !important;
  color: white !important;
  border: none !important;
  cursor: pointer !important;
}

.ml-form-embedSubmitButton:hover {
  background-color: rgb(109, 40, 217) !important;
}

/* Tailwind-inspired utility classes */
.bg-neutral-950 {
  background-color: rgb(10, 10, 10);
}

.bg-neutral-900 {
  background-color: rgb(23, 23, 23);
}

.bg-neutral-800 {
  background-color: rgb(38, 38, 38);
}

.text-white {
  color: rgb(255, 255, 255);
}

.text-neutral-400 {
  color: rgb(163, 163, 163);
}

.text-neutral-500 {
  color: rgb(115, 115, 115);
}

.text-purple-400 {
  color: rgb(192, 132, 252);
}

.text-pink-400 {
  color: rgb(244, 114, 182);
}

.text-blue-400 {
  color: rgb(96, 165, 250);
}

.text-green-400 {
  color: rgb(74, 222, 128);
}

.text-red-400 {
  color: rgb(248, 113, 113);
}

.text-blue-500 {
  color: rgb(59, 130, 246);
}

.text-red-500 {
  color: rgb(239, 68, 68);
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-purple-400 {
  --tw-gradient-stops: rgb(192, 132, 252), var(--tw-gradient-to);
}

.to-pink-600 {
  --tw-gradient-to: rgb(219, 39, 119);
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

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

/* Responsive grid */
.grid {
  display: grid;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

/* Responsive padding and margins */
.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

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

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

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

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

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

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

.mb-12 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

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

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

.ml-2 {
  margin-left: 0.5rem;
}

/* Positioning */
.items-center {
  align-items: center;
}

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

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

.max-w-7xl {
  max-width: 80rem;
}

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

.max-w-3xl {
  max-width: 48rem;
}

.w-full {
  width: 100%;
}

.max-h-\[80vh\] {
  max-height: 80vh;
}

.fixed {
  position: fixed;
}

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

.z-50 {
  z-index: 50;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.bg-opacity-70 {
  --tw-bg-opacity: 0.7;
}

/* Typography */
.text-center {
  text-align: center;
}

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

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

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

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

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

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

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

.font-semibold {
  font-weight: 600;
}

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

/* Others */
.cursor-pointer {
  cursor: pointer;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Icons */
.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

/* Media queries */
@media (min-width: 768px) {
  .md\:p-8 {
    padding: 2rem;
  }
  
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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