/* Wiener Dogs Page Custom Styles */

/* Hero Section */
.wiener-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main-title {
    font-size: 5rem;
    text-align: center;
    background: linear-gradient(45deg, var(--gold), #ff8c00, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: 1.8rem;
    text-align: center;
    margin: 1rem 0;
    opacity: 0.9;
}

.hero-tagline {
    text-align: center;
    margin-top: 2rem;
}

.rotating-text {
    font-size: 1.5rem;
    color: var(--accent);
    font-style: italic;
    display: inline-block;
    animation: pulse 2s infinite;
}

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

.floating-hotdogs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hotdog {
    position: absolute;
    font-size: 4rem;
    animation: hotdog-float 8s ease-in-out infinite;
    opacity: 0.6;
}

.hotdog:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.hotdog:nth-child(2) { top: 60%; left: 10%; animation-delay: 1.5s; }
.hotdog:nth-child(3) { top: 20%; right: 8%; animation-delay: 3s; }
.hotdog:nth-child(4) { bottom: 25%; right: 12%; animation-delay: 4.5s; }
.hotdog:nth-child(5) { bottom: 10%; left: 15%; animation-delay: 6s; }

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

/* History Section */
.history {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
}

.history-text h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.history-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.timeline-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Characteristics Section */
.characteristics {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.char-card {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--accent);
    transition: all 0.3s;
}

.char-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.3);
    border-color: var(--gold);
}

.char-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.char-card h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.char-card ul {
    list-style: none;
    padding: 0;
}

.char-card li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
}

.char-card li:last-child {
    border-bottom: none;
}

.char-card strong {
    color: var(--gold);
}

/* Types Section */
.types {
    background: rgba(0, 0, 0, 0.3);
}

.types-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.subsection-title {
    font-size: 2rem;
    color: var(--accent);
    margin: 3rem 0 2rem;
    text-align: center;
}

.size-grid,
.coat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.type-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(240, 147, 251, 0.3);
    transition: all 0.3s;
}

.type-card:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.type-emoji {
    font-size: 3rem;
}

.type-header h4 {
    font-size: 1.8rem;
    color: var(--accent);
}

.type-weight {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 1rem;
}

.type-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.type-tag,
.coat-example {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Famous Section */
.famous {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(10px);
}

.famous-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.famous-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.famous-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.famous-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.famous-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.famous-card p {
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Health Section */
.health {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
}

.health-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.health-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(240, 147, 251, 0.3);
    transition: all 0.3s;
}

.health-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.health-card.priority-high {
    border: 3px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.health-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.health-icon {
    font-size: 2.5rem;
}

.health-header h3 {
    color: var(--accent);
    font-size: 1.5rem;
}

.health-warning {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 0.8rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: bold;
}

.health-content ul {
    list-style: none;
    padding: 0;
}

.health-content li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.health-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.health-stat {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
}

.care-tips {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--accent);
    margin-top: 3rem;
}

.care-tips h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.tip-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.tip-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tip-box strong {
    color: var(--accent);
}

/* Why Awesome Section */
.why-awesome {
    background: rgba(0, 0, 0, 0.4);
}

.awesome-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
}

.awesome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.awesome-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.awesome-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.4);
}

.awesome-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.2);
    font-weight: bold;
}

.awesome-card h3 {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.awesome-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.bonus-awesome {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--gold);
}

.bonus-awesome h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.bonus-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.bonus-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

/* Fun Facts Section */
.fun-facts {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1), rgba(102, 126, 234, 0.1));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(240, 147, 251, 0.3);
    transition: all 0.3s;
    text-align: center;
}

.fact-card:hover {
    transform: rotate(2deg) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.fact-number {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fact-card h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.fact-card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Conclusion Section */
.conclusion {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    padding: 5rem 0;
}

.conclusion-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.conclusion-content h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.conclusion-text {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.conclusion-text strong {
    color: var(--gold);
    font-size: 1.4rem;
}

.conclusion-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .rotating-text {
        font-size: 1.2rem;
    }
    
    .characteristics-grid,
    .famous-grid,
    .health-grid,
    .awesome-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .hotdog {
        font-size: 2.5rem;
    }
    
    .conclusion-content h2 {
        font-size: 2rem;
    }
    
    .conclusion-text {
        font-size: 1.1rem;
    }
    
    .conclusion-cta {
        flex-direction: column;
    }
}