 *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    

header{
    background-color: 	#3b3b3b;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}


.hero{
    background-image: url(img/svj.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 120px;
    
}

.hero4{
    background-image: url(img/hero4.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 120px;
    
}
   
   
nav {
    width: 100%;
	height: 80px;
    padding: 20px 60px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeSlideDown 1.5s ease forwards;
}
nav .logo {
    font-size: 20px;
    color: white;
}
nav .nav-links {
    display: flex;
    gap: 30px;
}
nav .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: 
    color 0.3s ease,
    transform 0.8s ease;
}
nav .nav-links a:hover {
    color: wheat;
    transform: scale(1.2);
}


.svj{
    height: 100px;
    color: white;
    text-align: center;
    text-shadow: 0 0 5px #000, 0 0 10px #303030, 0 0 15px #000, 0 0 20px #303030, 0 0 35px #000;
}

#lambic{
    margin-top: 200px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 80px;
    
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.4s ease;
}


.hamburger.active span:nth-child(1){
    transform: rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2){
    opacity: 0;
}
.hamburger.active span:nth-child(3){
    transform: rotate(-45deg) translate(6px,-6px);
}




@media (max-width: 900px){
    .hamburger{
        display: flex;
    }

    .nav-links{
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: black;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.4s ease;
    }

    .nav-links.open{
        right: 0;
        background: rgba(0.2, 0, 0, 0.8);
        
    }

    nav .nav-links a {
        font-size: 20px;
        padding-bottom: 30px;
        
    }
}
	

#scrollTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 2000; 
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: none;
    transition: 0.3s ease, transform 0.2s ease;
}

#scrollTopBtn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    transform: scale(1.1);
}

.uvod {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 0 20px; 
    margin-bottom: 200px;
    
}

.uvodniTekst {
    max-width: 1000px; 
    padding: 40px 30px; 
    text-align: center;
    line-height: 1.2;
    font-size: 20px;
    color: #000;
   
	
}


@media (max-width: 900px) {
    .uvodniTekst {
        padding: 40px 30px; 
        width: 80%;
        max-width: 500px; 
        margin: 0 auto;
		text-align: center;
    }
}

.prednosti {
    padding: 100px 20px;
    background-image: url(img/inter.jpg);
    text-align: center;
	margin-bottom: 200px;
}
.prednosti h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 50px;
}


.prednosti-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}


.prednost {
    flex: 1 1 280px;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}





.prednost h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.prednost p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}


.prednost:hover {
   
    color: black;
  
}

.prednost:hover p {
    color: black;
}




@media (max-width: 900px) {
    .prednost {
        flex: 1 1 100%;
    }
    
   
    
    #int{
        width: 100%;
        max-width: 500px; 
        margin: 0 auto;
		text-align: center;
    }
}

#interier{
    width: 650px;
    height: auto;
    padding-top: 30px;
}

#eksterier{
    width: 700px;
    height: auto;
    padding-top: 30px;
}

@media (max-width:900px) {
     #interier{
        width: 400px;
    height: auto;
    padding-top: 30px;
    }
    
    #eksterier{
    width: 400px;
    height: auto;
    padding-top: 30px;
}
}

footer {
    margin-top: 200px;
    height: 300px;
    background: #111; 
    color: white;
    padding: 80px 20px;
    font-size: 14px;
    display: flex;
    justify-content: center;
     line-height: 1.7;
    text-align: center;
}





.hero2{
    background-image: url(img/motorce.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 120px;
    
}






.speci {
    padding: 120px 20px;
    background: #ffffff;
    text-align: center;
	margin-bottom: 200px;
}

.speci h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 50px;
}

.svj-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 130px;
}

.spec {
    flex: 1 1 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.spec img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.spec:hover img {
    transform: scale(1.03);
}

.spec h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.spec p {
    font-size: 16px;
    color: #555;
}




.gallery-hero {
    position: relative;
    padding: 200px 20px 120px 20px; 
    

    display: flex;
}


.gallery-hero .background-text {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 160px; 
    font-weight: 700;
    letter-spacing: 18px;
    color: rgba(0,0,0,0.08); 
    text-align: center;
    width: 1000px; 
}


.gallery-hero-text {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
     color: black;
}

.gallery-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #111;
    text-align: center;
    position: relative;
    transform: translateY(30px);
    animation: fadeSlideUp 1.2s ease forwards;
}






@media (max-width: 1000px) {

    .gallery-hero .background-text {
        font-size: 110px;
        line-height: 0.9;
        letter-spacing: 10px;
    }
    
    .gallery-hero-text h1 {
        font-size: 32px;
    }
}


@media (max-width: 600px) {

    .gallery-hero .background-text {
        font-size: 60px;
        letter-spacing: 0;
    }

    .gallery-hero-text p {
        font-size: 16px;
    }
    
    .gallery-hero-text h1 {
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .img1 {
        width: 280px;
        height: 240px;
    }
}

@media (max-width: 900px) {
    .img1 {
        width: 220px;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .img1 {
        width: 160px;
        height: 140px;
    }
}




.btn {
    bottom: 40px;
    right: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: 0.3s ease, transform 0.2s ease;
    margin-right: 20px;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    transform: scale(1.1);
}


#carousel-track {
    padding-left: 50px;
    margin-top: 150px;
}


.btn2 {
    padding-left: 50px;
    padding-top: 20px;
    position: center;
    margin-bottom: 200px;
    text-align: center;
}


.img1 {
    width: 330px;        
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

.modal {
        display: none; 
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        justify-content: center;
        align-items: center;
	z-index: 3;
      }

     .modal img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 15px #000;
}

.kodgal{
    color: black;
}




.lambo-filter {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
	margin-bottom: 200px;
	margin-top: 200px;
}

.filter-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 10px;
}

.filter-header p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.filter-buttons {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #111;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #444;
    color: orangered;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product {
    padding: 25px 20px;
    background-color: orangered;
    border-radius: 15px;
    min-width: 200px;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    color: white;
}

.product:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#search-input {
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 16px;
    width: 80%;
    max-width: 400px;
    
    border: 2px solid #111;
    outline: none;
    text-align: center;
}




#contactForm {
    
    max-width: 600px;
    margin: 100px auto 200px auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contactForm h2 {
    
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

#contactForm input,
#contactForm textarea {
    padding: 15px 20px;

    border: 2px solid #111;
    outline: none;
    font-size: 16px;
    font-family: sans-serif;
    transition: 0.3s ease;
    background: white;
}

#contactForm textarea {
   
    resize: none;
    min-height: 120px;
}

#contactForm input:focus,
#contactForm textarea:focus {

    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#contactForm button {
    margin-top: 10px;
    padding: 15px;
   
    border: 2px solid #111;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

#contactForm button:hover {
    background: #111;
    color: white;
    transform: scale(1.03);
}

.error {
    font-size: 14px;
    color: #c0392b;
    margin-top: -10px;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 600px) {
    #contactForm {
        width: 90%;
        padding: 40px 20px;
    }
}



.contact-section {
    margin-top: 300px;
    text-align: center;
	font-family: 'Playfair Display', serif;
	font-size: 30px;
    font-weight: 400;
}
