/* =====================
   BASE STYLE
===================== */

body {
  margin: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: white;
  color: black;
}

/* =====================
   HEADER
===================== */

.header {
  text-align: center;
  margin-bottom: 20px;
}

/* =====================
   UNSTYLED SECTION
===================== */

#unstyled {
  padding: 10px;
}

/* =====================
   STYLED SECTION
===================== */

#styled {
  background: #f4f7fb;
  padding: 25px;
  border-radius: 10px;
}

.title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #1a237e;
}

/* =====================
   FLEX LAYOUT
===================== */

.container {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

/* =====================
   BOXES
===================== */

.box {
  flex: 1;
  background: white;
  padding: 15px;
  border-radius: 8px;
  border-left: 5px solid #2196f3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* =====================
   HOVER TRANSFORM
===================== */

.box:hover {
  transform: scale(1.05);
}

.rotate:hover {
  transform: rotate(2deg) scale(1.05);
}

/* =====================
   ANIMATIONS
===================== */

.fade {
  animation: fadeIn 1.5s ease-in;
}

.slide {
  animation: slideIn 1.2s ease-in-out;
}

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

@keyframes slideIn {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* =====================
   QUOTES
===================== */

blockquote {
  font-style: italic;
  border-left: 4px solid gray;
  padding: 10px;
  margin-top: 15px;
}

.styled-quote {
  background: white;
  padding: 15px;
  border-radius: 8px;
}

/* =====================
   FOOTER
===================== */

footer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: gray;
}

/* =====================
   PRINT VERSION (PDF STYLE)
===================== */

@media print {
  body {
    background: white;
    color: black;
  }

  .box {
    box-shadow: none;
    border: 1px solid black;
  }
}