/* Banner Core Styles - Shared across all devices */

.banner-container {
    width: 100%;
    max-width: 800px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #87CEEB 0%, #87CEEB 50%, #90EE90 50%, #7CB342 100%);
    position: relative;
    overflow: hidden;
    border: none; /* No border - seamless look */
}

/* City skyline in background */
.city {
    position: absolute;
    bottom: 80px;
    left: 3%;
    opacity: 0.3;
}

.building {
    fill: #4a4a4a;
    stroke: #333;
    stroke-width: 1;
}

/* Hill/knoll */
.hill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
}

/* Grass details */
.grass-blade {
    stroke: #2E7D32;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
}

/* Rabbit - base styles */
.rabbit {
    position: absolute;
    bottom: 50px;
    left: 55%;
    z-index: 10;
}

.rabbit-body {
    fill: #D2B48C;
    stroke: #8B7355;
    stroke-width: 1.5;
}

.rabbit-ear {
    fill: #D2B48C;
    stroke: #8B7355;
    stroke-width: 1.5;
}

.rabbit-ear-inner {
    fill: #FFB6C1;
    stroke: none;
}

.rabbit-eye {
    fill: #1a1a1a;
}

.rabbit-nose {
    fill: #FF69B4;
}

.rabbit-jacket {
    fill: #4169E1;
    stroke: #1E3A8A;
    stroke-width: 1;
}

/* Text elements */
.banner-text {
    position: absolute;
    top: 10px;
    right: 3%;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
    font-family: 'Georgia', serif;
    line-height: 1.2;
}

.banner-byline {
    position: absolute;
    bottom: 20px;
    left: 3%;
    font-size: 16px;
    font-style: italic;
    color: #555;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.8);
    font-family: 'Georgia', serif;
    z-index: 15;
}

/* Visibility classes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}