/* =====================================================
   SKIN-GREEN-FULL.CSS
   Full theme replacement with green–gold palette
   ===================================================== */

/* ========== ROOT VARIABLES ========== */
:root {
  --primary: #475E3E;     /* Forest green */
  --primary-hover: #3D5233; /* Deep natural green */
  --secondary: #D4AF37;   /* Gold accent */
  --tertiary: #8C7853;    /* Bronze tone */
  --background: #F9F9F7;
  --text-color: #2F3A24;
}

/* ========== GLOBAL STYLES ========== */
a, .link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, .link:hover {
  color: var(--secondary);
}

@media (min-width: 992px) {
#header .header-nav.header-nav-links nav > ul > li > a {
  font-family: "Poppins", Arial, sans-serif;
        letter-spacing: 3px;
        font-weight: 400;
        font-style: normal;
        font-weight: 13px;
        padding: 0 0.9rem !important;
        margin: 0 0.9rem !important;
    }
  }
/* ========== BUTTONS ========== */
button, .btn {
  --hover: var(--primary-hover) !important;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover, .btn:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 0 10px rgba(71,94,62,0.4);
}
button:disabled, .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========== NAVIGATION ========== */
.navbar {
  background: var(--primary);
  color: #fff;
  padding: 1em 2em;
}
.navbar a {
  color: #fff;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: var(--secondary);
}

/* ========== HEADINGS ========== */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  margin-top: 0;
}
h1 {
  font-size: 2.5em;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.6em;
}

/* ========== CARDS & PANELS ========== */
.card, .panel {
  background: #fff;
  border: 1px solid rgba(71,94,62,0.15);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(47,58,36,0.08);
  padding: 1.5em;
  transition: all 0.3s ease;
}
.card:hover, .panel:hover {
  box-shadow: 0 4px 14px rgba(47,58,36,0.15);
}

/* ========== FORMS ========== */
input, select, textarea {
  border: 1px solid rgba(71,94,62,0.3);
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 1em;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.25);
}

/* ========== TABLES ========== */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 0.75em 1em;
  border-bottom: 1px solid rgba(71,94,62,0.2);
}
th {
  background: var(--primary);
  color: #fff;
  text-align: left;
}
tr:nth-child(even) {
  background: rgba(71,94,62,0.05);
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary-hover);
  color: #F5F5F5;
  padding: 2em 0;
  text-align: center;
  font-size: 0.9em;
}

/* ========== UTILITIES ========== */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.bg-primary { background-color: var(--primary); color: #fff; }
.bg-secondary { background-color: var(--secondary); color: #fff; }

/* ========== ALERTS ========== */
.alert {
  padding: 1em 1.5em;
  border-radius: 6px;
  margin: 1em 0;
}
.alert-success {
  background: rgba(71,94,62,0.1);
  border-left: 4px solid var(--primary);
}
.alert-warning {
  background: rgba(212,175,55,0.1);
  border-left: 4px solid var(--secondary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5em 1em;
  }
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.6em;
  }
}

/* =====================================================
   OPTIONAL GOLD & LUXE EFFECTS
   ===================================================== */

/* Add .luxe to body or section to activate */
.luxe h1, .luxe h2, .luxe h3 {
  color: #d4af37;
  text-shadow: 0 2px 8px rgba(255,255,255,0.3);
}

.luxe button:hover, .luxe .btn:hover {
  background: linear-gradient(45deg, #475E3E, #557249);
  box-shadow: 0 0 12px rgba(212,175,55,0.6);
  transition: 0.3s ease;
}

.luxe .accent {
  color: #d4af37;
}

.luxe .gold-gradient {
  background: linear-gradient(45deg, #b8860b, #ffd700, #fff8dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.luxe .divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 1.5em 0;
}


body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300; /* vékony, finom alap */
  color: var(--text-color);
  background-color: var(--background);
  line-height: 1.6;
}
/* Különleges, kalligrafikus elemekhez */
.signature, .highlight {
  font-family: 'Tangerine', cursive;
  font-weight: 700;
  font-size: 2.4em;
}