/* ECHO Brand Colors */
:root {
    --brand-green: #006f5e;
    --tan-background: #efe6d1;
    --dark-blue: #3c434c;
    --dusty-blue: #6b8c9e;
    --coral: #e27d60;
    --medium-brown: #a3a380;
}

/* Global Styles */
body {
    font-family: 'Open Sans', 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    background-color: var(--tan-background);
}

/* Header Styles */
header {
    padding: 1.5rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 60px;
}

.shopping-cart-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
}

.logo-container svg {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.logo-container svg .logo {
    fill: var(--tan-background);
}

/* Responsive logo sizing */
@media only screen and (max-width: 767px) {
    .logo-container svg {
        height: 48px;
        max-width: 160px;
    }
}

/* Main Content Styles */
main {
    min-height: 60vh;
}

.featured-section {
    background-color: white;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--brand-green);
    border-radius: 4px;
}

.featured-section h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.events-section {
    background-color: var(--tan-background);
    padding: 2rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #d4d4d4;
    border-radius: 4px;
}

.events-section h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    opacity: 0.95;
}

/* Footer Styles */
footer {
    color: white;
}

footer a {
    color: var(--dusty-blue);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--coral);
    text-decoration: none;
}

footer .ui.inverted.header {
    color: white;
}

/* Responsive Design */
@media only screen and (max-width: 767px) {
    header {
        padding: 1rem 0;
    }
    
    .logo-placeholder svg {
        width: 120px;
        height: 48px;
    }
    
    .featured-section {
        padding: 1.75rem;
    }
    
    .events-section {
        padding: 1.5rem;
    }
    
    footer {
        padding: 1.5rem 0 !important;
    }
    
    footer .column {
        margin-bottom: 1.5rem;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .featured-section {
        padding: 2rem;
    }
    
    .events-section {
        padding: 1.75rem;
    }
}

/* Product Cards */
.ui.cards {
    margin-top: 1.5rem;
}

.ui.card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ui.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ui.card .image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.ui.card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ui.card .header {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ui.card .description {
    color: #666;
    line-height: 1.5;
}

.ui.card .extra.content {
    border-top: 1px solid #e8e8e8;
}

.ui.card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand-green);
    margin-bottom: 0.5rem;
}

/* Utility Classes */
.ui.container {
    padding-left: 1rem;
    padding-right: 1rem;
}
