/* Garden Indian Restaurant - Report Page Stylesheet
   Author: [Your Name]
   Student ID: [Your ID]
*/

.report-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
                url('../images/TheGarden4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: var(--space-xxl);
    overflow: hidden;
}

.report-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.4)
    );
    z-index: 1;
}

.report-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--space-xl);
}

.report-hero h2 {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.report-hero .hero-subtitle {
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--neutral-200);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.report-content {
    padding: var(--space-xxl) 0;
    line-height: 1.7;
}

.report-section {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.report-section h3 {
    color: var(--primary);
    margin-bottom: var(--space-md);
    font-size: 1.8rem;
}

.report-section h4 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
    color: var(--text-dark);
}

.report-section p {
    margin-bottom: var(--space-md);
}

.report-section ul, 
.report-section ol {
    margin-bottom: var(--space-lg);
}

.report-section li {
    margin-bottom: var(--space-sm);
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin: var(--space-md) 0 var(--space-lg);
}

.color-swatch {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.color-swatch span {
    font-weight: bold;
    margin-bottom: var(--space-xs);
}

.color-swatch code {
    font-family: monospace;
    font-size: 0.9rem;
}

.primary-color {
    background-color: var(--primary);
}

.secondary-color {
    background-color: var(--secondary);
}

.accent-color {
    background-color: var(--accent);
}

.neutral-color {
    background-color: var(--background-alt);
    color: var(--text-dark);
}

pre {
    background-color: var(--neutral-800);
    color: var(--neutral-100);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: var(--space-md) 0 var(--space-lg);
    line-height: 1.5;
}

code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .report-hero {
        height: 550px;
        background-attachment: scroll;
    }

    .report-hero h2 {
        font-size: 3.5rem;
    }

    .report-hero .hero-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .report-hero {
        height: 450px;
    }

    .report-hero h2 {
        font-size: 2.8rem;
    }

    .report-hero .hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .report-hero {
        height: 400px;
    }

    .report-hero h2 {
        font-size: 2.2rem;
    }

    .report-hero .hero-subtitle {
        font-size: 1.2rem;
    }
} 