@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Dark & Purple Theme requested in prompt colors */
  --primary-color: #2C3D4F; 
  --secondary-color: #0F0766;
  --accent-color: #FFD700;
  --light-color: #F2F2F2;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #0F0766 0%, #2C3D4F 100%);
  --hover-color: #344CB7;
  --background-color: #F5F7FA;
  --text-color: #2C3E50;
  --border-color: rgba(44, 61, 79, 0.1);
  --divider-color: rgba(15, 7, 102, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.08);
  --highlight-color: #E67E22;
  
  /* Fonts from prompt + Arabic fallback */
  --main-font: 'Oswald', 'Cairo', sans-serif;
  --alt-font: 'Roboto', 'Tajawal', sans-serif;
}

body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}

/* Header Logic for Checkbox Hack */
#menu-toggle:checked ~ .mobile-nav {
    display: block;
}

/* Hero Section */
.hero-section {
    min-height: 70vh; /* Random value within range */
    background: linear-gradient(rgba(15, 7, 102, 0.7), rgba(15, 7, 102, 0.7)), url('./img/bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

/* CTA Sections */
.cta-section-1 {
    background: url('./img/bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.cta-section-2 {
    background: url('./img/bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

/* Neumorphism Cards */
.neu-card {
    background: #ffffff;
    box-shadow: 9px 9px 18px var(--shadow-color), 
               -9px -9px 18px #ffffff;
    border: 1px solid rgba(255,255,255,0.8);
}

/* Section Spacing */
section:not(.hero-section) {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

/* Utilities */
.hover\:text-underline:hover {
    text-decoration: underline;
}

/* Accessibility Focus */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}