@font-face{
font-family:Dana;
src:url("dana-regular.woff") format("woff");
font-weight:400;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Dana;
background:#f3f4f6;
padding:10px;
}

.container{
max-width:480px;
margin:auto;
}

/* logo */

.logo-section{
text-align:center;
margin-bottom:25px;
}

.logo{
width:150px;
margin-bottom:0px;
margin-top: 15px;
}
.description-box{
display:flex;
gap:10px;
margin-top:12px;
}

.info-card{
flex:1;
background:white;
border:1px solid #e5e7eb;
padding:16px;
text-align:center;
transition:.2s;
}

.info-card:hover{
border-color:#d1d5db;
box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.info-icon{
font-size:28px;
margin-bottom:8px;
filter:grayscale(1);
opacity:0.7;
}

.info-card p{
font-size:12px;
line-height:1.6;
color:#555;
}

@media(max-width:400px){
.description-box{
flex-direction:column;
}
}

/* links */

.links-section{
display:flex;
flex-direction:column;
gap:10px;
margin-bottom:25px;
}

.link-box{
display:flex;
justify-content:space-between;
align-items:center;
background:white;
padding:14px 16px;
text-decoration:none;
color:#222;
border:1px solid #e5e7eb;
transition:.2s;
}

.link-box:hover{
background:#fafafa;
}

/* contact */

.contact-section{
display:flex;
flex-direction:column;
gap:8px;
margin-bottom:30px;
}

.contact-description-box{
background:white;
border:1px solid #e5e7eb;
padding:16px;
margin-bottom:10px;
}

.contact-description{
font-size:13px;
line-height:1.8;
color:#555;
text-align:center;
}

.contact-box{
display:flex;
justify-content:space-between;
align-items:center;
background:white;
padding:12px 16px;
text-decoration:none;
color:#333;
border:1px solid #e5e7eb;
}

.arrow{
font-size:18px;
opacity:.7;
}

/* gallery */

.gallery-section{
margin-bottom:25px;
}

.gallery-title{
font-size:16px;
font-weight:400;
color:#222;
text-align:center;
margin-bottom:15px;
}

.gallery-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
margin-bottom:15px;
}

.thumb{
display:block;
background:white;
border:1px solid #e5e7eb;
overflow:hidden;
position:relative;
cursor:pointer;
}

.thumb img{
width:100%;
height:100%;
aspect-ratio:1/1;
object-fit:cover;
transition:.3s;
}

.thumb:hover img{
transform:scale(1.05);
}

.thumb-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
background:rgba(0,0,0,.6);
color:white;
padding:8px;
text-align:center;
font-size:13px;
}

.category-info{
background:white;
border:1px solid #e5e7eb;
padding:20px;
text-align:center;
}

.category-title{
font-size:16px;
font-weight:400;
color:#222;
margin-bottom:10px;
}

.category-description{
font-size:13px;
line-height:1.8;
color:#666;
margin-bottom:15px;
}

.category-link{
display:inline-block;
color:#222;
text-decoration:none;
font-size:14px;
padding:8px 16px;
border:1px solid #e5e7eb;
transition:.2s;
}

.category-link:hover{
background:#fafafa;
}

/* footer */

.footer{
text-align:center;
font-size:11px;
color:#888;
padding-bottom: 10px;
}

.link-box.highlight {
    background: #e0f2fe;
    border: 2px solid #0ea5e9;
}

.link-box.highlight:hover {
    background: #bae6fd;
}
.link-box.highlight {
    background: #e0f2fe;
    border: 1px solid #bae6fd;
}

.link-box.highlight:hover {
    background: #bae6fd;
}

.link-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.main-text {
    font-size: 16px;
    font-weight: 500;
}

.hint-text {
    font-size: 12px;
    color: #1e40af;
    line-height: 1.4;
    margin-top: 4px;
}
