/* Noto Sans */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/noto-sans-v42-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/noto-sans-v42-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/noto-sans-v42-latin-700.woff2') format('woff2');
}

/* Outfit */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/outfit-v15-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/outfit-v15-latin-700.woff2') format('woff2');
}

:root {
    --drupal-blue: #009CDE;
    --drupal-dark-blue: #006AA9;
    --drupal-navy: #12285F;
    --drupal-light-blue: #CCEDF9;
    --drupal-white: #FFFFFF;
    --drupal-black: #000000;
    --drupal-yellow: #FFC423;
    --text-primary: #12285F;
    --text-secondary: #4A5568;
    --card-shadow: 0 10px 25px -5px rgba(18, 40, 95, 0.1), 0 8px 10px -6px rgba(18, 40, 95, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text-primary);
    background-color: var(--drupal-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Pattern inspired by Drupal Brand Portal - Large, subtle geometric shapes */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #f7fbff;
    overflow: hidden;
}

.background-pattern::before,
.background-pattern::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.background-pattern::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--drupal-light-blue) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.background-pattern::after {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 156, 222, 0.15) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.gui-block {
    position: absolute;
    width: 250px;
    height: auto;
    opacity: 0.15;
    filter: grayscale(1) brightness(1.2); /* Subtle version */
    transition: all 0.5s ease;
}

.block-1 { top: 5%; left: -50px; transform: rotate(-15deg); }
.block-2 { top: 60%; right: -30px; transform: rotate(10deg); width: 300px; }
.block-3 { bottom: 10%; left: 5%; transform: rotate(5deg); width: 200px; }
.block-4 { top: 15%; right: 10%; transform: rotate(-8deg); width: 180px; }
.block-5 { top: 45%; left: 15%; transform: rotate(12deg); width: 220px; }

/* Keep some color for specific blocks if they look better */
.block-2 { filter: none; opacity: 0.1; }
.block-4 { filter: none; opacity: 0.1; }



.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header {
    margin-bottom: 3rem;
    text-align: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.drupal-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.site-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--drupal-navy);
    letter-spacing: -0.02em;
}

main {
    width: 100%;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(204, 237, 249, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: var(--drupal-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro {
    font-size: 1.25rem;
    color: var(--drupal-dark-blue);
    margin-bottom: 2rem;
    font-weight: 500;
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(to right, var(--drupal-blue), var(--drupal-yellow));
    margin: 2rem auto;
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: left;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--drupal-blue);
}

footer {
    margin-top: 4rem;
    text-align: center;
}

.association-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    color: var(--drupal-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--drupal-navy);
}

.dot {
    color: #cbd5e0;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .container {
        padding: 1.5rem;
    }
    
    .card {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .intro {
        font-size: 1.1rem;
    }
    
    .description {
        padding: 1.5rem;
        font-size: 1rem;
    }
}
