
    /*
    Theme Name: Daon Hanjeongsik
    Theme URI: http://example.com/daon-hanjeongsik
    Author: Your Name
    Author URI: http://example.com
    Description: A WordPress theme for Daon Hanjeongsik restaurant.
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Text Domain: daon-hanjeongsik
    */

    body {
        font-family: 'Noto Sans', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f4f4f9;
        color: #333;
    }

    header, footer {
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 20px 0;
    }

    .container {
        width: 80%;
        margin: 0 auto;
    }

    .hero {
        background-image: url('hero-image.jpg');
        background-size: cover;
        background-position: center;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .visitor-count {
        animation: blink 1s infinite;
    }

    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    .responsive {
        max-width: 100%;
        height: auto;
    }
    