.announcement-banner {
    background-color: #5c4033; /* Rich brown from your theme */
    color: #d4a373; /* Warm terracotta from your theme */
    text-align: center;
    padding: 6px 20px; /* Reduced from 10px to 6px */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.announcement-banner p {
    margin: 0;
    font-size: 12px; /* Reduced from 14px */
    line-height: 1.3; /* Reduced from 1.4 */
    font-weight: 400;
}

.announcement-banner a {
    color: #d4a373; /* Warm terracotta */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.announcement-banner a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.announcement-banner .instagram {
    color: #d4a373; /* Warm terracotta */
}

.announcement-banner .instagram:hover {
    opacity: 0.9;
}

/* Adjust main content to account for banner height */
.home-container {
    padding-top: 36px; /* Reduced from 45px for better alignment */
    margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .announcement-banner {
        padding: 4px 15px; /* Reduced padding for mobile */
    }
    
    .announcement-banner p {
        font-size: 11px; /* Smaller font for mobile */
    }
    
    .home-container {
        padding-top: 32px; /* Adjusted for mobile */
        margin-top: 0;
    }
} 