/* Golden Clouds Theme - Base Styles */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Utility Classes */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.skip-to-content-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-background));
  padding: 1rem;
  z-index: 10000;
  position: absolute;
  left: 1rem;
  top: 1rem;
}

/* Focus Styles */
.focus-none:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--color-primary);
  color: white;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Responsive Images */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Placeholder SVG */
.placeholder-svg {
  width: 100%;
  height: 100%;
  fill: #e0e0e0;
}

/* Buttons */
button {
  font-family: inherit;
  cursor: pointer;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Forms */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Lists */
ul,
ol {
  list-style-position: inside;
}

.woocommerce-tabs ul, .woocommerce-tabs ol, .woocommerce-tabs li {
  list-style-position: outside;
  margin-left: 25px;
}

hr {
  margin: 1rem 0;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
}

/* Shopify Design Mode */
.shopify-design-mode {
  /* Styles for theme editor */
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .announcement-bar {
    display: none;
  }
}

.type-post {
  background: #46464666;
  margin-top: 20px;
  border-radius: 15px;
  padding: 20px;
}
.type-post .entry-header {
  margin: 15px 0;
}

.type-page {
  background: #46464666;
  margin: 20px auto;
  border-radius: 15px;
  padding: 20px;
  max-width: 1200px;
  font-size: 1.2rem;
  line-height: 1.8;
}


/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

