html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    position: relative;
    color: #fff;
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.4);
    z-index: 100;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-title {
    font-family: Rhoza One;
    margin-left: 10px;
    font-size: 1.6rem;
    font-weight: bold;
}

.contact-btn {
    background-color: transparent;
    font-family: Roboto;
    font-size: 1rem;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.5rem 1rem;
    margin-right: 3vw;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background-color: #fff;
    color: #000;
}

.logo {
    height: 40px;
    width: auto;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Obsah */
.content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}


.bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 10;
    text-align: center;
    padding: 2rem 0;
}

.bottom-text {
    font-family: Rubik Mono One;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
    margin: 0 auto;
    max-width: 90%;
}


.main-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('vineyard.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 60px;
    box-sizing: border-box;
}

.coin-image {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 600px;
}
.coin-image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-box {
    position: absolute;
    top: 50%;
    right: 30%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    padding: 80px;
    border-radius: 5px;
    max-width: 450px;
    box-sizing: border-box;
    font-size: 1rem;
}

.info-box h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-box p {
    margin: 0.5rem 0;
    line-height: 1.4;
}

.info-box a {
    color: #fff;
    text-decoration: underline;
}

.info-box .icon {
    margin-right: 5px;
}

.home-link {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
}


/* Responsivita */
@media (max-width: 600px) {
    .coin-image {
        left: 5%;
        max-width: 200px;
    }

    .info-box {
        right: 5%;
        font-size: 0.9rem;
        padding: 10px;
        max-width: 200px;
    }

    .info-box h2 {
        font-size: 1.5rem;
    }
}

.icon {
    width: 5vh;
    height: 5vh;
    vertical-align: middle;
    margin-right: 5px;
}

p{
    padding-top:5px ;
    padding-bottom:5px ;
    font-size: 2vh;
}

/* Pre väčší text možná úprava veľkosti fontu podľa potreby */
/* Responsivita - napríklad pre menšie displeje */
@media (max-width: 600px) {
    .bottom-text {
        font-size: 1rem;
        padding: 1rem;
    }
}