
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: #f0e8b4;	
}
.parallax {
/* The image used */
background-image: url(images/drone.jpg);

/* Set a specific height */
height: 200px;

/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.parallaxa {
/* The image used */
background-image: url(images/niceone.jpg);

/* Set a specific height */
height: 400px;

/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: left;
background-repeat: no-repeat;
background-size: cover;
}
html{
scroll-behavior: smooth;
}
header {
    background-color: #6b1e1b;
    color: white;
    padding: 1rem;
    text-align: center;
}
nav {
display: flex;
align-items: center;
justify-content: center;
background-color: white;
padding: 0.2rem;
position: sticky;
top: 0;
z-index: 1000;
}
nav a {
color: #8b2b28;
margin: 0 1rem;
text-decoration: none;
font-weight: bold;
cursor: pointer;
}
nav a:hover {
text-decoration: underline;
}
.container {
max-width: 1485px;
margin: 2rem auto;
padding: 1rem;
color: white;
background-color: rgb(0, 0, 0);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section {
padding: 5rem 5rem;
text-align: center;
}

.preshop{
max-width: fit-content;
margin: 2rem auto;
padding: 1 rem;
background-color: #1c1c1c;
flex: 1 10px;
color: white;
}

.section2 {
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;
}

.background {
position: absolute;
width: 100%;
height: 100%;
background: url(images/vinograd.jpg) center/cover no-repeat;
animation: blurEffect 2s ease-in forwards;
}

.logo {
position: absolute;
top: 50%;
left: 54%;
transform: translate(-50%, -50%);
opacity: 0;
width: 1500px; /* Podesite veličinu loga prema potrebi */
animation: fadeInLogo 0.7s ease-in-out 0.7s forwards;
}

@keyframes blurEffect {
0% {
    filter: blur(0px);
    }
    100% {
        filter: blur(10px);
    }
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


.column {
float: left;
padding: 1rem 0;
color: white;
background-color: black;
width: 50%;
}

/* Clear floats after the columns */
.row {
content: "";
display: flex;
clear: both;
}
.shopify {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.shopify iframe {
    max-width: 100%;
}
img{
max-width: 100%;
height: auto;
}

footer {
    background-color: #1c1c1c;
    color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1 1 30px;
    margin: 15px;
}

.footer-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-section p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    margin-top: 20px;
}
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.5s ease;
}

.social-icons img:hover {
    transform: scale(1.5);
}
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin: 15px 0;
    }

    .footer-section h2 {
        font-size: 18px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 15px;
    }

    .social-icons {
        justify-content: center;
    }
}