@import "tailwindcss";
@plugin "daisyui";
@plugin "daisyui" {
  themes: light --default, dark --prefersdark, cupcake;
}

* {
  transition-property: all;
  transition-timing-function: var(
    --tw-ease,
    var(--default-transition-timing-function)
  );
  transition-duration: var(--tw-duration, var(--default-transition-duration));
  --tw-duration: 200ms;
  transition-duration: 200ms;
}

@theme {
  --breakpoint-xxs: 21.25rem; /* 340px */
  --breakpoint-xs: 23.125rem; /* 363px */
  --breakpoint-xxl: 82.5rem;  /* 1320px */
  --color-primary: #156b75;
  --color-primary-dark: #0f4f58;
  --color-secondary: #8a2845;
  --color-secondary-dark: #6b1e35;
  --color-accent: #2c5f96;
  --color-soft-white: #fafaf8;
  --color-soft-dark: #4a5568;
}

.btn-primary {
  @apply bg-primary border-0 text-white hover:scale-[102%] hover:bg-primary-dark transition-all duration-500;
}
body {
  font-family: "Work Sans", sans-serif;
}

.content {
  @apply max-xxl:w-full xxl:max-w-[1320px] xxl:mx-auto;
}

.section-title {
  @apply md:font-semibold text-3xl sm:text-4xl md:text-5xl font-medium;
}

.center {
  @apply flex justify-center items-center;
}

/* Article prose styling - increased paragraph spacing */
.prose p {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* Bullet and ordered list styling */
.prose ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose ol {
  list-style-type: decimal;
  padding-left: 1.5em;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose ul ul,
.prose ol ul {
  list-style-type: circle;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose ul ul ul,
.prose ol ul ul {
  list-style-type: square;
}

/* Painting: hero atmospheric wash */
.painting-hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(70px) brightness(1.15) saturate(0.85);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* Painting: portrait frame — painting as backdrop behind the profile photo */
.painting-photo-frame {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  padding: 16px;
}

.painting-frame-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: blur(2px) saturate(0.9);
  z-index: 0;
}

.painting-frame-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 1.25rem;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45), 0 20px 40px rgba(0, 0, 0, 0.28);
}
