@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  --primary-color: #E67E22; /* Carrot orange */
  --secondary-color: #D35400; /* Pumpkin */
  --accent-color: #16A085; /* Green sea */
  --light-color: #FDF2E9; /* Warm light beige */
  --dark-color: #1F1F1F; /* Almost black */
  --gradient-primary: linear-gradient(90deg, #E67E22 0%, #D35400 100%);
  --hover-color: #E74C3C;
  --background-color: #FFFFFF;
  --text-color: #333333;
  --border-color: rgba(211, 84, 0, 0.15);
  --divider-color: rgba(0, 0, 0, 0.05);
  --shadow-color: rgba(31, 31, 31, 0.08);
  --highlight-color: #FFEB00; /* Sun yellow */
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Inter', sans-serif;
}

/* Custom styles for Variant 2 */
details summary::-webkit-details-marker {
    display: none;
}

details summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details summary::after {
    content: "+";
    font-size: 1.5rem;
}

details[open] summary::after {
    content: "-";
}

/* Responsive fixes */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem !important; }
    header .navigation { width: 100%; }
    header ul { justify-content: center; font-size: 0.6rem; }
}