/*
Theme Name: Dr Pejic 1
Description: A custom theme for Dr Pejic clinic website
Version: 1.0
Author: Bojan Susic and Dragana Susic
Text Domain: dr-pejic
*/

:root {
  --navy: #0f1f3d;
  --navy-mid: #162847;
  --teal: #0e7490;
  --teal-light: #22d3ee;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --cream: #f9f6f0;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --text: #1a2332;
  --radius: 4px;
  --shadow: 0 20px 60px rgba(15, 31, 61, 0.12);
}

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

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

body:not(.block-editor-page) .fade-in {
  opacity: 1 !important;
  animation: none !important;
}

body:not(.block-editor-page) .fade-in-bottom {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
}

body:not(.block-editor-page) .zoom-in {
  transform: scale(0.6);
  transition: all 0.6s ease-in-out;
  opacity: 0;
}

.animate {
  opacity: 1!important;
  transform: translateY(0) scale(1)!important;
}

@media (max-width: 479px) {
  body:not(.block-editor-page) .fade-in-bottom,
  body:not(.block-editor-page) .zoom-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
