/*****************Variables*****************/

:root {
  --ceOrange: #F66600;
  --ceGreen: #2C4D45;
  --cePink: #EEC0B9;
  --border: rgba(236,230,215,.14);
}

/*****************General*****************/

body, a, button, input, textarea, label, [data-cursor]{
    cursor: none !important;
}

/* Fallback ohne JavaScript: Custom-Cursor ausblenden, normalen Mauszeiger zeigen */
.no-js body, .no-js a, .no-js button, .no-js input, .no-js textarea, .no-js label, .no-js [data-cursor] {
  cursor: auto !important;
}

.no-js .cursor {
  display: none !important;
}

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

body {
    background-color: #090909;
    font-family: "Gotham";
    color: white;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--cePink);
  color: var(--ceGreen);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
    text-decoration: none;
}

.mb-25 {
    margin-bottom: 25px;
}

.my-25 {
    margin: 25px 0;
}

.mb-50 {
    margin-bottom: 50px;
}

.my-50 {
    margin: 50px 0;
}

.mb-100 {
    margin-bottom: 100px;
}

.my-100 {
    margin: 100px 0;
}

.borderTop {
    border-top: 1px solid var(--border);
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: end;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    background: none;
    outline: none;
}

/*****************Fonts*****************/

/*h1*/
.bigLine {
    font-family: "Anton";
    font-size: clamp(45px, 10vw, 140px);
    line-height: 1.1;
    text-transform: uppercase;
    display: block;
}

/*h2*/
.sectionTitle {
    color: white;
    font-size: 14px;
    letter-spacing: 0.75em;
    opacity: 0.8;
    text-transform: uppercase;
    font-weight: 100;
}

.orangeFont {
    color: var(--ceOrange) !important;
}

.noun {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 100;
}

/* AUSSEN = Maske */
.bigText {
    position: relative;
    font-family:"Anton"; 
    font-size:clamp(80px,18vw,250px);
    line-height:0.9; 
    letter-spacing: 0;
    text-align:center; 
    text-transform:uppercase;
    color:var(--ceOrange);
    mix-blend-mode: difference;
}

.bigText > span {
    display: block;
}

.bigTextSmall {
    font-family: "Anton";
    font-size: clamp(40px, 10vw, 60px);
    line-height: 1.1;
    text-transform: uppercase;
    display: block;
}

.floatText {
    color: white;
    text-wrap: balance;
    font-size: clamp(20px, 4vw, 32px);
    line-height: 1.5;
    margin: 0;
}

.floatTextSmall {
    font-size: clamp(16px, 4vw, 24px);
}

.floatTextBig {
    color: white;
    text-wrap: balance;
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.2;
    margin: 0;
}

.outLineText {
    -webkit-text-stroke:1px white;
    letter-spacing: 2.5px;
    color: transparent !important;
    margin: 0;
}

.fontItalic {
    font-style: italic;
}


.btnCE {
    color: white;
    text-transform: uppercase;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: bold;
    transition:border-color .4s, color .4s
}

.btnCE:hover,
.copyRightSectionLinks a:hover {
    color: var(--ceOrange);
}

.btnCE span {
    text-decoration: none !important;
    display: block;
    opacity: 0.5;
    line-height: 0.5;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 5px;
}

/*****************Header+Nav*****************/

header {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 1000;
}

.headerInner {
    display: flex;
    justify-content: space-between;
    padding: 40px 75px 0 75px;
}

.headerLogo {
    display: block;
    overflow: hidden;
    align-self: flex-start;
}

.headerLogo img {
    width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity .3s ease;
}

.headerLogo img:hover {
    opacity: 1;
}

.nav ul {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.nav ul li {
    overflow: hidden;
}

/*****************Landing Intro Animation*****************/

.intro-pending .headerLogo img,
.intro-pending .nav ul li a,
.intro-pending .navLangInner {
    transform: translateY(115%);
}

.intro-pending .bigLineInner {
    transform: translateY(105%);
}

.intro-pending #hero .sectionTitle,
.intro-pending .scrollIndicator {
    opacity: 0;
}

.bigLine {
    overflow: hidden;
}

.bigLineInner {
    display: block;
}

.navCTA a {
    color: var(--ceOrange);
    font-weight: 600;
}

.navButton {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.8;
    transition: color 0.3s ease;
    color: white;
}

.navLang {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 1px;
    color: white;
}

.navLangInner {
    display: block;
}

.navLangActive {
    font-weight: 700;
    opacity: 1;
}

.navLangLink {
    color: white;
    opacity: 0.6;
    transition: opacity .3s ease, color .3s ease;
}

.navLangLink:hover {
    opacity: 1;
    color: var(--ceOrange);
}

.navButton:hover {
    color: var(--ceOrange);
    opacity: 1;
}


/******************/
/**MOBILE HEADER + OVERLAY**/
/******************/

#mobileHeader{
    display: none;
    position:fixed; 
    top:15px; 
    left:0; 
    right:0; 
    z-index:9001;
    height:64px;
    align-items:center; 
    justify-content:space-between;
    padding:0 25px;
}

#mobileHeader img {
    width:120px;
    height:auto;
}

#openNav{
  background:none; 
  border:none; 
  cursor:pointer;
  width:54px; 
  height:54px; 
  position:relative;
  display:flex; 
  flex-direction:column;
  align-items:flex-end; justify-content:center;
  padding:1px; 
  z-index:9002;
}

/* 3 Linien via pseudo + span */
#openNav::before,
#openNav span,
#openNav::after{
  content:"";
  display:block;
  height:12px;                   /* 👈 vorher 3px — das war das Problem */
  background:url('/media/images/icons/line.png') center/contain no-repeat;
  transform-origin:center;
  transition:transform .45s cubic-bezier(.16,1,.3,1),
             opacity   .3s  ease,
             width     .4s  cubic-bezier(.16,1,.3,1);
}

#openNav::before{ width:29px; }
#openNav span{    width:17px; }
#openNav::after{  width:29px; }

/* Offen → X */
#openNav.is-open::before{
  transform:translateY(12px) rotate(45deg);
  width:44px;
}
#openNav.is-open span{
  opacity:0; transform:scaleX(0);
}
#openNav.is-open::after{
  transform:translateY(-14px) rotate(-45deg); /* 👈 gleich */
  width:44px;
}

/* Overlay */
.overLayNav{
  position:fixed; 
  inset:0; 
  z-index:9000;
  width:100%;
  height:100%;
  background-color: var(--ceOrange);
  display:flex; 
  flex-direction:column; 
  justify-content:center;
  padding:80px 28px 40px;
  opacity:0; pointer-events:none;
  transform:translateY(12px) scale(0.98);
  transition:opacity .45s cubic-bezier(.16,1,.3,1), transform .45s cubic-bezier(.16,1,.3,1);
}

.overLayNav.is-open{
  opacity:1; pointer-events:all;
  transform:translateY(0) scale(1);
}

.overLayNav > div:first-of-type a {
  color:#fff;
  font-family:'Anton',sans-serif; 
  text-transform:uppercase;
  font-size:clamp(32px,9vw,52px); 
  letter-spacing:.01em;
  padding:5px 0;
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  text-decoration:none;
  opacity:0; 
  transform:translateX(-16px);
  transition:opacity .4s ease, transform .4s cubic-bezier(.16,1,.3,1), color .2s;
}

/* Stagger beim Öffnen */
.overLayNav.is-open > div:first-of-type a{
  opacity:1; transform:translateX(0);
}

.overLayNav.is-open > div:first-of-type a:nth-child(1){ transition-delay:.06s; }
.overLayNav.is-open > div:first-of-type a:nth-child(2){ transition-delay:.1s; }
.overLayNav.is-open > div:first-of-type a:nth-child(3){ transition-delay:.14s; }
.overLayNav.is-open > div:first-of-type a:nth-child(4){ transition-delay:.18s; }
.overLayNav.is-open > div:first-of-type a:nth-child(5){ transition-delay:.22s; }

/* Kontakt unten */
.overLayNavContact{
  position:absolute; 
  bottom:32px; 
  left:28px; 
  right:28px;
  display:flex; 
  flex-direction:row; 
  flex-wrap:wrap; 
  gap:16px 28px; 
  opacity:0; 
  transform:translateY(8px);
  transition:opacity .4s ease .3s, transform .4s ease .3s;
}

.overLayNav.is-open .overLayNavContact{
  opacity:1; transform:translateY(0);
}

.overLayNavContact a {
  font-size:11px !important; 
  letter-spacing:.2em;
  text-transform:uppercase; 
  color:rgba(255,255,255,.75) !important;
  text-decoration:none; 
  transition:color .2s;
}

/*****************Hero*****************/

#hero {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.heroDescription {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    padding-left: 150px;
    flex-direction: column;
}

/*****************AboutMe*****************/

#aboutMe {
    position: relative;
    background: url('/media/images/canece-aboutme-bg.webp');
    background-size: cover;
    background-position: top center;
    transform-origin: center center;
    padding: 150px 0;
    text-align: center;
}

#aboutMe a, .skip{
    border-bottom: solid 1px var(--ceOrange);
}

.aboutMeTextWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.aboutMeText {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 500px;
}

#sigVideo {
    width: 250px;
    padding: 50px;
    mix-blend-mode: lighten;
    z-index: 9999;
}

/*****************Filler*****************/

.filler {
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding: 150px 0;
    background-color: var(--ceGreen);
}

.filler .bigText  {
    mix-blend-mode: lighten !important;
    color: var(--cePink);
}

.doodle {
    width: 150px;
    height: auto;
    position:absolute;
    z-index:2;
    pointer-events:none;
    left:var(--x);
    top:var(--y);
    width: var(--s);
    mix-blend-mode: lighten;
    transform:translate(-50%,-50%) rotate(var(--r,0deg));
}

.d-idea  { 
    --x:97%;  
    --y:10%; 
    --s:200px;
    transform:  
    rotate(100deg);
}

.d-arrow { 
    --x:55%;  
    --y:50%; 
    --s:350px
}

.d-rec   { 
    --x:100%;  
    --y:70%; 
    --s:350px
}

.d-play  { 
    --x:50%;  
    --y:100%; 
    --s:150px
}

/*****************Videography*****************/

#videography {
    background-color: #070707;
    padding: 150px;
}

.videoRow {
    display: grid;
    align-items: center;
    border-bottom: solid 1px var(--border);
    padding: 50px 0;
    grid-template-columns:250px 500px 1fr;
    transition: padding-left .5s cubic-bezier(.16,1,.3,1), color .3s ease;
}

.videoRow:hover {
    padding-left: 25px;
}
.videoRow:hover .bigTextSmall {
    color: var(--ceOrange);
}

.videoPortfolio {
    display: flex;
    flex-direction: column;
}

.videoGraphyRow {
    grid-template-columns: 50px 70px 1fr 1fr 1fr;
    display: grid;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(236,230,215,.14);
    border-bottom: 1px solid rgba(236,230,215,.14);
    position: relative;
    transition: padding-left .5s cubic-bezier(.16,1,.3,1), color .3s ease;
    gap: 15px;
    color: white;
}

.videoGraphyRow img {
    width: 35px;
}

.videoGraphyRow:hover {
    color: var(--ceOrange);
    padding-left: 25px;
}

.videoTitle {
    font-weight: bold;
    font-size: 1.2em;
}

.videoPoster {
    display: none;
}

.videoPreview {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity .3s ease, transform .3s cubic-bezier(.16,1,.3,1);
}

.videoPreview.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.videoPreviewVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .videoPreview {
        display: none;
    }
}
/*****************VerticalProduction*****************/

#verticalProduction,
#web {
    background-color: #070707;
}

.verticalContent {
    padding: 150px;
}

#vpStage { 
    position:relative; 
    height:100vh; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    overflow:hidden; 
}

#phone { 
    position:relative; 
    z-index:2; 
    width:clamp(230px,26vw,300px); 
    aspect-ratio:9/19.5;
    border-radius:42px; 
    background:#000; 
    padding:11px; 
    will-change:transform; 
}

.screen { 
    position:relative; 
    width:100%; 
    height:100%; 
    border-radius:32px; 
    overflow:hidden; 
    background:#000; 
}

#feed { 
    position:absolute; 
    inset:0; 
    will-change:transform; 
}

#dots { 
    position:absolute; 
    bottom:-34px; 
    left:50%; 
    transform:translateX(-50%); 
    display:flex; 
    gap:7px; 
    z-index:4; 
}

#dots b { 
    width:6px; 
    height:6px; 
    border-radius:50%; 
    background:#6f6a61; 
    opacity:.4; 
    transition:all .3s; 
}

#dots b.on { 
    opacity:1; 
    background:var(--ceOrange); 
}

.reel { 
    position:relative; 
    width:100%; 
    height:100%; 
    overflow:hidden; 
}

.reel video{ 
    position:absolute; 
    inset:0; width:100%; 
    height:100%; 
    object-fit:cover; 
}

.reel .ui { 
    position:absolute; 
    inset:0; 
    z-index:2; 
    display:flex; 
    flex-direction:column; 
    justify-content:flex-end;
    padding:18px 16px; 
    background:linear-gradient(0deg, rgba(0,0,0,.55), transparent 45%); 
}

.reel .ui .rt { 
    font-family:'Anton',sans-serif; 
    text-transform:uppercase; 
    font-size:18px; 
    line-height:1; 
    color:#fff; 
}

.reel .ui .rp { 
    font-size:9px; 
    letter-spacing:.16em; 
    text-transform:uppercase; 
    color:var(--ceOrange); 
}

.skip{
  position:absolute;
  bottom:40px; left:50%; transform:translateX(-50%);
  z-index:5;
  color:var(--ceOrange);
  font-size:12px; letter-spacing:.3em; text-transform:uppercase;
}



/*****************Webentwicklung*****************/

#web {
    padding: 150px;
}

.webWrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;

}

.webBlock {
    padding: 25px;
    border: solid 1px rgba(236,230,215,.14);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.webBlock .bigTextSmall {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.webBlock:hover .bigTextSmall {
    color: white !important;
    transition: all .5s cubic-bezier(.16,1,.3,1);
    -webkit-text-stroke: 0px;
}


.webPortfolio {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.webPortfolio a {
    opacity: 0.75;
}

.webPortfolio a:hover {
    opacity: 1;
}

.webPortfolio img {
    height: auto;
}
/*****************Clients*****************/

#clients {
    padding: 150px;
    background-color: #070707;
}

.clientsList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.clients {
    opacity: 0.75;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: solid 1px rgba(236,230,215,.14);
}

.clients:hover {
    opacity: 1;
    background-color: var(--border);
}

#clients img {
    width: 200px;
    height: auto;
}

.clientBox {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.clientBoxBorder {
    letter-spacing: 2px;
    border: solid 1px rgba(236,230,215,.14);
    font-size: 12px;
    padding: 10px 25px;
}



/*****************Footer*****************/

footer {
    background-color: #090909;
}

.footerWrapper {
    display: flex;
    align-items: center;
    padding: 150px;
}

.footerLinks {
    flex: 0 0 25%;
}

.footerLinks ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footerCenter {
    display: flex;
    justify-content: center;
    flex: 0 0 50%;
    text-align: center;
}

/*****************Copyright*****************/

.copyRightSection {
    padding: 50px 150px;
}

.copyRight {
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
}

.copyRightSectionLinks {
    display: flex;
    gap: 20px;
}

.copyRightSectionLinks a {
    color: white;
    position: relative;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: max-content;
    font-size: 12px;
}
/*****************ScrollDown*****************/

.scrollIndicator {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  right: 50px;
  bottom: 50px;
}

.scrollLine {
  margin-bottom: 25px;
  width: 2px;
  height: 120px;
  background: var(--ceOrange);
  animation: scrollBlink 2.5s infinite cubic-bezier(0.66, 0, 0.34, 1);
}

.scrollIndicator span {
  color: white;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  opacity: 0.8;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 5px;
}

@keyframes scrollBlink {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.4);
  }
}

/*****************Scrollbar*****************/

::-webkit-scrollbar {
  display: none;
}

.customScrollBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background-color: var(--ceOrange);
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/*****************OverLayGrains*****************/

.overLayGrains {
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.4;
    mix-blend-mode: hard-light;
    pointer-events: none;
    z-index: 99;
}

#overlayGrainsVideo {
    width: 100%;
    height: 100%;
    mix-blend-mode: difference !important;
    object-fit: cover;
}


.sectionsWithoutGray {
  position: relative;
  z-index: 999;
  background-color: #070707;
}

/******************/
/**CURSOR**/
/******************/

.cursor {
    position:fixed; 
    width:50px; 
    height:50px;
    transform:translate(-50%,-50%);
    pointer-events:none; 
    z-index:99999;
    mix-blend-mode: difference;
}

.cursorRing {
    width:100%;
    height:100%;
    border:1.5px solid var(--ceOrange);
    border-radius:50%;
    will-change:transform;
    transition:background .35s ease, border-color .35s ease;
}

.cursorDot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/**magnetic**/
[data-cursor~="magnetic"]{
    display:inline-block;
    will-change:transform;
}

[data-cursor~="invert"].cursor-over{ 
    position:relative; 
    z-index:100000; 
    color:#fff; 
}

/**invert**/
[data-cursor~="invert"]{ 
    transition:color .3s ease; 
}

/**grow**/
.cursor.is-grow .cursorRing {
  background:#fff;
  border-color:#fff;
}

/* Ball füllt sich orange */
.cursor.is-fill .cursorRing{ 
    background:var(--ceOrange); 
    border-color:var(--ceOrange); 
}


/******************/
/**COOKIE**/
/******************/
  .cookieBox {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100vw;
    justify-content: center;
    align-items: center;
    bottom: 50px;
    z-index: 99998;
    animation: fadeInUp 2s ease-out;
}

.cookieWrapper {
    width: 90%;
    max-width: 500px;
    color: white;
    backdrop-filter: blur(30px);
    background-color: #09090933;
    border: 1px solid #ffffff26;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.cookieBottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cookieImg {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 14px;
}

.cookieImg img {
    width: 150px;
    height: auto;
}

.accept,
.decline {
    padding: 7.5px 35px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.6s ease;
}

.accept {
    background-color: var(--ceOrange);
    color: white;
}

.accept:hover {
    background-color: transparent;
    color: var(--ceOrange);
}

.decline {
    background-color: transparent;
    color: white;
}

.decline:hover {
    background-color: rgb(124, 27, 27);
    color: white;
}

@keyframes fadeInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookieBox.hidden {
  display: none;
}




/******************/
/**404**/
/******************/

#extendendPage {
    padding: 150px;
    width: 100vw;
    height: calc(100vh - 300px);
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

#extendendPage h1 {
    mix-blend-mode: normal;
    color: white;
    text-align: start;
}

.fourText {
    width: 650px;
}

#extendendPage a {
    color: var(--ceOrange);
    border-bottom: solid 1px var(--ceOrange);
}

@media (max-width: 992px)  {

    #extendendPage {
        justify-content: center;
        text-align: center;
        align-items: center;
        padding: 25px;
    }

    #extendendPage h1 {
        text-align: center;
    }

    .fourText {
    width: 300px;
    }

}

/******************/
/**Legal Pages (Datenschutz)**/
/******************/

#legal {
    padding: 150px;
}

#legal h1 {
    text-align: start;
    color: white;
    font-size: 70px;
}

#legal a {
    color: var(--ceOrange);
    border-bottom: solid 1px var(--ceOrange);
}

@media (max-width: 992px) {

    #legal {
        padding: 25px;
    }

}

/******************/
/**Card**/
/******************/

    #card {
        padding: 150px;
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        height: 100svh;
        width: 100vw;
    }

    #card h1 {
        text-align: start;
        color: white;
    }

    .cardBottom {
        display: grid;
        width: 100%;
        gap: 15px;
        grid-template-columns: repeat(3, 1fr);
    }

    .cardLink {
        display: flex;
        align-items: center;
        gap: 15px;
        background-color: rgba(255,255,255,0.035);
        padding: 15px 20px;
    }

    .cardImg {
        width: 50px;
        height: 50px;
        background-color: #3A2113;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cardImg img {
        width: 25px;
        height: 25px;
    }

    #card .floatTextSmall {
        color: white;
    }
    
    @media (max-width: 992px)  {
    #card {
        padding: 25px 15px;
        align-items: center;
    }
    .cardBottom {
        grid-template-columns: 1fr; /* Thumbnail + Hauptinfo */
        padding: 25px 0;
        gap: 10px;
    }

    #card .mb-50 {
        margin: 25px 0;
    }

    #card .my-50 {
        margin: 25px 0;
    }
}

/*****************Media*****************/

@media (max-width: 992px)  {
    .videoGraphyRow {
        grid-template-columns: 1fr; /* Thumbnail + Hauptinfo */
        padding: 15px 0;
        gap: 10px;
    }

    .videoGraphyRow .vpPlay,
    .videoNumber {
        display: none;
    }

    #videography,
    .verticalContent,
    #clients,
    #web {
        padding: 25px;
    }

    #verticalProduction h2 {
        margin-bottom: 25px;
    }

    #videography .my-100 {
        margin: 25px 0;
    }

    #videography .mb-100 {
        margin-bottom: 25px;
    }

    #videography h2 {
        text-align: center;
        margin-bottom: 25px;
    }
    .videoRow {
        grid-template-columns: 1fr;
        padding: 20px 0;
    }
    #aboutMe {
        position: relative;
        background: url('/media/images/canece-aboutme-bg.webp');
        background-size: cover;
    }


.videoPoster {
    display: block;
    width: 100% !important;
}
    .sectionTitle {
        font-size: 10px;
    }


#hero {
    height: 100svh;
}

    .scrollIndicator {
        right: 20px;
        bottom: 20px;
    }

    .scrollIndicator span {
        font-size: 10px;
    }

    .scrollLine {
        margin-bottom: 10px;
        width: 2px;
        height: 60px;
    }
    
    header {
        display: none;
    }
    
    .heroDescription {
        padding-left: 50px;
    }

    .aboutMeText {
        width: 250px;
    }

    .order-1 {
        order: 1;
    }
    .order-2 {
        order: 2;
    }
    .order-3 {
        order: 3;
    }
    .order-4 {
        order: 4;
    }

    .doodle {
        width: 50px;
        height: auto;
        position:absolute;
        z-index:2;
        pointer-events:none;
        left:var(--x);
        top:var(--y);
        width: var(--s);
        mix-blend-mode: lighten;
        transform:translate(-50%,-50%) rotate(var(--r,0deg));
    }

    .d-idea  { 
        --x:97%;  
        --y:10%; 
        --s:50px;
        transform:  
        rotate(100deg);
    }

    .d-arrow { 
        --x:55%;  
        --y:50%; 
        --s:100px
    }

    .d-rec   { 
        --x:100%;  
        --y:70%; 
        --s:100px
    }

    .d-play  { 
        --x:50%;  
        --y:100%; 
        --s:50px
    }

    .footerWrapper {
        flex-direction: column;
        gap: 30px;
        padding: 50px 50px 0 50px;
    }

    .footerLinks {
        text-align: center;
    }

    .copyRightSection {
        padding: 25px;
    }

    .copyRightSectionLinks a {
        font-size: 10px;
    }
    
    .copyRight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        font-size: 12px;
        padding-top: 10px
    }

    .copyRightSectionLinks {
        justify-content: center;
    }

    .clientsList {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }


.webPortfolio {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.webBklock {
    padding: 15px;
}
.webWrapper {
    display: grid;
    grid-template-columns:1fr;
    gap: 5px;

}

.webBlock .bigTextSmall {
    min-height: auto;
}

.outLineText span{
    font-size: 30px;
}

.outLineText span:hover{
    font-size: 30px;
    -webkit-text-stroke: 0px;
}

#mobileHeader{
    display:flex;
}

.videoRow:hover {
    padding-left: 0px;
}

.videoGraphyRow:hover {
    color: white;
    padding-left: 0px;
}
    #card .floatTextSmall {
        font-size: 14px !important;
    }

}