
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: #142019;
    color: #f1f1f1;
    line-height: 1.6;
    overflow-x: hidden;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #9bb7a4;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c88a4a;
}

.cta-offer {
    padding: 0.55rem 1.4rem;
    background: linear-gradient(
        135deg,
        #c88a4a,
        #d6b36a
    );
    color: #0b0f0c !important;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.05rem;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.cta-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}


.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#myVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px; 
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #0b0f0c 70% 
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 1000px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #f1f1f1;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease-out;
}


.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    transform: translateX(50px); 
    transition: all 0.8s ease-out;

}
.hero-col.left {
    transform: translateX(-50px); 
}

.hero-col h3 {
    font-size: 1.3rem;
    color: #f1f1f1;
}

.hero-col button {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #d6b36a;
    background: transparent;
    color: #f1f1f1;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-col button:hover {
    background: linear-gradient(135deg, #c88a4a, #d6b36a);
    color: #0b0f0c;
    transform: scale(1.05);
}


.poveste-section {
    padding: 80px 2rem;
    background: #0b0f0c;
    position: relative;
    overflow: hidden;
    margin-top: 0; 
}


.poveste-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.text-box {
    flex: 1 1 40%;
    background: rgba(25,45,33,0.85);
    padding: 40px;
    border-radius: 12px;
}

.titlu {
    font-size: 2.2rem;
    color: #f5f2ea;
    margin-bottom: 25px;
    position: relative;
}

.titlu::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, #c88a4a, #d6b36a);
    margin-top: 1rem;
}

.text-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #9bb7a4;
}


.slide-box {
    flex: 1 1 55%;
}

.slide-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    border: 2px solid #d6b36a;
    background: transparent;
    color: #f1f1f1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-btn:hover {
    background: linear-gradient(135deg, #c88a4a, #d6b36a);
    color: #0b0f0c;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }


.slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9bb7a4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #d6b36a;
}


.footer {
    background: #0b0f0c;
    color: #f5f2ea;
    padding: 30px 20px;
    font-size: 14px;
    text-align: center;
}
.footer-item a {
    color: #d6b36a;  
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-item a:hover {
    color: #c88a4a;
    text-decoration: underline;
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px; 
}

.footer-content .footer-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-item i {
    color: #d6b36a;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #B5B5B5;
    margin-top: 25px; 
}



@media (max-width: 1024px) {
    .poveste-container { flex-direction: column; gap: 30px; }
    .slide-container { height: 450px; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; margin-bottom: 1.5rem; }
    .hero-buttons { gap: 1rem; flex-direction: column; }
    .slide-container { height: 400px; }
    .slide-btn { width: 40px; height: 40px; font-size: 20px; }
}

@media (max-width: 576px) {
    .slide-container { height: 300px; }
    .text-box { padding: 20px; }
    .titlu { font-size: 1.6rem; text-align: center; }
    .footer-content { flex-direction: column; gap: 15px; }
}
@media (max-width: 768px) {
    nav {
        padding: 0.8rem 1.5rem; 
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .logo img {
        height: 35px; 
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px; 
    }
}

