/* 🍞 NEPOZNAM.COM - Uradni Stylesheet Toasterologije 🔥 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    background: 
        radial-gradient(circle at 20% 30%, #ffe4b5 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, #ffd700 0%, transparent 50%),
        linear-gradient(135deg, #fff5e1 0%, #ffe0b2 100%);
    color: #3d2817;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Opozorilna pasica na vrhu */
.warning-banner {
    background: repeating-linear-gradient(
        45deg,
        #ff0000,
        #ff0000 20px,
        #ffdd00 20px,
        #ffdd00 40px
    );
    color: white;
    font-weight: bold;
    padding: 8px 0;
    font-size: 1.1rem;
    text-shadow: 2px 2px 0 #000;
    border-bottom: 4px dashed #000;
}

/* HERO SEKCIJA */
.hero-section {
    text-align: center;
    padding: 40px 20px 60px;
    background: 
        linear-gradient(180deg, rgba(255,215,0,0.3) 0%, rgba(255,140,0,0.3) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(139,69,19,0.05) 40px, rgba(139,69,19,0.05) 41px);
    border-bottom: 6px double #8b4513;
    position: relative;
}

.url-bar-fake {
    background: #fff;
    border: 2px solid #888;
    border-radius: 25px;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 30px;
    font-family: 'Courier New', monospace;
    box-shadow: 0 4px 0 #333;
    max-width: 90%;
    overflow: hidden;
}

.url-prefix { color: #4caf50; }
.url-highlight {
    background: yellow;
    color: red;
    font-weight: bold;
    padding: 2px 6px;
    font-size: 1.2rem;
    animation: blink 1s infinite;
}
.url-suffix { color: #666; }

@keyframes blink {
    50% { background: #ff0; transform: scale(1.05); }
}

.mega-title {
    font-family: 'Bungee', cursive;
    font-size: clamp(2rem, 6vw, 4.5rem);
    color: #8b4513;
    text-shadow: 
        4px 4px 0 #ff8c00,
        8px 8px 0 #ffd700,
        12px 12px 20px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    line-height: 1.1;
    transform: rotate(-2deg);
    animation: wobble 4s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.subtitle {
    font-size: 1.5rem;
    color: #6b3410;
    font-weight: bold;
    margin-bottom: 10px;
}

.established {
    font-style: italic;
    color: #888;
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.badge {
    background: #fff;
    border: 3px dashed #ff8c00;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 3px 3px 0 #8b4513;
    transition: transform 0.2s;
}

.badge:hover {
    transform: rotate(3deg) scale(1.1);
}

.hero-toast {
    width: 300px;
    max-width: 80%;
    border-radius: 50%;
    border: 8px solid #8b4513;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-top: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* NAVIGACIJA */
.nav-bar {
    background: #3d2817;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid #ffd700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav-bar a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 14px;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-bar a:hover {
    background: #ffd700;
    color: #3d2817;
    border-color: #fff;
    transform: scale(1.1) rotate(-3deg);
}

/* ŠTUDIJA SEKCIJE */
.study-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #fffef5;
    border: 4px solid #8b4513;
    border-radius: 15px;
    box-shadow: 10px 10px 0 #ffd700, 10px 10px 0 4px #8b4513;
    position: relative;
}

.study-section::before {
    content: "📄";
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 3rem;
    background: #fffef5;
    padding: 0 10px;
}

.section-title {
    font-family: 'Bungee', cursive;
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px dashed #ff8c00;
    padding-bottom: 15px;
}

.study-content p {
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.abstract {
    background: #ffd70040;
    padding: 15px;
    border-left: 6px solid #ff8c00;
    font-style: italic;
    margin-bottom: 25px !important;
}

.fake-quote {
    background: linear-gradient(135deg, #fff9c4, #ffe082);
    border-left: 8px solid #8b4513;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 15px 15px 0;
    position: relative;
}

.fake-quote::before {
    content: "💬";
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
}

.fake-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #5d3a1a;
}

.fake-quote cite {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-weight: bold;
    color: #8b4513;
}

.fancy-list {
    list-style: none;
    padding-left: 0;
}

.fancy-list li {
    padding: 10px 15px;
    margin: 8px 0;
    background: #fff;
    border-left: 5px solid #ff8c00;
    border-radius: 0 10px 10px 0;
    position: relative;
    padding-left: 40px;
}

.fancy-list li::before {
    content: "🍞";
    position: absolute;
    left: 10px;
}

.tiny-text {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

.timeline {
    margin: 25px 0;
}

.timeline-item {
    background: #fff;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 10px;
    border: 2px dashed #8b4513;
    transition: all 0.3s;
}

.timeline-item:hover {
    background: #ffd700;
    transform: translateX(10px);
}

/* MIKROVALOVKE */
.microwave-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    border: 6px solid #000;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.microwave-samsung {
    background: linear-gradient(135deg, #1428a0 0%, #4169e1 100%);
}

.microwave-lg {
    background: linear-gradient(135deg, #a50034 0%, #ff1744 100%);
}

.microwave-gorenje {
    background: linear-gradient(135deg, #006633 0%, #00a651 100%);
}

.microwave-section h2 {
    font-family: 'Bungee', cursive;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.weird-text {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.microwave-box {
    background: #2c2c2c;
    border: 8px solid #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    margin: 25px auto;
    max-width: 400px;
    box-shadow: 
        inset 0 0 20px rgba(0,0,0,0.5),
        0 10px 30px rgba(0,0,0,0.5);
}

.microwave-brand {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.microwave-display {
    background: #000;
    color: #00ff00;
    font-family: 'Press Start 2P', monospace;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: inset 0 0 15px rgba(0,255,0,0.3);
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    95% { opacity: 1; }
    97% { opacity: 0.7; }
    98% { opacity: 1; }
}

.microwave-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.microwave-buttons button {
    padding: 12px;
    background: #555;
    color: white;
    border: 2px solid #777;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    transition: all 0.2s;
}

.microwave-buttons button:hover {
    background: #ffd700;
    color: #000;
    transform: scale(1.1);
}

.microwave-tagline {
    color: #ffd700;
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 15px;
}

.microwave-section > p:last-child {
    margin-top: 20px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* GALERIJA KRUHA */
.bread-gallery {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    background: 
        repeating-linear-gradient(45deg, #fff9c4, #fff9c4 20px, #ffecb3 20px, #ffecb3 40px);
    border: 6px dashed #8b4513;
    border-radius: 20px;
}

.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-style: italic;
    color: #6b3410;
}

.bread-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.bread-card {
    background: #fff;
    border: 4px solid #8b4513;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 5px 5px 0 #ff8c00;
}

.bread-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 8px 12px 0 #ff8c00;
}

.bread-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 3px dashed #ff8c00;
}

.bread-card figcaption {
    padding: 15px;
    text-align: center;
    font-size: 1rem;
}

.bread-card figcaption strong {
    color: #8b4513;
    font-size: 1.1rem;
}

.bread-card figcaption small {
    color: #888;
    font-style: italic;
}

/* EMOCIJE TOASTERJA */
.emotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.emotion {
    background: linear-gradient(135deg, #fff, #ffe0b2);
    padding: 20px 10px;
    text-align: center;
    border-radius: 15px;
    border: 3px solid #8b4513;
    font-size: 2.5rem;
    transition: transform 0.3s;
}

.emotion:hover {
    transform: scale(1.1) rotate(5deg);
}

.emotion span {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #8b4513;
    margin-top: 8px;
}

/* VS BATTLE */
.vs-battle {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin: 30px 0;
}

.fighter {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 4px solid #8b4513;
    text-align: center;
}

.toaster-fighter {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.microwave-fighter {
    background: linear-gradient(135deg, #b0bec5, #78909c);
    color: white;
}

.fighter-icon {
    font-size: 5rem;
    margin-bottom: 10px;
}

.fighter h3 {
    font-family: 'Bungee', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fighter ul {
    list-style: none;
    text-align: left;
}

.fighter ul li {
    padding: 5px 0;
    font-weight: bold;
}

.vs-text {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    color: red;
    text-shadow: 3px 3px 0 #000;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.battle-conclusion {
    text-align: center;
    font-size: 1.5rem;
    padding: 20px;
    background: #ffd700;
    border-radius: 15px;
    border: 4px dashed #8b4513;
}

/* ZAKLJUČEK */
.conclusion-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, #fff9c4 0%, #ffd54f 100%);
    border: 6px double #8b4513;
    border-radius: 20px;
    text-align: center;
}

.big-conclusion {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.final-answer {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #8b4513;
    margin: 25px 0;
    font-size: 1.4rem;
}

.final-answer p {
    margin: 10px 0 !important;
}

.thanks {
    margin-top: 30px;
    text-align: left;
    background: rgba(255,255,255,0.6);
    padding: 20px;
    border-radius: 15px;
}

/* FOOTER */
.footer {
    background: #3d2817;
    color: #ffd700;
    padding: 40px 20px;
    text-align: center;
    border-top: 6px solid #ffd700;
    margin-top: 60px;
}

.footer p {
    margin: 8px 0;
}

.footer .tiny-text {
    color: #999;
    margin-top: 15px;
}

.footer-breads {
    font-size: 2rem;
    margin-top: 20px;
    letter-spacing: 10px;
    animation: scroll-breads 20s linear infinite;
}

@keyframes scroll-breads {
    0% { letter-spacing: 10px; }
    50% { letter-spacing: 20px; }
    100% { letter-spacing: 10px; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mega-title {
        font-size: 2rem;
    }
    
    .study-section,
    .microwave-section,
    .conclusion-section {
        padding: 25px 15px;
        margin: 30px 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .vs-battle {
        grid-template-columns: 1fr;
    }
    
    .vs-text {
        font-size: 2rem;
    }
    
    .nav-bar {
        gap: 8px;
        font-size: 0.85rem;
    }
    
    .nav-bar a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .bread-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
