* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', 'Dancing Script', cursive, serif;
    line-height: 1.6;
     background-color: #E6DDC6;
    color: #2E3325;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

.header {
    background-color: #6B5F4B;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
     text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #ecf0f1;
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 700;
}

.horizontal-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.horizontal-nav a {
     background-color: #6B5F4B;
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.horizontal-nav a:hover,
.horizontal-nav a.active {
    color: #ecf0f1;
    background:#9aa557;
    transform: translateY(-2px);
}

/* Main container - Flexbox sa vertikalnim izbornikom */
.main-container {
    display: flex;
    min-height: calc(100vh - 200px);
    max-width: 1400px;
    margin: 0 auto; 
    
}

/* Vertikalni izbornik */
.vertical-nav {
    width: 280px;
    height: 300px;
    background-color: #6B5F4B;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);

    padding: 2rem 1.5rem;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
}

.vertical-nav h3 {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #9aa557;
}

.vertical-nav ul {
    list-style: none;
}

.vertical-nav a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    padding: 1rem 1.2rem;
    margin-bottom: 0.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.vertical-nav a:hover {
    color: #ecf0f1;
    background:(#9aa557);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Glavni sadržaj */
.main-content {
    flex: 1;
    padding: 3rem 2rem;
    max-width: calc(100% - 300px);
}

/* Hero sekcija */
.hero {
    background: linear-gradient(135deg,#545b33, #7f8954 ), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23bdc3c7" width="1200" height="600"/><circle fill="%23ecf0f1" opacity="0.3" cx="300" cy="200" r="150"/><circle fill="%23bdc3c7" opacity="0.2" cx="900" cy="400" r="200"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    text-align: center;
    color: white;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: linear-gradient( 135deg,#545b33, #7f8954);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px  #7f8954;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px  #7f8954;
}

/* About sekcija */
.about {
    margin-bottom: 4rem;
}

.about h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: 	#c7d368;
    text-align: center;
    margin-bottom: 3rem;
}

.about-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-card {
    background:	#c7d368;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    min-width: 280px;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-card h3 {
    font-size: 1.8rem;
    color:#545b33 ;
    margin-bottom: 1rem;
}

/* Stats sekcija */
.stats {
    background:	#c7d368;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

/* Footer */
.footer {
    background:#545b33;
    color: #bdc3c7;
    padding: 2rem 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    color: #bdc3c7;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ecf0f1;
}

/* Responsive */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
    
    .vertical-nav {
        width: 100%;
        position: static;
        order: 2;
    }
    
    .main-content {
        max-width: 100%;
        padding: 2rem 1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .horizontal-nav ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }
}