@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #2C3E50;
  --secondary-color: #C0392B;
  --accent-color: #D35400;
  --light-color: #FEFAE0;
  --dark-color: #1a252f;
  --gradient-primary: linear-gradient(135deg, #2C3E50 0%, #C0392B 100%);
  --hover-color: #1f2c38;
  --background-color: #ffffff;
  --text-color: #34495E;
  --border-color: rgba(44, 62, 80, 0.15);
  --divider-color: rgba(192, 57, 43, 0.15);
  --shadow-color: rgba(0, 0, 0, 0.08);
  --highlight-color: #F1C40F;
  --main-font: 'Lora', serif;
  --alt-font: 'Poppins', sans-serif;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Hover & Interactive Effects */
.nav-link {
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--highlight-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.hover-opacity-btn:hover {
    opacity: 0.85;
}

.hover-bg-primary:hover {
    background-color: var(--primary-color) !important;
}

.hover-underline-footer:hover {
    text-decoration: underline;
    color: #fff !important;
}

/* FAQ Details styling */
.faq-item > summary {
    list-style: none;
}
.faq-item > summary::-webkit-details-marker {
    display: none;
}
.faq-item[open] summary i {
    transform: rotate(180deg);
}
.faq-item summary i {
    transition: transform 0.3s ease;
}

/* Mobile Navigation Checkbox Hack (No JS) */
@media (max-width: 767px) {
    .navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 88px;
        left: 0;
        background-color: var(--dark-color);
        padding: 20px;
        z-index: 100;
        border-bottom: 4px solid var(--accent-color);
    }
    #menu-toggle:checked ~ .navigation {
        display: block;
    }
    .navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}