/* ================= FONT IMPORT ================= */
@font-face {
  font-family: 'TattooShop';
  src: url('fonts/ModernPrestige.otf') format('opentype');
}

body{
font-family:'TattooShop';
background:#0a0a0a;
color:white;
}

h1,h2,h3{
font-family: 'TattooShop', cursive;
letter-spacing:2px;
text-shadow:0 0 8px rgba(230,57,70,0.6);
}


/* HERO */

.about-hero{
padding:120px 10%;
text-align:center;
background:#050505;
}

.about-hero h2{
font-size:40px;
margin-bottom:10px;
color:#e63946;
text-shadow:0 0 10px red;
}

.about-hero p{
color:#aaa;
font-size:18px;
}


/* ================= STORY SECTION (UPDATED CLEAN) ================= */

.about-story{
padding:100px 10%;
background:#0a0a0a;
display:flex;
flex-direction:column;
gap:50px;
text-align:center;
}

.story-block h2{
color:#e63946;
margin-bottom:15px;
text-shadow:0 0 10px rgba(230,57,70,0.6);
}

.story-block p{
max-width:700px;
margin:auto;
color:#ccc;
line-height:1.7;
}


/* PHILOSOPHY */

.philosophy{
padding:80px 10%;
text-align:center;
background:#050505;
max-width:900px;
margin:auto;
}

.philosophy h2{
font-size:32px;
margin-bottom:20px;
color:#e63946;
text-shadow:0 0 10px red;
}

.philosophy p{
line-height:1.7;
color:#bbb;
margin-bottom:15px;
}


/* VISIT */

.visit{
padding:100px 10%;
text-align:center;
background:#111;
}

.visit h2{
color:#e63946;
text-shadow:0 0 10px red;
}

.visit p{
margin-top:10px;
margin-bottom:25px;
color:#bbb;
}

.visit-btn{
display:inline-block;
padding:12px 28px;
background:#e63946;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:bold;
transition:.3s;
}

.visit-btn:hover{
background:#ff4d5a;
transform:translateY(-2px);
box-shadow:0 0 10px red;
}