@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

@font-face {
  font-family: Robuck;
  src: url(RobuckRounded.otf);
}

@font-face {
    font-family: Sanctuary;
    src: url(Sanctuary-4ZL9.ttf);
}

@font-face {
    font-family: Champagne;
    src: url(ChampagneAndLimousines-7KRB.ttf);
}

@font-face {
    font-family: ChampagneBold;
    src: url(ChampagneAndLimousinesBold-myr2.ttf);
}


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

html{
    scroll-behavior: smooth;
}

.landing-page {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.navbar-container {
    position: fixed;
    top: 2rem;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 2rem;
    
    /* Toto automaticky zarovná vše na střed výšky a rozdělí šířku */
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* 3 sloupce: volno - navbar - volno */
    align-items: center; 
}

.navbar {
    grid-column: 2; /* Navbar bude vždy v prostředním sloupci */
    border: 1.5px solid white;
    padding: 1rem 4rem;
    border-radius: 15px;
    display: flex;
    gap: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.nav-icon i {
    display: inline-block;
    color: white;
    font-size: 1.75rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-icon:hover i {
    transform: scale(1.3);
    color: #00EFF8;
}

.nav-separator {
    width: 1.5px;
    height: 2rem;
    background-color: white;
    border: none;
    margin: 0 1rem;
    opacity: 0.7;
}

a{
    text-decoration: none;;
}

.audio-control {

    justify-self: end; /* Tlačítko se samo přilepí k pravému okraji svého sloupce */
    
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: white 1.5px solid;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
}

.audio-control:hover {
  background-color: white;
  color: black;
}

.video-ctrl-btn {
    justify-self: start;
}

.landing-page-logo{
    position: relative;
    height: 40rem;
    top: 1rem;
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.5);
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.divide-blur {
    width: 100%;
    height: 12rem;
    position: absolute;
    bottom: 0;
    backdrop-filter: blur(40px);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
    mask-image: linear-gradient(to top, black, transparent);
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    z-index: 5;
}


/* Kontejner pro celý vnitřek slajdu */
.carousel-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    height: 80vh; 
    padding: 0 10%; 
    background: linear-gradient(to right bottom, #000, rgb(122 182 129 / 40%) 70%);
}



.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0);
    z-index:  10;
    
}

/* Styl pro Zoro téma */
.style-zoro .carousel-text h1 {
    color: white;
    text-shadow: 0 0 15px #7ab681;
    z-index: 10;
    position: relative;
}

.style-zoro .buy-btn {
    border-color: #7ab681;
    color: #7ab681;
    position: relative;
    z-index: 10;
}

.style-zoro .buy-btn:hover {
    background-color: #7ab681;
    color: black;
    box-shadow: 0 0 20px #7ab681;
}

.style-zoro .carousel-image img {
    max-height: 70vh;
    width: auto !important;
    object-fit: contain;
}

.style-zoro .zoro-logo {
    position: absolute;
    top: -25rem;
    left: -5rem;
    height: 8rem;
    z-index: 15;
    height: 50rem;
    z-index: 0;
    filter: opacity(0.2);
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

.style-zoro .carousel-text {
    position: relative;
    z-index: 10;
    font-size: 1.5rem;
    font-family: Champagne, sans-serif;
}

/* Styl pro Omni-Man téma */
.style-omniman .carousel-text h1 {
    color: rgb(221, 48, 45);
    text-shadow: 0 0 20px white;
    position: relative;
}

.style-omniman .carousel-content-wrapper {
    background: linear-gradient(to right , rgb(180, 32, 30), rgb(255, 255, 255) 50%);
}

.style-omniman .buy-btn {
    border-color: rgb(255, 212, 212);
    color: rgb(255, 212, 212);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 10;
}

.style-omniman .buy-btn:hover {
    background-color: rgb(221, 48, 45);
    color: white;
    box-shadow: 0 0 25px white;
}

.style-omniman .carousel-image img {
    max-height: 75vh;
    position: relative;
    height: 40rem;
    left: 5rem;
    rotate: -20deg;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
    user-select: none;
}

.style-omniman .omniman-logo {
    position: absolute;
    top: -20rem;
    left: -10rem;
    z-index: 0;
    height: 50rem;
    filter: opacity(0.2);
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

.style-omniman .carousel-text {
    position: relative;
    z-index: 10;
    font-size: 1.5rem;
    font-family: Champagne, sans-serif;
}

/* Styl pro Bloodborne téma */
.style-bloodborne .carousel-text h1 {
    color: whitesmoke;
    text-shadow: 0 0 40px black;
    z-index: 10;
    position: relative;
}

.style-bloodborne .carousel-text {
    position: relative;
    z-index: 10;
    font-size: 1.5rem;
    color: black;
    font-family: ChampagneBold, sans-serif;
}

.style-bloodborne .carousel-content-wrapper {
    background: white;
}

.style-bloodborne .buy-btn {
    border-color: black;
    position: relative;
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
}

.style-bloodborne .buy-btn:hover {
    background-color: rgb(221, 48, 45);
    color: white;
    box-shadow: 0 0 25px black;
}

.style-bloodborne .carousel-image img {
    
    justify-self: center;
    align-self: center;
    height: 90rem;
    left: 5rem;
    rotate: 90deg;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.style-bloodborne .bloodborne-logo {
    position: absolute;
    top: -30rem;
    left: -10rem;
    height: 8rem;
    z-index: 15;
    height: 50rem;
    z-index: 0;
    filter: opacity(0.2);
    overflow: hidden;
    pointer-events: none;
    user-select: none;
    
}

/* Produkty section */
.choose-section {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
    width: 100%;
    height: 85vh; /* Svislá výška */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Svislé vycentrování v sekci */
    align-items: center; /* Vodorovné vycentrování v sekci */
    overflow: hidden;
    padding: 0 2%;
    box-sizing: border-box;
    position: relative;
}

.produkty-nadpis {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%; /* Rozprostře se přes celou šířku, aby fungoval text-align */
    text-align: center;
    z-index: 10;
    pointer-events: none; /* Aby nadpis nepřekážel klikání na horní řadu plechovek */
}

.produkty-nadpis .choose-title {
    color: white;
    font-family: 'Robuck', sans-serif !important;
    font-size: 6rem !important; /* PŘIDÁNA JEDNOTKA rem */
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr)); 
    gap: 15px;
    max-width: 1500px;
    width: 100%;
    align-items: center; /* Svislé vycentrování karet v gridu */
}

/* Úprava can-inner jako odkazu */
.can-inner {
    text-decoration: none; /* Odstraní podtržení odkazu */
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px; /* Zaoblení */
    width: 100%;
    height: 320px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.can-inner, .can-inner * {
    text-decoration: none !important;
}

/* Efekt při kliknutí */
.can-inner:active {
    transform: scale(0.95);
}

.can-image-box img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* Zvětšený text na střed */
.can-info {
    opacity: 0;
    max-height: 0;
    text-align: center;
    width: 90%;
    font-family: 'ChampagneBold', sans-serif;
    font-size: 1.5rem;
    color: white;
    transition: all 0.5s ease;
    text-decoration: none;
}

/* Čáry víc viditelné při hoveru */
.can-line {
    width: 50%;
    height: auto;
    opacity: 0;
    filter: brightness(2.5) drop-shadow(0 0 8px white);
    transition: all 0.4s ease;
}

/* --- HOVER EFEKTY --- */
.can-card:hover .can-inner {
    height: 450px; /* Prodloužení pro text */
    border-color: white;
}

.can-card:hover .can-info {
    opacity: 1;
    max-height: 150px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.can-card:hover .can-line {
    opacity: 1;
    width: 85%;
}

/* --- BAREVNÉ VARIANTY (z předchozího kroku) --- */
/* První karta bude mít po najetí čistě černé pozadí */
.can-card:nth-child(1):hover .can-inner { background: rgba(0, 0, 0, 0.9); }
.can-card:nth-child(2):hover .can-inner { background: rgba(0, 100, 255, 0.25); }
.can-card:nth-child(3):hover .can-inner { background: rgba(50, 255, 50, 0.15); }
.can-card:nth-child(4):hover .can-inner { background: rgba(255, 255, 255, 0.2); }
.can-card:nth-child(5):hover .can-inner { background: rgba(0, 255, 150, 0.2); }
.can-card:nth-child(6):hover .can-inner { background: rgba(255, 0, 0, 0.25); }
/* Responzivita - na tabletu 3 a na mobilu 2 vedle sebe */
@media (max-width: 1024px) {
    .choose-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .choose-grid { grid-template-columns: repeat(2, 1fr); }
}



/* Carousel */
.carousel-text {
    flex: 1;
    padding-bottom: 10vh; 
    color: white;
    text-align: left;
}

.carousel-text h1 {
    font-size: 5rem;
    font-family: Robuck, sans-serif;
    letter-spacing: 1px;
    color: white;
    text-shadow: 0 0 15px #7ab681;
    font-weight: 600;
}

/* Styl pro tlačítko */
.buy-btn {
    background-color: transparent;
    border: 2px solid #7ab681;
    color: #7ab681;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1.5rem;
    border-radius: 20px;
}

.buy-btn:hover {
    background-color: #027f3b;
    color: black;
    box-shadow: 0 0 20px #027f3b;
}

/* Pravá strana s obrázkem */
.carousel-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end; 
    height: 100%;
}

/* Oprava pro Bootstrap Carousel Inner */
.carousel-inner {
    background-color: #000;
    height: 80vh;
}

.plechovky-container{
  height: 100vh;
  display: flex;
}

.left-side, .right-side{
  flex: 1;
  background-size: cover;
  background-position: center;
}

.left-side{
  background-color: black;
}

.right-side{
  background-color: white;
}



.novinky {
    width: 100%;
    max-width: 100%;
    height: 23vh;
    display: flex;
    background-color: black;
    overflow: hidden;
}

.novinka {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 2rem;
    border-right: 2px solid red;
    border-bottom: 2px solid red;
    transition: background 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 100%;
    overflow: hidden;
}


.novinka::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #b4201e;
    z-index: 60;
    transition: left 0.4s ease; 
}

.novinka::after {
    content: "SHOW MORE";
    position: absolute;
    top: 0rem;
    left: -100%;
    width: 100%;
    height: 100%;
    padding-top: 2rem;
    background-color: rgb(59, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Robuck, sans-serif;
    font-size: 9rem;
    color: transparent;
    -webkit-text-stroke: 1.5px red;
    z-index: 70;
    transition: left 0.4s ease; 
}

.novinka:hover::before {
    left: 0;
    transition: left 0.5s ease;
}

.novinka:hover::after {
    left: 0;
    transition: left 0.5s ease 0.15s; 
}


.novinka::before, .novinka::after {
    transition: left 0.4s ease 0s;
}

.novinka:last-child {
    border-right: none; 
}


.novinka-text {
    flex: 0 0 auto; 
    color: rgb(198, 0, 0);
    font-family: ChampagneBold, sans-serif;
}

.novinka-text h3 {
    font-family: Robuck, sans-serif;
    font-size: 8rem;
    top: 1rem;
    margin-bottom: 0.2rem;
    position: absolute;
    color: red;
    z-index: 0;
}

.novinka-text p {
    font-size: 1.5rem;
    opacity: 1;
    position: absolute;
    top: 9rem;
}


.novinka-img {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.novinka-img img {
    max-height: 80%;
    max-width: 100%;
    object-fit: contain;
    max-height: 90%; 
    display: block;
    z-index: 1;
}


/* Plechovky */

.plechovka-original {
    height: 80vh;
    width: 100%;
    position: relative;
}

.original-text{
    font-family: Sanctuary, sans-serif !important;
    font-size: clamp(5rem, 10vw, 10rem); /* Responzivní velikost */
    color: rgb(0, 155, 158) !important;
    -webkit-text-stroke: 1px rgb(122, 251, 255);
}

.btn-original {
    background-color: transparent;
    border: 2px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    padding: 1rem 3rem;
    font-size: 1.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;
    font-family: Robuck, sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-original:hover {
    background-color: white;
    color: black;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    text-decoration: none;
}


.original-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 3;
    justify-content: center;
    align-items: center;
}

.origo-img {
    width: 100%;             /* Roztáhne na celou šířku */
    height: 80vh;            /* Fixní výška kontejneru */
    object-fit: cover;       /* Vyplní prostor, zachová poměr stran a ořízne přebytky */
    object-position: center; /* Zajistí vycentrování (svisle i vodorovně) */
    z-index: 2;
    position: relative;
    overflow: hidden;        /* Pojistka pro oříznutí */
    filter: brightness(0.6);
}


.divide-blur-plechovka2 {
    width: 100%;
    height: 7rem;
    position: absolute;
    top: 0;
    backdrop-filter: blur(40px);
    -webkit-mask-image: linear-gradient(to bottom, #00EFF8, transparent);
    mask-image: linear-gradient(to bottom, #00EFF8, transparent);
    background: linear-gradient(to bottom, rgba(0, 239, 248, 0.5), rgba(0,0,0,0));
    z-index: 5;
}

.divide-blur-plechovka3 {
    width: 100%;
    height: 7rem;
    position: absolute;
    bottom: 0;
    backdrop-filter: blur(40px);
    -webkit-mask-image: linear-gradient(to top, #00EFF8, transparent);
    mask-image: linear-gradient(to top, #00EFF8, transparent);
    background: linear-gradient(to top, rgba(0, 239, 248, 0.5), rgba(0,0,0,0));
    z-index: 5;
}

.origo-tattoo {
    position: absolute;
    top: 38%;
    left: -2%;
    height: 50vh;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.origo-tattoo2 {
    position: absolute;
    top: 0%;
    right: -2%;
    height: 80vh;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* Paleblood Section Styly */
.paleblood-section {
    width: 100%;
    height: 80vh; /* Držíme stejnou výšku jako předtím */
    background-color: #000;
    overflow: hidden; /* Důležité: ořízne vše, co přetéká svisle */
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.divide-blur-plechovka4 {
    width: 100%;
    height: 7rem;
    position: absolute;
    top: 0;
    backdrop-filter: blur(40px);
    -webkit-mask-image: linear-gradient(to bottom, #750000, transparent);
    mask-image: linear-gradient(to bottom, #750000, transparent);
    background: linear-gradient(to bottom, rgba(117, 0, 0, 0.5), rgba(0,0,0,0));
    z-index: 5;
}

.divide-blur-plechovka5 {
    width: 100%;
    height: 7rem;
    position: absolute;
    bottom: 0;
    backdrop-filter: blur(40px);
    -webkit-mask-image: linear-gradient(to top, #750000, transparent);
    mask-image: linear-gradient(to top, #750000, transparent);
    background: linear-gradient(to top, rgba(117, 0, 0, 0.5), rgba(0,0,0,0));
    z-index: 5;
}

.paleblood-section .full-bg-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* Obsah (nadpis) bude vpravo */
    align-items: center;
}

.paleblood-section .slide-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.7; /* Trochu jsem přidal na viditelnosti */
}

.paleblood-section .side-content-right {
    position: relative;
    z-index: 2;
    width: 45%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.paleblood-section h1 {
    font-family: Sanctuary, sans-serif !important;
    font-size: clamp(5rem, 10vw, 10rem) !important; /* Responzivní velikost */
    color: rgb(99, 0, 2) !important;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    margin: 0;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.btn-bloodborne {
    background-color: transparent;
    border: 2px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    padding: 1rem 3rem;
    font-size: 1.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;
    font-family: Robuck, sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-bloodborne:hover {
    background-color: white;
    color: black;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}








/* Contact Section */
.contact-section {
    background-color: #000;
    color: white;
    padding: 6rem 10%;
    font-family: 'Champagne', sans-serif;
    position: relative;
}

/* Nadpis s linkami (Bloodborne styl) */
.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.contact-title {
    font-family: 'Sanctuary', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 5px;
    margin: 0;
}

.bb-divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
    position: relative;
}

/* Subtitle */
.contact-subtitle {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-subtitle p {
    font-size: 2.5rem;
    margin: 0;
    font-style: italic;
}

.contact-subtitle h3 {
    font-size: 3rem;
    font-family: 'ChampagneBold', sans-serif;
    margin: 0;
}

.contact-subtitle h3 span {
    font-family: 'Champagne', sans-serif;
    font-weight: normal;
}

/* Grid layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Info sloupce */
.info-item {
    margin-bottom: 4rem;
    text-align: center;
}

.info-item h4 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.small-divider1{
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, white, transparent);
    margin-bottom: 1rem;
    transform: scaleX(-1);
}

.small-divider2{
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, white, transparent);
    margin-bottom: 1rem;
}

.info-item p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Sociální sítě v kontaktu */
.social-links-contact {
    display: flex;
    gap: 1.5rem;
    font-size: 2rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

.social-links-contact a { color: white; transition: 0.3s; }
.social-links-contact a:hover { color: #00EFF8; transform: scale(1.1); }

/* Skleněný formulář */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    padding-bottom: 0rem;
    backdrop-filter: blur(10px);
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.input-group input, .input-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem 0;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-bottom: 1px solid white;
}

.input-group textarea {
    height: 150px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 0.5rem;
}


/* Kontejner pro tlačítko */
.submit-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem auto 0 auto;
    padding-bottom: 2rem;
    width: fit-content; /* Hover reaguje jen na šířku tlačítka */
    cursor: pointer;
}



/* Samotné tlačítko */
.btn-submit-clean {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Robuck', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 0rem 4rem;
}

/* Hover efekty - změna na modrou linku i záři */
.submit-container:hover .submit-glow-line {
    /* Změna barvy gradientu na tvoji modrou */
    background: linear-gradient(to right, transparent, #00EFF8, transparent);
    
    /* Modrá záře */
    box-shadow: 0 0 25px rgba(0, 239, 248, 0.8);
    
    /* Mírné protažení do stran */
    transform: scaleX(1.1);
}

.submit-container:hover .btn-submit-clean {
    color: #00EFF8;
    text-shadow: 0 0 20px rgba(0, 239, 248, 0.5);
    transform: translateY(-5px); /* Jemné nadzvednutí textu nad linku */
}

/* Spodní linka */
.contact-footer-line {
    margin-top: 5rem;
}


/* Footer */
.footer{
    background-color: black;
    padding-top: 30rem;
    padding: 3rem 15rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.ominous-footer{
    font-family: Sanctuary, sans-serif !important;
    font-size: 12rem !important;
    color: rgb(153, 153, 153);
}

.dotaznik{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
}

.dotaznik-cara{
    top: -1rem;
    width: 30%;
    opacity:0.6;
    pointer-events: none;
    user-select: none;
}

.dotaznik a:hover .dotaznik-cara {
    opacity: 1;
}

.dotaznik a{
    
    color: rgb(128, 128, 128);
    padding: 0rem 2rem;
    border-radius: 15px;
    font-family: ChampagneBold, sans-serif;
    font-size: 1.5rem;
}

/* Výchozí stav čáry */
.dotaznik-cara {
    opacity: 0.3;
    width: 30%; /* Nebo šířka, kterou potřebuješ */
    height: auto;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: block; /* Aby pod odkazem nezavazela jako inline prvek */
}

/* Hover efekt: Když najedeš na odkaz, čára se objeví */
.dotaznik a:hover + .dotaznik-cara {
    opacity: 1;
    transform: scaleX(1.1); /* Volitelné: čára se jemně protáhne */
}

/* Volitelné: Změna barvy odkazu při hoveru, aby to ladilo */
.dotaznik a:hover {
text-decoration: none; 
color: rgb(128, 128, 128);

}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    transition: color 0.2s ease-in-out, transform 0.3s ease-in-out;
}

.footer-nav a:hover {
    color: #00EFF8;
    transform: scale(1.4);
}

.footer-rights-reserved{
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(128, 128, 128);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px); /* O kolik se vznese nahoru */
    }
    100% {
        transform: translateY(0px);
    }
}