:root {
    --dp-blue: #023c75;
    --dp-lightblue: #0c615a;
    --dp-darkblue: #004a93;
    --dp-yellow: #f5c400;
    --dp-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dp-white);
}

.logo-circle {
    background-color: white;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    width: 65px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-img {
    height: 34px;
    width: auto;
    display: block;
}

body {
    background: var(--dp-white);
    color: var(--dp-darkblue);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 1.75rem;
}

nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dp-white);
    position: relative;
    padding-bottom: 0.25rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--dp-yellow);
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--dp-yellow);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
    color: var(--dp-white);
    background: linear-gradient(135deg, var(--dp-blue) 0%, var(--dp-lightblue) 100%);
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-in-out;
}

.hero p {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 300;
    max-width: 42rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease-in-out;
}

.cta-btn {
    background: var(--dp-yellow);
    color: var(--dp-darkblue);
    border: none;
    padding: 0.9rem 2.4rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    animation: fadeInUp 1.4s ease-in-out;
    z-index: 2;

}

.cta-btn:hover {
    background: #ffd84d;
    transform: translateY(-2px);
}

#semanticCanvas {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

section {
    padding: 4rem 2rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-in-out;
}


section:nth-of-type(even) {
    background: #f7f9fc;
}

.info-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--dp-lightblue);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: justify;
    margin-bottom: 3rem;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.info-card h2 {
    color: var(--dp-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

/* Footer */
footer {
    background-color: #012f42;
    color: var(--dp-white);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer .social-icons {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

footer .social-icons a {
    color: var(--dp-white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: var(--dp-yellow);
}

/* Media Queries */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .info-card,
    .note {
        padding: 2rem;
    }

    .note {
        top: 0;
    }
}

@media (max-width: 480px) {

    .note,
    .info-card {
        max-width: 100%;
    }

    footer .social-icons {
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.btn-liquid-glass {
    background: #c09a03;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 14px 36px;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(5, 99, 150, 0.7);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
    margin-top: 20px;
}

.btn-liquid-glass:hover {
    background: rgba(10, 140, 220, 0.95);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 30px rgba(10, 140, 220, 0.85);
    transform: translateY(-3px) scale(1.05);
}


.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(1, 47, 66, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.liquid-glass {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 30px 40px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: #f0f0f0;
    backdrop-filter: blur(16px);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    user-select: none;
}

.members-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.member-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #b68c02, #d4aa00);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.member-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  flex-shrink: 0;
  border: 2px solid #fff;
}

.member-info h4 {
  margin: 0 0 0.3rem 0;
  font-size: 1.05rem;
  color: #ffffff;
}

.member-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #f4f4f4;
}



.info-section {
  padding: 4rem 2rem;
  background: #f3f6fb;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  padding: 2.5rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 6px solid var(--dp-blue);
  text-align: justify;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.fancy-left {
  border-left: 6px solid var(--dp-lightblue);
}

.fancy-right {
  border-left: 6px solid var(--dp-yellow);
}

.info-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dp-darkblue);
}

.info-card p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}

.olive-section {
  background-color: #0c615a;
  color: #fff;
  padding: 3rem 2rem;
  width: 100%;
}

.olive-content {
  max-width: 1000px;
  margin: 0 auto;
}

.olive-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffeb3b;
}

.olive-text p {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.olive-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.olive-list li {
  text-align: justify;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.highlight {
  color: #ffd700;
  margin-right: 0.5rem;
}

.btn-container-yl {
  margin-top: 2rem;
  text-align: center;
}

.btn-yellow {
  display: inline-block;
  background-color: #ffd700;
  color: #333;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  background-color: #ffcc00;
  color: #000;
  transform: scale(1.05);
}

