/* style.css - Version 2 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: Warm Earth & Dark */
  --primary-color: #D35400; /* Burnt Orange */
  --secondary-color: #27AE60; /* Natural Green */
  --accent-color: #E67E22;
  --light-color: #FEFAE0; /* Creamy White */
  --dark-color: #1A1A1D; /* Almost Black */
  --gradient-primary: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  --hover-color: #A04000;
  --background-color: #2C3E50; /* Dark Blue-Grey Background */
  --text-color: #ECF0F1;
  
  /* Utilities */
  --border-color: rgba(211, 84, 0, 0.3);
  --divider-color: rgba(230, 126, 34, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.4);
  --highlight-color: #F1C40F;
  
  /* Fonts */
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
  
  /* Neumorphism Shadows for Dark BG */
  --neu-shadow: 10px 10px 20px #212f3c, -10px -10px 20px #374d64;
  --neu-shadow-inset: inset 10px 10px 20px #212f3c, inset -10px -10px 20px #374d64;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--alt-font);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    letter-spacing: 0.05em;
}

/* Neumorphism Components */
.neu-box {
    background: var(--background-color);
    box-shadow: var(--neu-shadow);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.neu-btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: 6px 6px 12px #1f2c39, -6px -6px 12px #395067;
    transition: all 0.3s ease;
}

.neu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 8px 8px 16px #1f2c39, -8px -8px 16px #395067;
}

/* Header */
header {
    background-color: #151515;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid #333;
}

header .logo img { height: 45px; }

/* Mobile Menu */
#menu-toggle { display: none; }
.mobile-menu-icon { display: none; cursor: pointer; font-size: 1.8rem; color: var(--primary-color); }

@media (max-width: 768px) {
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #151515;
        padding: 2rem 0;
        text-align: center;
        border-bottom: 2px solid var(--primary-color);
    }
    .mobile-menu-icon { display: block; }
    #menu-toggle:checked + .mobile-menu-icon + .navigation { display: block; }
    header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 20px; }
    .logo { margin: 0 auto; }
}

/* Custom Utilities */
.section-padding { padding-top: 10dvh; padding-bottom: 10dvh; }
.bg-overlay { background: rgba(0, 0, 0, 0.7); } /* Darker overlay */

/* Footer */
footer {
    background-color: #0F1012;
    color: #95A5A6;
    padding: 4rem 0;
    border-top: 5px solid var(--primary-color);
}
footer a { color: #BDC3C7; transition: 0.3s; }
footer a:hover { color: var(--primary-color); text-decoration: none; }
footer img[alt="logo"], header img[alt="logo"] { filter: brightness(0) invert(1); }