@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #2C3E50;
  --secondary-color: #16A085;
  --accent-color: #E67E22;
  --light-color: #F2F2F2;
  --dark-color: #1a252f;
  --gradient-primary: linear-gradient(135deg, #2C3E50 0%, #16A085 100%);
  --hover-color: #117a65;
  --background-color: #ffffff;
  --text-color: #333333;
  --border-color: rgba(44, 62, 80, 0.2);
  --divider-color: rgba(22, 160, 133, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --highlight-color: #FFD700;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

/* Reset & Base */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Neumorphism basics & interactive classes */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 20px var(--shadow-color), -8px -8px 20px #ffffff;
}

.hover-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.hover-opacity:hover {
    opacity: 0.9;
}

.hover-bg-dark:hover {
    background-color: #d67118; /* Darker orange */
}

.hover-bg-secondary:hover {
    background-color: #1a252f; /* Darker main */
}

.hover-underline:hover {
    text-decoration: underline;
}

/* FAQ Details styling */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details[open] summary i {
    transform: rotate(180deg);
}
details summary i {
    transition: transform 0.3s ease;
}

/* Mobile Navigation Hack without JS */
@media (max-width: 767px) {
    .navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: var(--dark-color);
        padding: 20px;
        z-index: 50;
        box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    }
    #nav-toggle:checked ~ .navigation {
        display: block;
    }
    .navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}