@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Colors: #C0392B (Deep Red), #E74C3C (Soft Red), #2C3E50 (Dark Blue), #ECF0F1 (Light Grey) */
  --primary-color: #C0392B;
  --secondary-color: #2C3E50;
  --accent-color: #E74C3C;
  --light-color: #FFFFFF;
  --dark-color: #1a252f;
  
  --gradient-primary: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  --hover-color: #A93226;
  --background-color: #F8F9F9;
  --text-color: #424949;
  
  --border-color: rgba(192, 57, 43, 0.2);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --highlight-color: #D35400;
  
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Open Sans', sans-serif;

  /* Soft Neumorphism */
  --neu-shadow-light: #ffffff;
  --neu-shadow-dark: #d1d9e6;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    font-weight: 700;
    text-transform: uppercase;
}

/* Custom Components */
.circ-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circ-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(192, 57, 43, 0.15);
}

.btn-pulse {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-pulse:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

/* Feature Circles */
.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.circ-card:hover .feature-icon-circle {
    background: var(--primary-color);
}
.circ-card:hover .feature-icon-circle i {
    color: white !important;
}

/* Mobile Menu CSS Only */
#menu-toggle { display: none; }
.hamburger { display: none; font-size: 28px; color: var(--secondary-color); cursor: pointer; }

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
    }
    #menu-toggle:checked ~ .nav-links { display: flex; }
    .nav-links li { text-align: center; margin: 10px 0; }
    .nav-links a { color: var(--secondary-color); font-weight: bold; }
}

footer a { color: #bdc3c7; transition: 0.3s; }
footer a:hover { color: white; text-decoration: underline; }