@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: #8E44AD (Purple), #D35400 (Pumpkin), #F39C12 (Orange), #FDFAFF (Light) */
  --primary-color: #8E44AD;
  --secondary-color: #9B59B6;
  --accent-color: #D35400;
  --light-color: #FFFFFF;
  --dark-color: #2C2C2C; /* Almost black */
  --gradient-primary: linear-gradient(to right, #8E44AD, #C0392B);
  --hover-color: #732d91;
  --background-color: #FEFAE0; /* Creamy warm background */
  --text-color: #2C3E50;
  --border-color: rgba(142, 68, 173, 0.2);
  --divider-color: rgba(211, 84, 0, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --highlight-color: #F1C40F;
  
  /* Fonts: Playfair Display + Lato */
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}

/* Colors Utilities */
.bg-gradient { background: var(--gradient-primary); }
.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }

/* Neumorphism Soft */
.soft-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s;
}
.soft-card:hover {
    transform: translateY(-5px);
}

/* Hero */
.hero-wrapper {
    position: relative;
    overflow: hidden;
}
.hero-overlay {
    background: linear-gradient(45deg, rgba(142, 68, 173, 0.8), rgba(211, 84, 0, 0.6));
}

/* Buttons */
.btn-premium {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.3);
}
.btn-premium:hover {
    box-shadow: 0 15px 25px rgba(142, 68, 173, 0.5);
}

/* Mobile Menu - Checkbox Hack */
#mobile-nav-toggle:checked ~ .nav-content {
    display: block;
}

/* Accordion */
details {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
details > summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    background: #fff;
}
details[open] > summary {
    background: var(--background-color);
    color: var(--primary-color);
}
details > div {
    padding: 1.5rem;
    border-top: 1px solid var(--divider-color);
}

/* Logo Filter */
footer img[alt="logo"], header img[alt="logo"] {
    filter: brightness(0) invert(1);
}