/* Reset i osnovni stilovi */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #E64A19;
    --primary-dark-orange: #BF360C;
    --primary-light-orange: #FF5722;
    --accent-yellow: #FFB300;
    --accent-purple: #7B1FA2;
    --accent-green: #2E7D32;
    --text-dark: #212121;
    --text-light: #757575;
    --text-white: #FFFFFF;
    --background: #FFFFFF;
    --background-light: #FFF8F2;
    --background-gradient: linear-gradient(135deg, #E64A19 0%, #FF5722 100%);
    --hero-gradient: linear-gradient(135deg, #E64A19 0%, #FF5722 50%, #FF8A65 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.white-title {
    color: var(--text-white) !important;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(230, 74, 25, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h2 {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.cta-button {
    background: var(--primary-orange);
    color: var(--text-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark-orange);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--hero-gradient);
    color: var(--text-white);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    color: var(--accent-yellow);
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 179, 0, 0.5);
    background: #FFA000;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-orange);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-showcase {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transform: scale(1.1);
    z-index: 2;
    position: relative;
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.3) 0%, rgba(255, 179, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.hero-wave .shape-fill {
    fill: #FFF8F2;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--background-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(230, 74, 25, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.product-card.available::before {
    background: var(--accent-green);
}

.product-card.coming-soon::before {
    background: var(--primary-light-orange);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 74, 25, 0.15);
}

.product-card.coming-soon {
    opacity: 0.9;
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
    color: var(--text-white);
}

.available-badge {
    background: var(--accent-green);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.soon-badge {
    background: var(--primary-light-orange);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.product-image-container {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background: var(--background-light);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover .product-image-container {
    transform: scale(1.05);
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-variants {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: auto;
}

.variant {
    background: var(--background-light);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.variant:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.variant-name {
    display: block;
    font-weight: 700;
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.variant-details {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
}

.feature-item {
    background: var(--background-light);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-left: 3px solid var(--primary-orange);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--background-light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    border: 1px solid rgba(230, 74, 25, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 74, 25, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: var(--background-gradient);
    color: var(--text-white);
    text-align: center;
}

.partners-content {
    max-width: 800px;
    margin: 0 auto;
}

.partners-question {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

.partners-offer {
    font-size: 1.2rem;
    margin: 2.5rem 0;
    opacity: 0.95;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--background-light);
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-info {
    background: var(--background);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
    border: 1px solid rgba(230, 74, 25, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    width: 60px;
    text-align: center;
    color: var(--primary-orange);
}

.contact-details strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.1rem;
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-hours h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-hours p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Slider Section */
.slider-section {
    padding: 80px 0;
    background: var(--background);
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    padding: 40px;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 74, 25, 0.8);
    color: var(--text-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-light-orange);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
    border-top: 3px solid var(--primary-orange);
    width: 100%;
    margin-top: 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-brand p {
    color: #BDBDBD;
    font-size: 1rem;
    margin: 0;
}

.footer-copyright {
    color: #BDBDBD;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .product-showcase {
        width: 400px;
        height: 400px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .slider {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--background);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-showcase {
        width: 300px;
        height: 300px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        min-height: auto;
        padding: 2rem;
        margin: 0 10px;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-variants {
        flex-direction: column;
    }
    
    .contact-info {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .slider {
        height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-image-container {
        height: 180px;
        padding: 15px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .hero-container {
        padding: 100px 15px 120px;
    }
    
    .products, .benefits, .partners, .contact, .slider-section {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
  .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px;
    width: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    padding: 40px;
    flex-shrink: 0;
}
}