﻿/*
* Theme name: ivp-theme
* Author: Marco Dario Bucci
* Description: block theme onepager for the ivp-website
* Version 1.0
*/


/* =========================
   main
========================= */
html, body {
    height: 100%;
    margin: 0;
}

.wp-site-blocks {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* DAS ist der wichtigste Teil */
main {
    flex: 1;
}

main,
.wp-site-blocks,
main > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* =========================
   Links
========================= */

a[href] {
    cursor: pointer;
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-left: 0;
  overflow: hidden;
}

.hero .wp-block-video {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero .wp-block-video video {

  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wp-block-video,
.hero {
    margin-top: 0 !important;
}
/* =========================
   Header
========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;

    padding: 16px clamp(100px, 10vw, 200px);
    margin: 0 !important;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

}

/* all sites */
.admin-bar .site-header {
    top: 0;
}

/* only start-site */
.home.admin-bar .site-header,
.front-page.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
    width: 100%;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-right {
    gap: 28px;
}

.custom-logo,
.software-logo {
    margin: 0 !important;
}

.custom-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.software-logo img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: 0.7;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.custom-logo a:hover img,
.software-logo a:hover img {
    transform: translateY(-1px);
    opacity: 1;
}
/* =========================
   Information Text
========================= */
.company-intro {
  padding: 2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.company-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.company-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f6773;
  margin: 0;
}


.company-intro p + p {
  margin-top: 1rem;
}

/* =========================
   Footer
========================= */

.site-footer-content {
  padding: 4rem 3rem;
  background-color: #4f5054;
}

.footer-intro {
  margin-bottom: 2rem;
}

.footer-intro p {
  margin-top: 0.5rem;
  color: var(--wp--preset--color--secondary);
}

.footer-columns {
  align-items: flex-start;
  gap: 3rem;
}

.footer-column {
  min-width: 180px;
}

.footer-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link-list li {
  margin-bottom: 0.35rem;
}

.footer-link-list--legal li {
  margin-bottom: 1rem;
}

.site-footer-content .footer-columns a,
.site-footer-content .footer-columns a:visited {
  color: var(--wp--preset--color--secondary);
  text-decoration: underline;
}

.site-footer-content .footer-columns a:hover,
.site-footer-content .footer-columns a:focus {
  color: var(--wp--preset--color--primary);
  text-decoration: underline;
}

.footer-intro h2 {
  color: var(--wp--preset--color--light);
  font-size:xx-large;
}

.site-footer-content .footer-columns h3 {
  color: var(--wp--preset--color--light);
  font-size:large;
}


/* =========================
   Advantages
========================= */

/* =========================
   Software Benefits (card style)
========================= */

.software-benefits {
    padding: 20px 0;
}

.software-benefits-row {
    gap: 32px;
    margin-top: 40px;
}

.benefit-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    opacity: 0.9;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #5f6773;
    max-width: 260px;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .software-benefits {
        padding: 80px 0;
    }

    .software-benefits-row {
        gap: 24px;
    }

    .benefit-item {
        padding: 24px 20px;
    }

    .benefit-icon {
        width: 64px;
        height: 64px;
    }

    .benefit-icon img {
        width: 48px;
        height: 48px;
    }

    .benefit-item p {
        font-size: 0.95rem;
    }
}

/* =========================
   Software Teaser
========================= */


.software-teaser-section {
    padding: 2rem 0;
}

.software-teaser-grid {
    gap: 32px;
    margin-top: 40px;
}

.software-teaser-item {
    background: #d6d6d6;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-teaser-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.software-image {
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 24px;
}

.software-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.software-teaser-item:hover .software-image img {
    transform: scale(1.05);
}

.software-teaser-item h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    line-height: 1.3;
    color: #111;
}

.software-teaser-item p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #5f6773;
}

.software-teaser-item a {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #02cfcf;
    text-decoration: none;
}

.software-teaser-item a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .software-teaser-section {
        padding: 80px 0;
    }

    .software-teaser-grid {
        gap: 24px;
    }

    .software-teaser-item {
        padding: 24px;
    }

    .software-teaser-item h3 {
        font-size: 1.2rem;
    }

    .software-teaser-item p {
        font-size: 0.95rem;
    }
}
/* =========================
   Team
========================= */
.team-section {
    padding: 2rem 0;
}

.team-grid {
    gap: 32px;
    margin-top: 40px;
}

.team-member {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.team-image {
    margin-bottom: 2rem;
    
}

.team-image img {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

.team-member h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.3;
    color: #111;
}

.team-member p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #5f6773;
    max-width: 280px;
    margin-inline: auto;
}

@media (max-width: 900px) {
    .team-section {
        padding: 80px 0;
    }

    .team-grid {
        gap: 24px;
    }

    .team-member {
        padding: 28px 20px;
    }

    .team-image img {
        width: 100px;
        height: 100px;
    }

    .team-member h3 {
        font-size: 1.15rem;
    }

    .team-member p {
        font-size: 0.95rem;
    }
}


/* =========================
   Companies section
========================= */

.logo-section {
    padding: 90px 0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 50px 80px;
    align-items: center;
    justify-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-grid > .logo-item:last-child {
    grid-column: 2;
}

.logo-item {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.logo-item img {
    max-width: 120px;
    max-height: 35px;
    width: auto;
    height: auto;
    object-fit: contain;
    
}

@media (max-width: 900px) {
    .logo-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 40px 40px;
    }

    .logo-grid > .logo-item:last-child {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .logo-grid {
        grid-template-columns: 1fr;
    }

    .logo-item img {
        max-width: 180px;
        max-height: 50px;
    }
}

/* =========================
   404 Error
========================= */

.error-404 .wp-block-buttons {
    gap: 16px;
}

.error-404 .wp-block-button__link {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;

    font-weight: 500;
    font-size: 0.95rem;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: all 0.25s ease;
}

.error .wp-block-button:not(.is-style-outline) .wp-block-button__link {
    background: rgba(10, 20, 30, 0.85);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.error .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
    transform: translateY(-2px);
    background: rgba(10, 20, 30, 1);
}

.error .is-style-outline .wp-block-button__link {
    background: rgba(255, 255, 255, 0.06);
    color: #0a1a2a;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.error .is-style-outline .wp-block-button__link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.error .wp-block-button__link {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.error .wp-block-button__link:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* =========================
   Carousel
========================= */

.planning-carousel-section {
    padding: 80px 0;
}

.planning-carousel {
    overflow: hidden;
    width: 100%;
}

.planning-carousel-track {
    display: flex;
    transition: transform 0.8s ease;
    will-change: transform;
}

.planning-slide {
    min-width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 20px;
}

.planning-slide img,
.planning-slide video {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .planning-slide img,
    .planning-slide video {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .planning-slide img,
    .planning-slide video {
        height: 260px;
    }
}

/* =========================
   Background Stage
========================= */

.page-id-224 .wp-site-blocks {
  position: relative;
  z-index: 0;
}

.page-id-224 .wp-site-blocks::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url('https://ivpintelligentvirtua7690.live-website.com/wp-content/uploads/2026/04/03_Edgeteq_Cinema_edited_edited.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  filter: brightness(0.7) contrast(0.9) blur(2px);

  z-index: -2;
}

.page-id-224 .wp-site-blocks::after {
  content: "";
  position: fixed;
  inset: 0;

  background: rgba(10, 20, 30, 0.7);

  z-index: -1;
}

.page-id-224 .wp-block-post-content {
  padding-top: 200px;
}
@media (max-width: 900px) {
  .page-id-224 .wp-block-post-content {
    padding-top: 140px;
  }
}


/* =========================
   Background Planning
========================= */

.page-id-189 .wp-site-blocks {
  position: relative;
  z-index: 0;
}

.page-id-189 .wp-site-blocks::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url('https://ivpintelligentvirtua7690.live-website.com/wp-content/uploads/2026/04/Planing_4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  filter: brightness(0.7) contrast(0.9) blur(2px);

  z-index: -2;
}

.page-id-189 .wp-site-blocks::after {
  content: "";
  position: fixed;
  inset: 0;

  background: rgba(10, 20, 30, 0.7);

  z-index: -1;
}

.page-id-189 .wp-block-post-content {
  padding-top: 200px;
}
@media (max-width: 900px) {
  .page-id-189 .wp-block-post-content {
    padding-top: 140px;
  }
}



