@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Montserrat:wght@300;400;600&display=swap');

body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}


@keyframes slideDownFade {
    0% {
      opacity: 0;
      transform: translateY(-30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .card {
    background-color: transparent;
    opacity: 0;
    animation: slideDownFade 0.8s ease forwards;
  }
  
 .map {
    color: #000;
 }

.text {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.705);
    
}

.text:hover {
    color: #ffffff5b;
    transform: scale(1.2)
}

.text-description {
    color: rgba(255, 255, 255, 0.705);
}

.brand-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #ffffff;
}

.brand-highlight {
    color: #f5c94f;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    color: #f5c94f;
    letter-spacing: 1px;
}

html {
    overflow-y: scroll;
}

.tagline span {
    color: #ffffff;
}

.form-control::placeholder {
    color: #999;
}

.form-section {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 4rem;
}

.form-section input,
.form-section button {
    border-radius: 10px;
}

.table {
    border-radius: 8px;
    overflow: hidden;
    outline: 1px solid rgb(255, 255, 255);
    outline-offset: -1px;
    
}

.table td:last-child {
    text-align: right;
}



.text-block {
    margin-top: 5rem; 
}

.listblock {
    margin-top: 30px; 
}

footer .social-icons a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.5rem;
    text-decoration: none;
}

footer .social-icons a:hover {
    color: #f5c94f;
}

.social-icons a {
    
    color: #ffffff;
    margin: 0 10px;
    font-size: 2rem;
    text-decoration: none;

}

.social-icons :hover {

    color: #f5c94f;
}

.btn-price {
    display: flex;
    
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: #212529;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    white-space: normal;
    text-align: center;
    text-decoration: none;
}




.btn-price:hover {
    transform: scale(1.05);
    background: #2d3135;
}

.btn-price-selected {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: #f5c94f;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    white-space: normal;
    text-align: center;
    text-decoration: none;
}

.btn-price-selected:hover {
    transform: scale(1.05);
    background: #f5c94fb7;
}


.img-white {
    filter: brightness(0) invert(1);
}



.hex-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('https://www.transparenttextures.com/patterns/hexellence.png'); 
    opacity: 0.2;
    background-size: 200px 200px;
    background-repeat: repeat;
}

.img-samples {
    width: 100%;
    height: 800px; 
    object-fit: cover;
    object-position: center;
    background-color: transparent;
    opacity: 0;
    animation: slideDownFade 0.8s ease forwards;
    
}


.img-index {
    width: 100%;
    height: 300px; 
    object-fit: cover;
    object-position: center;
    background-color: transparent;
    opacity: 0;
    animation: slideDownFade 0.8s ease forwards;
    
}

.anim-slidedown 
{
    opacity: 0;
    animation: slideDownFade 0.8s ease forwards;
}