/* =====================================
   居酒屋 音無 Ver1.0 Lite
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
        "Hiragino Sans",
        "Yu Gothic",
        sans-serif;

    background:#111;

    color:#f5f5f5;

    line-height:1.8;

}

/* ==========================
   Header
========================== */

header{

    background:#1b1b1b;

    text-align:center;

    padding:30px 20px;

    border-bottom:3px solid #d4af37;

    position:sticky;

    top:0;

}

.logo img{

    width:120px;

    margin-bottom:15px;

}

nav{

    margin-top:20px;

}

nav ul{

    list-style:none;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

nav a:hover{

    color:#d4af37;

}

/* ==========================
   Hero
========================== */

.hero{

    position:relative;

}

.hero img{

    width:100%;

    display:block;

}

.hero-text{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    background:rgba(0,0,0,.5);

    padding:25px;

    border-radius:10px;

}

.hero h1{

    font-size:2.6rem;

    color:#d4af37;

}

.hero p{

    margin-top:10px;

}

/* ==========================
   Section
========================== */

section{

    max-width:900px;

    margin:auto;

    padding:60px 20px;

}

section h2{

    color:#d4af37;

    margin-bottom:25px;

    text-align:center;

    border-bottom:2px solid #333;

    padding-bottom:10px;

}

/* ==========================
   Card
========================== */

.card{

    background:#1d1d1d;

    padding:20px;

    border-radius:10px;

    margin-bottom:20px;

    border-left:5px solid #d4af37;

    transition:.3s;

}

.card:hover{

    transform:translateY(-3px);

    background:#252525;

}

.card h3{

    margin-bottom:8px;

}

.card p{

    color:#d4af37;

}

/* ==========================
   Access
========================== */

#access p{

    text-align:center;

    margin-bottom:10px;

}

/* ==========================
   Info
========================== */

#info{

    text-align:center;

}

/* ==========================
   Footer
========================== */

footer{

    background:#0b0b0b;

    padding:40px 20px;

    text-align:center;

    border-top:3px solid #d4af37;

}

footer p{

    margin:15px 0;

}

#secretLink{

    color:#999;

    text-decoration:none;

    transition:.3s;

}

#secretLink:hover{

    color:#d4af37;

}

/* ==========================
   Responsive
========================== */

@media screen and (max-width:768px){

    nav ul{

        flex-direction:column;

        gap:12px;

    }

    .hero h1{

        font-size:2rem;

    }

    .hero p{

        font-size:.9rem;

    }

    .hero-text{

        width:90%;

        padding:15px;

    }

}