* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: clip; 
}

#rolam{
  text-align: justify;
}
body {
  background: #0a0a0a;
  color: #fefefe;
  font-family: 'Courier New', monospace;
  line-height: 1.6;
   overflow-x: clip; 
}

.hero {
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid #222;
}

.logo {
  max-width: 280px;
  margin-bottom: 20px;
}

.sub {
  font-size: 1.1rem;
  color: #d6d6d6;
  margin-top: 10px;
}

.buttons {
  margin-top: 30px;
}

.buttons a {
  text-decoration: none;
  color: #0a0a0a;
  background: #ffd700;
  border: 2px solid #ffd700;
  padding: 10px 14px;
  margin: 0 5px;
  display: inline-block;
  font-weight: bold;
  transition: 0.3s;
}

.buttons a:hover {
  background: transparent;
  color: #ffd700;
}

.section {
  padding: 60px 20px;
  border-bottom: 1px solid #333;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  color: #ffd700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: #1a1a1a;
  border: 1px solid #333;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 3px #ffd700;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  color: #ffd700;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.card-content p {
  font-size: 0.95rem;
  color: #bbb;
}

ul {
  list-style: square;
  padding-left: 20px;
  color: #ddd;
}

blockquote {
  font-style: italic;
  border-left: 3px solid #ffd700;
  margin: 10px 0;
  padding-left: 10px;
  color: #aaa;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

input, textarea {
  padding: 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  font-family: monospace;
}

button {
  padding: 10px;
  background: #ffd700;
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  background: transparent;
  color: #ffd700;
  border: 1px solid #ffd700;
}

footer {
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9rem;
  color: #666;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0; /* top: 0; left: 0; right: 0; bottom: 0 rövidítve */
  top: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.lightbox-content img {
top: 0;
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
  margin-bottom: 15px;
}

.caption-text {
  font-style: italic;
  font-size: 1rem;
  color: #ccc;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #ffd700;
  cursor: pointer;
  font-weight: bold;
}

/* cover */
#coverCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
  cursor: url('brush-cursor.png'), auto;
}

#websiteContent {
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 50px;
  overflow-y: clip;
}

body, html {
  height: 50000px;
}
 .only-mobile {
    display: none;
  }

  /* Mobilon (max 768px szélesség alatt) megjelenik */
  @media (max-width: 768px) {
    .only-mobile {
      display: block;
    }
  }
@media (max-width: 768px) {
    #websiteContent {
     overflow-y: clip;
padding: 0;
    }
  }


  @media (min-width: 768px) and (max-width: 1024px) {
  #websiteContent {
    left: 0;
    transform: translateX(0);
  }
}

.yellow_button{
  color: #ffd700;
}



#floatingContact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9; /* Magas z-index, hogy minden felett legyen */
    display: flex;
    align-items: center;
    transition: transform 0.3s;
 
}

#floatingContact:hover {
  background: #0a0a0a;
  color: #ffd700;
    .floating-phone {
    background: #0a0a0a;
    color: #ffd700;
    }
}

.floating-phone {
    display: flex;
    align-items: center;
    transition: 0.3s;
    gap: 8px; /* Ikon és szöveg közötti távolság */
    background-color: #ffd700; /* Sárga háttér */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    width: 100%; /* Az <a> kitölti a szülő div-et */
    box-sizing: border-box; /* A padding ne növelje a méretet */
  padding: 10px;
  color: #0a0a0a;
  border: 2px solid #ffd700;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.floating-phone::before {
    font-size: 20px;
}

.floating-phone span {
    display: inline-block;
}

/* Reszponzív dizájn mobil eszközökre */
@media (max-width: 600px) {
    #floatingContact {
        bottom: 10px;
        right: 10px;
margin: 5px;
    }
    .floating-phone {
        padding: 8px 15px;
        font-size: 14px;
    }
}

#my-form-button{
font-family: 'Courier New', monospace;
}

h4 {
text-decoration: underline;
}