/* style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Dark Theme Palette */
  --primary-color: #16A085; /* Teal */
  --secondary-color: #2C3D4F; /* Dark Slate */
  --accent-color: #27AE60; /* Green */
  --light-color: #F2F2F2; /* Very Light Gray */
  --dark-color: #0f161c; /* Almost Black */
  
  --background-color: #2C3D4F;
  --text-color: #bdc3c7; /* Light grayish text for dark bg */
  
  --border-color: rgba(22, 160, 133, 0.3);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --highlight-color: #F1C40F;
  
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: var(--background-color);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hover effects without JS */
.hover-bg-accent:hover {
    background-color: var(--accent-color) !important;
    color: #fff !important;
}

.hover-color-light:hover {
    color: var(--light-color) !important;
}

.feature-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 8px 8px 25px rgba(0,0,0,0.6);
}

/* Mobile navigation without JS */
.navigation {
    display: none;
    width: 100%;
}

#mobile-menu:checked ~ .navigation {
    display: block;
    margin-top: 1.5rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

#mobile-menu:checked ~ .navigation ul {
    flex-direction: column;
    align-items: flex-start;
}

#mobile-menu:checked ~ .navigation ul li {
    margin: 0.8rem 0;
}

@media (min-width: 768px) {
    .navigation {
        display: block !important;
        width: auto;
    }
    .menu-icon {
        display: none;
    }
    #mobile-menu:checked ~ .navigation {
        border-top: none;
        padding-top: 0;
    }
    #mobile-menu:checked ~ .navigation ul {
        flex-direction: row;
        align-items: center;
    }
    #mobile-menu:checked ~ .navigation ul li {
        margin: 0 1.5rem;
    }
}

/* FAQ Details styling */
details {
    transition: background-color 0.3s ease;
}

details[open] {
    background-color: rgba(22, 160, 133, 0.05) !important;
}

details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

details > summary::after {
    content: '\f107'; /* FontAwesome angle-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    transition: transform 0.3s ease;
}

details[open] > summary::after {
    transform: rotate(180deg);
}

.focus-border-accent:focus {
    border-color: var(--accent-color) !important;
    background-color: rgba(255,255,255,0.08) !important;
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.3);
}