﻿
/* CSS Document */

@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    background-color: black;
    font-family: 'Roboto', sans-serif;
}
/* Content section */
.content {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
    color: white;
    text-align: left;
    width: 40%; /* Half the screen width */
    margin-left: 0; /* Align to the left */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    border-radius: 8px;
}

/*.contentportfolio {
  margin-top: 120px;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}*/


/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    height: 70px;
    color: white;
}

.header-left h1 {
    font-size: 1.8rem;
}

.header-right ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

    .header-right ul li a {
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .header-right ul li a:hover {
            color: #00aced;
        }

/* Navigation styles */
/*nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
	vertical-align: middle;
}

.nav-links a:hover {
  color: #00aced;
  text-decoration: underline;
	vertical-align: middle;
}
*/
/* Navigation styles */
nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.2);
    height: 60px;
    display: flex;
    align-items: center; /* Vertically center contents */
    justify-content: flex-end; /* Spread menu-toggle left, links right */
    padding: 0 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center; /* Ensure the <li> align */
    height: 100%;
}

    .nav-links li {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        font-size: 22px;
        height: 100%;
    }

        .nav-links a:hover {
            color: #00aced; /* Blue on hover */
            text-decoration: underline;
        }

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Hero section */
#top {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

/* Scroll down button */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
    z-index: 10;
    text-decoration: none;
}

.scroll-up {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
    z-index: 10;
    text-decoration: none;
}
.top {
    height: 100vh; 
    position: relative;
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
}

/* Next section */
#next {
    position: relative; /* Important for anchoring the button */
    height: 100vh;
    background-color: black;
    text-align: left;
    padding: 140px 2rem 60px; /* Increased bottom padding for breathing room */
}

/* Responsive styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.75);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height:400px;
        z-index: 1000;
        padding: 1rem 0;
    }

        .nav-links.show {
            display: flex;
        }

        .nav-links li {
            text-align: center;
            padding: 5px;
        }

    .content {
        padding: 2rem 1rem;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
        width: 100%;
        border-radius: 8px;
    }

    .scroll-down,
    .scroll-up {
        font-size: 1.5rem;
        bottom: 60px; /* lift it above the browser toolbar */
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem;
        min-width: 48px;
        min-height: 48px;
    }
    .copyright{
        display:none;
    }
}

.logo {
    width: 220px;
    padding: 5px
}

.memberlogos {
    height: 50px;
}

.qrcode {
    width: 100px;
    opacity: 100%;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.contact-card {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    width: fit-content;
    max-width: 100%;
}

.details {
    margin-right: 1rem;
}
.copyright {
    color: dimgray;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: small;
}
.copyright a {
    color:dimgray;
    text-decoration:none;
}
    .copyright a:hover {
        color: lightgray;
        text-decoration: none;
    }

#top, #next {
    min-height: 100vh;
    /* or */
    height: 100dvh;
}
