/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(180deg, #f9d71c 0%, #fcebb6 50%, #ffffff 100%);
    color: #2c1810;
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    padding: 2.5rem 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    border-bottom: 6px solid #2c1810;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: repeating-linear-gradient(
        90deg,
        #ffffff 0px,
        #ffffff 30px,
        #2c1810 30px,
        #2c1810 35px
    );
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-title {
    font-size: 3.5rem;
    color: #ffffff;
    text-shadow: 
        4px 4px 0 #2c1810,
        6px 6px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
}

.site-tagline {
    font-size: 1.3rem;
    color: #fcebb6;
    font-style: italic;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

/* Filter Bar */
.filter-bar {
    background: #2c1810;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-top: 3px solid #f9d71c;
    border-bottom: 3px solid #f9d71c;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.filter-label {
    color: #fcebb6;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.region-select {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: 3px solid #f9d71c;
    background: #ffffff;
    color: #2c1810;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.region-select:hover,
.region-select:focus {
    background: #f9d71c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    outline: none;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.intro-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 4px solid #e63946;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.intro-text {
    font-size: 1.25rem;
    color: #2c1810;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Section Headers */
.stars-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 4px solid #2c1810;
}

.star-rating-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 3px 3px 0 #2c1810;
    margin-bottom: 0.5rem;
}

.star-description {
    font-size: 1.1rem;
    color: #fcebb6;
    font-style: italic;
}

/* Restaurant Grid */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Footer */
.site-footer {
    background: #2c1810;
    color: #fcebb6;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
    border-top: 6px solid #e63946;
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}