@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  --primary-color: #0F0766;
  --secondary-color: #D01257;
  --accent-color: #FFCEE4;
  --light-color: #E2E8F0;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #0F0766 0%, #D01257 100%);
  --hover-color: #a80e46;
  --background-color: #0F1021;
  --text-color: #CBD5E1;
  --border-color: rgba(208, 18, 87, 0.3);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --highlight-color: #FFCEE4;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body.dark-theme {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
}

h1, h2, h3, h4, h5 {
    font-family: var(--main-font);
    color: #ffffff;
}

header {
    background-color: rgba(15, 16, 33, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
}

header a { color: #fff; text-decoration: none; }

.hover-underline { position: relative; padding-bottom: 4px; }
.hover-underline::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0;
    background-color: var(--secondary-color); transition: width 0.3s;
}
.hover-underline:hover::after { width: 100%; }

@media (max-width: 768px) {
    .navigation {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background-color: #15162b; padding: 2rem; border-bottom: 1px solid var(--border-color);
    }
    #menu-toggle:checked ~ .navigation { display: block; }
}

.hero-section {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgba(15, 7, 102, 0.8), rgba(208, 18, 87, 0.6)), url('./img/bg.jpg') no-repeat center center/cover;
}

.neumorph-card-dark {
    background: #131429;
    border-radius: 12px;
    box-shadow: 6px 6px 12px #0a0a15, -6px -6px 12px #1c1c3d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
.neumorph-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 16px #0a0a15, -8px -8px 16px #1c1c3d;
    border-color: var(--border-color);
}

.img-neumorph-dark {
    box-shadow: 10px 10px 20px #0a0a15, -10px -10px 20px #1c1c3d;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-section {
    padding: 12dvh 0;
    background: linear-gradient(rgba(15, 16, 33, 0.7), rgba(15, 16, 33, 0.7)), url('./img/bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

footer a { transition: color 0.3s; }
footer a:hover { color: var(--highlight-color); }