* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}



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.3);
    animation: fadeSlideDown 1.5s ease forwards;
}
nav .logo {
    font-size: 20px;
    color: white;
}
nav .nav-links {
    display: flex;
    gap: 30px;
    list-style-type: none;
}

nav .nav-links li {
    list-style: none;
}

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);
}







.hero {
    height: 100vh;
    background-image: url(img/hero.jpg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 20px; 
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    top: 0;
    left: 0;
}

.hero-text {
    position: relative;
    z-index: 5;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1.7s ease forwards;
    max-width: 900px; 
}

.hero h1 {
    font-family: serif;
    font-size: 80px;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.hero p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}
.hero button {
    padding: 15px 45px;
    font-size: 1rem;
    border: 2px solid white;
    color: white;
    background: transparent;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s ease;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.5s;
	border-radius: 50px;
}
.hero button:hover {
    background: white;
    color: black;
}







@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}






.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: 70%;
        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, 0, 0, 0.9);
    }

    nav .nav-links a {
        font-size: 20px;
        padding-bottom: 30px;
    }
}
	
	
	.uvod {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 200px;
    padding: 0 20px; 
		margin-bottom: 200px;
}

.uvodniTekst {
    max-width: 1000px; 
    padding: 40px 30px; 
    text-align: left;
    line-height: 1.8;
    font-size: 20px;
    color: #000;
	border-left: 1px solid black; 
}


@media (max-width: 900px) {
    .uvodniTekst {
        border-left: none;
        border-top: 1px solid black; 
        padding: 40px 30px; 
        width: 80%;
        max-width: 500px; 
        margin: 0 auto;
		text-align: center;
    }
}
	
#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);
}








.prednosti {
    padding: 100px 20px;
    background: #f2f2f2;
    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-icon {
    width: 40px;
    height: 40px;
    background: #000;
    margin: 0 auto 20px auto;
    border-radius: 50%;
}


.prednost h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.prednost p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}


.prednost:hover {
    transform: scale(1.05) translateY(-5px);
    background: #000;
    color: white;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.prednost:hover p {
    color: #ddd;
}

.prednost:hover .prednost-icon {
    background: white;
}


@media (max-width: 900px) {
    .prednost {
        flex: 1 1 80%;
    }
}









.prica {
    padding: 150px 20px;
    background: #ffffff;
	margin-bottom: 200px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}


.studio-slika {
    flex: 1;
}

.studio-slika img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	transition: 0.6s ease
}


.studio-slika img:hover {
	transform: scale(1.03);
}


.studio-tekst {
    flex: 1;
}

.studio-tekst h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 30px;
	padding-left: 30px;
}

.studio-tekst p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
	padding-left: 30px;
}


@media (max-width: 900px) {
    .container {
        flex-direction: column;
        gap: 100px;
        text-align: center;
    }
}








.recenzije {
    padding: 180px 20px;
    background: #111;
    color: white;
	
margin-bottom: 200px;
}

.recenzije-header {
    text-align: center;
    margin-bottom: 100px;
}

.recenzije-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.linija {
    width: 80px;
    height: 2px;
    background: white;
    margin: 0 auto;
    opacity: 0.5;
}

.recenzije-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 150px;
}


.recenzija-slika {
    flex: 1;
}

.recenzija-slika img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(100%);
    transition: 0.6s ease;
}

.recenzija-slika img:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}


.tekst-blok {
    flex: 1;
    position: relative;
}

.quote-mark {
    font-size: 100px;
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
    position: absolute;
    top: -60px;
    left: -20px;
}

.tekst-blok p {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.tekst-blok span {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.7;
}


@media (max-width: 900px) {
    .recenzije-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .quote-mark {
        position: static;
        margin-bottom: 20px;
    }
}







.cta {
    padding: 150px 20px;
    background: #f2f2f2;
    color: #111; 
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
	margin-bottom: 200px;
}

.cta-text {
    max-width: 800px;
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.cta-text p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.cta-text button {
    padding: 16px 50px;
    font-size: 18px;
    border: 2px solid #111; 
    background: transparent;
    color: #111;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-text button:hover {
    background: #111;
    color: white;
    transform: scale(1.05);
}








.footer {
    background: #111; 
    color: #ccc;
    padding: 80px 20px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-copy {
    margin-top: 20px;
    opacity: 0.6;
}







.about-hero {
    position: relative;
    padding: 220px 20px 140px 20px;
    overflow: hidden;
	display: flex;
}


.background-text {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    font-weight: 700;
    letter-spacing: 20px;
    color: rgba(0,0,0,0.1);
    text-align: center;
    width: 1000px; 
}


.about-hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #111;
	
	opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1.2s ease forwards;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: #111;
    margin: 0 auto 30px auto;
	
	opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

.about-hero-text p {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
	
	opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

@media (max-width: 1000px) {

    .background-text {
        font-size: 120px;
        line-height: 0.9;
		letter-spacing: 10px;
    }
	
	.about-hero-text h1 {
		font-size: 35px;
	}
}


@media (max-width: 600px) {

    .background-text {
        font-size: 70px;
		letter-spacing: none;
    }


    .about-hero-text p {
        font-size: 18px;
    }
	
	.about-hero-text h1 {
		font-size: 25px;
	}

}









.about-story {
    padding: 150px 20px;
    background: #f2f2f2;
    text-align: center;
	margin-bottom: 200px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 40px;
}

.about-story p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}






.tim {
    padding: 120px 20px;
    background: #ffffff;
    text-align: center;
	margin-bottom: 200px;
}

.tim h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 50px;
}

.tim-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.tim-clan {
    flex: 1 1 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tim-clan img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.tim-clan:hover img {
    transform: scale(1.03);
}

.tim-clan h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.tim-clan p {
    font-size: 16px;
    color: #555;
}







.timeline {
    padding: 120px 20px;
    background: #f2f2f2;
    text-align: center;
	margin-bottom: 200px;
}

.timeline h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 50px;
}

.timeline-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.timeline-item {
    max-width: 200px;
    text-align: center;
}

.timeline-item .year {
    font-size: 50px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.timeline-item p {
    font-size: 16px;
    color: #555;
}








.studio-filter {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
	margin-bottom: 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: 50px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #111;
    color: white;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product {
    padding: 25px 20px;
    background: #f4f4f4;
    border-radius: 15px;
    min-width: 200px;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.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-radius: 50px;
    border: 2px solid #111;
    outline: none;
    text-align: center;
}








.gallery-hero {
    position: relative;
    padding: 200px 20px 120px 20px; 
    
    overflow: hidden;
    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;
}

.gallery-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #111;
    
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1.2s ease forwards;
}

.hero-divider {
    width: 50px; 
    height: 2px;
    background: #111;
    margin: 0 auto 25px auto;
    
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

.gallery-hero-text p {
    font-size: 18px;
    color: #555; 
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}


@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;
}



#contactForm {
    max-width: 600px;
    margin: 100px auto 200px auto;
    padding: 60px 40px;
    background: #f2f2f2;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    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-radius: 50px;
    border: 2px solid #111;
    outline: none;
    font-size: 16px;
    font-family: sans-serif;
    transition: 0.3s ease;
    background: white;
}

#contactForm textarea {
    border-radius: 20px;
    resize: none;
    min-height: 120px;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #555;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#contactForm button {
    margin-top: 10px;
    padding: 15px;
    border-radius: 50px;
    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 {
    text-align: center;
	font-family: 'Playfair Display', serif;
	font-size: 30px;
    font-weight: 400;
}
