*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, Arial, sans-serif;
}

a {
color:rgba(255, 255, 255, 0.473);
}

.contact-card a {
color: inherit; /* Odkaz zdědí barvu od rodičovského boxu */
text-decoration: none; /* Volitelně: zruší podtržení */
}

body{
background:#081827;
color:white;
transition:.3s;
}

/* HEADER */
header{
position:fixed;
top:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:#081827cc;
backdrop-filter:blur(15px);
z-index:10;
}

.logo{
font-size:30px;
font-weight:800;
letter-spacing:1px;
}

/* NAV */
nav{
display:flex;
gap:12px;
}

/* BUTTONS */
button{
border:0;
padding:13px 25px;
border-radius:30px;
background:#145cff;
color:white;
cursor:pointer;
transition:.3s;
font-weight:500;
}

button:hover{
transform:translateY(-4px);
box-shadow:0 0 25px #145cff;
}

/* PAGE SWITCH */
.page{
display:none;
min-height:100vh;
align-items:center;
justify-content:center;
padding:120px 20px;
}

.page.active{
display:flex;
}

/* HERO */
.hero{
max-width:900px;
text-align:center;
}

.hero h1{
font-size:80px;
margin-bottom:10px;
}

.hero p{
margin:12px;
line-height:1.6;
opacity:0.9;
}

/* CARD */
.card{
max-width:850px;
width:100%;
padding:40px;
border-radius:35px;
background:#ffffff10;
backdrop-filter:blur(20px);
box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

/* BOX STYLE */
.box{
padding:18px 20px;
border-radius:22px;
background:#ffffff12;
margin:12px 0;
transition:.3s;
}

.box:hover{
transform:translateY(-3px);
box-shadow:0 0 18px #145cff55;
}

/* FORM */
.form-grid{
display:grid;
grid-template-columns:1fr;
gap:14px;
margin-top:10px;
}

/* INPUTS */
input, textarea{
width:100%;
padding:15px;
border-radius:18px;
border:1px solid #ffffff30;
background:#0004;
color:white;
outline:none;
transition:.3s;
}

input:focus, textarea:focus{
border-color:#145cff;
box-shadow:0 0 12px #145cff55;
}

/* PAYMENT */
.pay-group{
display:flex;
gap:15px;
margin-top:10px;
}

.pay-group label{
flex:1;
padding:16px;
border-radius:20px;
background:#ffffff10;
cursor:pointer;
text-align:center;
transition:.3s;
}

.pay-group input{
display:none;
}

.pay-group label:has(input:checked){
border:2px solid #145cff;
box-shadow:0 0 20px #145cff;
}

/* ===================== */
/* 🔥 GALLERY FIX */
/* ===================== */

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.vyrobek {
  overflow: hidden;
  border-radius: 20px;
}

/* obrázek uvnitř */
.vyrobek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* různé velikosti */
.sirka {
  width: 400px;
  height: 250px;
}

.vyska {
  width: 400px;
  height: 450px;
}

.velka {
  width: 400px;
  height: 500px;
}
.zajac {
  width: 400px;
  height: 450px;
}

.klicenka  {
  width: 400px;
  height: 500px;
}
/* CONTACTS */
.contacts{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
margin-top:10px;
}

.contact-card{
width:200px;
height:140px;
border-radius:30px;
background:#ffffff12;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
transition:.3s;
}

.contact-card:hover{
transform:translateY(-8px);
box-shadow:0 0 25px #145cff;
}

.main-contact{
border:2px solid #145cff;
}

/* THEME BUTTON */
.theme-btn{
position:fixed;
bottom:20px;
left:20px;
border-radius:50%;
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
}

/* CENTER BUTTON */
.center-btn{
display:block;
margin:20px auto 0 auto;
}

/* LIGHT MODE */
body.light{
background:#eef4ff;
color:#111;
}

body.light .card,
body.light .box,
body.light .contact-card{
background:white;
color:#111;
}

body.light input,
body.light textarea{
background:#fff;
color:#111;
border:1px solid #ccc;
}

body.light button{
box-shadow:none;
}
