/* Colors */
:root {
    --PU1: #21031E;
    --PU2: #41063B;
    --PU3: #7A5176;
    --PU4: #C6B4C4;
    --PU5: #ECE6EB;

    --GR1: #272727;
    --GR2: #4D4D4D;
    --GR3: #828282;
    --GR4: #CACACA;
    --GR5: #EDEDED;

    --YE1: #FFFFFF;
    --YE2: #FDE68A;
}

/* === FONT SETUP === */

/* Light font */
@font-face {
    font-family: 'Ubuntu-Light';
    src: url('fonts/Ubuntu-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Regular fonts */
@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Russo One';
    src: url('fonts/RussoOne-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Bold fonts */
@font-face {
    font-family: 'Orbitron-Bold';
    src: url('fonts/Orbitron-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu-Bold';
    src: url('fonts/Ubuntu-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Italic fonts */
@font-face {
    font-family: 'Ubuntu-Italic';
    src: url('fonts/Ubuntu-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu-LightItalic';
    src: url('fonts/Ubuntu-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

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

body {
    font-family: 'Ubuntu', sans-serif;
    color: var(--GR2);
    background-color: var(--GR5);
}

/* =======================
   Banner
   ======================= */
#banner-placeholder {
    height: 120px; /* space for fixed banner */
}

.banner {
    position: fixed;          /* always stay at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5rem 2rem;
    background-color: var(--PU1);
    
}

.banner .logo img {
    height: auto;
    max-height: 100px;
    cursor: pointer;
}

/* Navigation Menu */
.banner nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 2rem;
}

/* Menu Items */
.menu-item {
    position: relative;
    display: flex;
    flex-direction: column;   /* hover text below main text */
    align-items: center;
    min-width: 120px;         /* enough width for longer hover text */
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
}

.menu-item .menu-text {
    display: block;
    color: var(--GR5);
    transition: opacity 0.3s ease;
}

.menu-item .hover-text {
    display: block;
    color: var(--YE2);
    opacity: 0;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
    margin-top: 0.2rem;
}

.menu-item:hover .menu-text {
    opacity: 0.4;
}

.menu-item:hover .hover-text {
    opacity: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    margin-left: auto;
    color: var(--GR5);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .banner nav {
        display: none;
        flex-direction: column;
        background-color: var(--PU1);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        gap: 1rem;
    }

    .banner nav.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    /* Optional: adjust menu item font size on small screens */
    .menu-item {
        font-size: 1.3rem;
        min-width: auto;
    }
}
/* =======================
   Top Section - Index with Side Pictures (Blurry Background)
   ======================= */
.topsectionindex {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 6rem 2rem;
    text-align: center;
    color: var(--PU2);
    overflow: hidden;
    flex-wrap: nowrap; /* prevent side pictures from wrapping below/above text */
}

/* Blurry background image */
.topsectionindex .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px) brightness(0.9) saturate(100%);
    opacity: 0.6;
    z-index: -1;
}

/* Side pictures */
.topsectionindex .side-picture {
    max-width: 300px;
    height: auto;
    object-fit: contain;
    z-index: 2;
}
.center-image {
    display: block;
    margin: 1.5rem auto;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 0 10px var(--YE2));
    transform-style: preserve-3d;
    animation: rotateYOnce 2s linear forwards;
    }
@keyframes rotateYOnce {
    from { transform: rotateY(180deg); }
    to   { transform: rotateY(360deg); }
}






/* Central text container */
.topsectionindex .text-container {
    max-width: 1200px;
    text-align: center;
    z-index: 2;
}

/* Typography */
.topsectionindex .main-title {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.topsectionindex .subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.topsectionindex .text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Button styling */
.topsectionindex .btn {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--YE2);
    color: var(--PU2);
    font-size: 1.3rem;
    
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    width: auto;
    align-self: center;
    transition: all 0.3s ease;
    box-shadow: var(--PU1) 10px 10px 20px;
}

.topsectionindex .btn:hover {
    background-color: var(--PU2);
    color: var(--GR4);
    transform: translateY(-2px);
}

/* Responsive hiding of side pictures */
@media (max-width: 1024px) {
    .topsectionindex .side-picture.right {
        display: none;
    }
}

@media (max-width: 768px) {
    .topsectionindex .side-picture.left {
        display: none;
    }

    .topsectionindex .main-title { font-size: 2.2rem; }
    .topsectionindex .subtitle { font-size: 1.2rem; }
    .topsectionindex .text { font-size: 1rem; }
}

/* =======================
   Top Section - Subpages
   ======================= */
.topsection {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    padding: 4rem 2rem;
}
.topsection:not(.topsection-blurry) {
    background-color: var(--PU5);
}

/* Blurry Background Extension */
.topsection-blurry {
    position: relative;
    overflow: hidden;
}

.topsection-blurry::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    filter: blur(1px) brightness(0.9) saturate(70%);
    opacity: 0.3;
    transform: scale(1);
    z-index: -1;
}

/* Main title spanning the section */
.topsection .topsection-title {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    
    color: var(--PU3);
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    text-shadow: 2px 2px 2px var(--PU1); /* bigger and colored shadow */
  
}

/* Container for the two columns */
.topsection .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

/* Left / Right variants */
.topsectionleft .container {
    flex-direction: row;
}

.topsectionright .container {
    flex-direction: row-reverse;
}

/* Responsive stacking for both variants */
@media (max-width: 900px) {
    .topsectionleft .container,
    .topsectionright .container {
        flex-direction: column;
        align-items: center;
    }
}

/* Image column */
.topsection .image-column {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.topsection .image-column img,
.topsection .image-column video {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: var(--PU1) 10px 10px 20px;
}

.topsection .image-column video {
    max-height: 400px;
    object-fit: cover;
}

.topsection .image-column .top-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    width: 100%;
}

.topsection .image-column .btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    background-color: var(--YE2);
    color: var(--PU2);
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: auto;
    box-shadow: var(--PU1) 10px 10px 20px;
}

.topsection .image-column .btn:hover {
    background-color: var(--PU2);
    color: var(--GR4);
    transform: translateY(-2px);
}

/* Text column */
.topsection .text-column {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.topsection .text-column .main-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2.2rem;
    color: var(--PU2);
    margin-bottom: 1rem;

}

.topsection .text-column .subtitle-founder {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: bold;
    color: var(--PU1);
    margin-bottom: 1rem;
    text-align: center;
    background-image: linear-gradient(to right, transparent, var(--YE2), transparent);
}

.topsection .text-column .text,
.topsection .text-column p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    color: var(--GR1);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.topsection .text-column .btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    background-color: var(--YE2);
    color: var(--PU2);
    
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: auto;
    align-self: center;
    box-shadow: var(--PU1) 10px 10px 20px;
}

.topsection .text-column .top-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
}

.topsection .text-column .btn:hover {
    background-color: var(--PU2);
    color: var(--GR4);
    transform: translateY(-2px);
}

/* =======================
   Box Section
   ======================= */
.box-section {
    background-color: var(--GR5);
    padding: 3rem 2rem;
}

.box-section .container {
    max-width: 1650px;
    margin: 0 auto;
}

.box-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--PU2);
    text-align: center;
    margin-bottom: 2rem;
      background-image: linear-gradient(to right, transparent, var(--YE2), transparent); 
      background-size: 100% 5px;
    background-position: bottom;
    background-repeat: no-repeat;
   
}

.box-section .text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    color: var(--GR2);
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* =======================
   Box Section Boxes
   ======================= */
.boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.box {
    background-color: var(--GR4);
    padding: 1.5rem;
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--PU1) 10px 10px 20px;
}

.box img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-composite: intersect;
    mask-composite: intersect;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--PU2);
    margin-bottom: 0.5rem;
}

.box .subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--PU3);
    margin-bottom: 1rem;
    text-align: center;
}

.box p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95rem;
    color: var(--GR2);
    flex-grow: 1;
    margin-bottom: 1rem;
}

.box .btn {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--PU3);
    color: var(--GR5);
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    border-radius: 8px;
    box-shadow: var(--PU1) 10px 10px 20px;
}

.box .btn:hover {
    background-color: var(--YE2);
    color: var(--PU2);
    transform: translateY(-2px);
}

/* =======================
   Text Section
   ======================= */
.text-section {
    background-color: var(--GR4);
    padding: 3rem 2rem;
    color: var(--GR1);
}

.text-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--PU1);
      background-image: linear-gradient(to right, transparent, var(--YE2), transparent);
    background-size: 100% 5px;
    background-position: bottom;
    background-repeat: no-repeat;
}

.text-section .subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: bold;
    color: var(--PU3);
    text-align: center;
    margin-bottom: 1.5rem;
    background-image: linear-gradient(to right, transparent, var(--YE2), transparent);
}

.text-section p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* =======================
   Contact Section
   ======================= */
.contact {
    background-color: var(--PU1);
    padding: 3rem 2rem;
    color: var(--GR5);
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--GR4);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    
}

.contact p {
    font-family: 'Ubuntu', sans-serif;
    color: var(--GR3);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.2rem;
}

.contact form {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.form-left, .form-right {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
}

.contact label {
    margin-bottom: 0.3rem;
}

.contact input, .contact textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid var(--GR4);
    border-radius: 8px;
    font-family: 'Ubuntu', sans-serif;
}

.contact textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-send {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--YE2);
    color: var(--PU2);
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    font-size: 1.2rem;
}

.btn-send:hover {
    background-color: var(--PU3);
    color: var(--GR5);
    transform: translateY(-2px);
}

/* =======================
   Responsive
   ======================= */
@media (max-width: 900px) {
    .topsection .container {
        flex-direction: column;
        align-items: center;
    }
    .topsection .image-column,
    .topsection .text-column {
        max-width: 100%;
    }
    .boxes {
        justify-content: center;
    }
}

/* =======================
   Section Divider Line
   ======================= */
.section-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--PU1), transparent);
    margin: 0