/* Review.css - Whisky Review Styling */

/* Reset und Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
    color: #f39c12;
}

/* Navigation */
nav {
    background: rgba(26, 26, 46, 0.95);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 3px solid #f39c12;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav a:hover {
    background: #f39c12;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

/* Container */
.review-container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Whisky Header Card */
.whisky-header {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    border-top: 6px solid #f39c12;
}

.whisky-image {
    text-align: center;
	padding-top: 50px;
}

.whisky-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.whisky-info h1 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.whisky-info h2 {
    font-size: 1.5rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quick-facts {
    display: grid;
    gap: 0.8rem;
}

.fact {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

.fact .label {
    font-weight: 600;
    color: #2c3e50;
}

.fact .value {
    color: #34495e;
}

/* Overall Rating */
.overall-rating {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.overall-rating h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rating-score {
    font-size: 4rem;
    font-weight: bold;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.rating-stars {
    font-size: 2rem;
    margin: 1rem 0;
}

.rating-text {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.95;
}

/* Review Content */
.review-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.review-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ecf0f1;
}

.review-section:last-child {
    border-bottom: none;
}

.review-section h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #34495e;
}

/* Rating Bars */
.rating-bar {
    background: #ecf0f1;
    border-radius: 25px;
    height: 40px;
    margin: 1rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.rating-fill {
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
    height: 100%;
    border-radius: 25px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
}

.rating-number {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    z-index: 1;
}

/* Aroma List */
.aroma-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.aroma-list li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-left: 4px solid #f39c12;
    border-radius: 5px;
}

.aroma-list li strong {
    color: #2c3e50;
}

/* Taste Profile */
.taste-profile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.taste-note h4 {
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.taste-meter {
    background: #ecf0f1;
    height: 25px;
    border-radius: 15px;
    overflow: hidden;
}

.taste-meter-fill {
    background: linear-gradient(90deg, #3498db 0%, #2980b9 100%);
    height: 100%;
    border-radius: 15px;
    transition: width 1s ease;
}

/* Highlight Sections */
.review-section.highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #f39c12;
}

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

.pros-list li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: white;
    border-left: 4px solid #27ae60;
    border-radius: 5px;
}

.pros-list li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.5rem;
}

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

.cons-list li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: white;
    border-left: 4px solid #e74c3c;
    border-radius: 5px;
}

.cons-list li:before {
    content: "✗ ";
    color: #e74c3c;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Recommendation Box */
.recommendation-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.recommendation-box p {
    color: white;
    margin-bottom: 0.8rem;
}

.recommendation-box strong {
    color: #f39c12;
}

/* Final Verdict */
.final-verdict {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.final-verdict h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.final-verdict p {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Detailed Scores */
.detailed-scores {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
}

.score-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.score-item.total {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border-left: 4px solid #f39c12;
    font-weight: bold;
    font-size: 1.2rem;
}

.score-label {
    font-weight: 600;
}

.score-value {
    color: #f39c12;
    font-weight: bold;
}

.score-item.total .score-value {
    color: #f39c12;
}

/* Reviewer Note */
.reviewer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
    text-align: center;
}

.reviewer-note p {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

footer p {
    margin: 0.5rem 0;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whisky-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .taste-profile {
        grid-template-columns: 1fr;
    }

    .whisky-info h1 {
        font-size: 2rem;
    }

    .rating-score {
        font-size: 3rem;
    }

    .review-content {
        padding: 1.5rem;
    }

    nav a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .review-container {
        padding: 0 1rem;
    }

    .whisky-header {
        padding: 1.5rem;
    }

    .logo {
        font-size: 2rem;
    }

    .whisky-info h1 {
        font-size: 1.5rem;
    }
}
