/* Reset i osnovni stilovi */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header i navigacija */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b6b;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero sekcija */
.hero {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-logo {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff5252;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-content .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Glavni sadržaj */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Menu sekcija */
.menu {
    display: grid;
    gap: 2rem;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.menu-item-desc {
    color: #666;
    margin-bottom: 1.5rem;
}

.menu-item-btn {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.menu-item-btn:hover {
    background-color: #ff5252;
}

.menu-item-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 50%;
    aspect-ratio: 4/3;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Drinks sekcija */
.drinks {
    margin-top: 4rem;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin: 4rem 0 2rem;
    font-weight: 700;
}

.drinks-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.drinks-image {
    max-width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-text {
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
}

/* Product Details Page */
.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.product-image {
    padding: 2rem;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-price {
    font-size: 2rem;
    color: #ff6b6b;
    font-weight: 700;
    margin-bottom: 2rem;
}

.product-additional-info {
    margin-top: 2rem;
}

.product-additional-info h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.ingredients-list {
    list-style: none;
    margin-bottom: 2rem;
}

.ingredients-list li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.ingredients-list li:last-child {
    border-bottom: none;
}

.nutrition-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.nutrition-item {
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nutrition-item span:first-child {
    color: #666;
    font-weight: 500;
}

.nutrition-item span:last-child {
    color: #333;
    font-weight: 600;
}

.back-btn {
    display: inline-block;
    background-color: #333;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-btn:hover {
    background-color: #444;
}

/* Responzivni dizajn */
@media (max-width: 992px) {
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item-image {
        width: 100%;
        aspect-ratio: 16/9;
        margin-bottom: 2rem;
    }
    
    .menu-item-content {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .product-details {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 9;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        margin: 20px 0;
        font-size: 24px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .menu-item-title {
        font-size: 1.5rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-price {
        font-size: 1.8rem;
    }
    
    .nutrition-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .menu-item-content {
        padding: 1.5rem;
    }
}

/* About Page */
.about-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 2rem 0 1rem;
}

.about-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    margin-top: 1rem;
}

.features-list li {
    color: #666;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li:before {
    content: "•";
    color: #ff6b6b;
    position: absolute;
    left: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 2rem;
}

.about-logo {
    max-width: 100%;
    height: auto;
}

/* Contact Page */
.contact-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #ff5252;
}

/* Active nav link */
.nav-link.active {
    color: #ff6b6b;
    font-weight: 600;
}

@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-text h2,
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.social-calls {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-call-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.social-call-btn:hover {
    transform: translateY(-2px);
}

.social-call-btn img {
    width: 24px;
    height: 24px;
}

.social-call-btn.viber {
    background-color: #665CAC;
}

.social-call-btn.whatsapp {
    background-color: #25D366;
}

@media (max-width: 768px) {
    .social-calls {
        flex-direction: column;
    }
    
    .social-call-btn {
        justify-content: center;
    }
} 