/*
Theme Name: Adult Link Dump
Author: ALD
Version: 1.0
*/

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

body{
background:#e6e6e6;
color:#000;
font-family:'Archivo', sans-serif;
font-size:20px;
line-height:1.5;
}

/* Layout */

.site-container{
width:48%;
max-width:900px;
margin:60px auto;
}

/* HEADER */

.site-header{
margin-bottom:60px;
border-bottom:4px solid #000;
padding-bottom:20px;
}

.site-title{
font-size:clamp(48px, 8vw, 110px);
font-weight:900;
letter-spacing:-2px;
line-height:0.9;
text-transform:uppercase;
text-align: center;
}

.site-title a {
  text-decoration: none !important;
  color: inherit; /* optional: makes the link use the h1 color */
}

.site-title a:hover {
  text-decoration: none !important; /* keep it off on hover */
}


/* NAV */

.main-menu{
display:flex;
flex-wrap:wrap;
list-style:none;
margin-top:25px;
border-top:2px solid #000;
border-bottom:2px solid #000;
}

.main-menu li{
border-right:2px solid #000;
}

.main-menu li:first-child{
border-left:2px solid #000;
}

.main-menu a{
display:block;
padding:12px 18px;
text-decoration:none;
color:#000;
font-weight:700;
font-size:13px;
text-transform:uppercase;
letter-spacing:1px;
}

.main-menu a:hover{
background:#000;
color:#fff;
}

/* GRID */

.posts-grid{
display:grid;
grid-template-columns:1fr;
gap:50px;
}

/* POST */

.post-item{
display:flex;
flex-direction:column;
gap:12px;
}

/* IMAGE */

.post-thumb{
width:100%;
aspect-ratio:4/3;
overflow:hidden;
border:2px solid #000;
}

.post-thumb img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:transform 0.4s ease;
}

/* 🔥 IMAGE HOVER ZOOM */

.post-thumb:hover img{
transform:scale(1.08);
}

/* TITLE */

.post-title{
font-size:clamp(28px, 4vw, 52px);
font-weight:900;
line-height:1;
margin:10px 0;
text-transform:uppercase;
}

.post-title a{
text-decoration:none;
color:#000;
}

.post-title a:hover{
text-decoration:underline;
}

/* EXCERPT */

.post-excerpt{
font-size:16px;
color:#000;
}

/* CONTENT (single post) */

.entry-content{
margin-top:40px;
}

/* 🔥 BIG BRUTAL HEADINGS */

/* 🔥 BRUTAL HEADINGS (FIXED) */

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading{
font-family:'Archivo', sans-serif !important;
font-weight:900 !important;
text-transform:uppercase !important;
letter-spacing:-1px;
line-height:1.1;
margin:50px 0 20px;
}

/* Size scale */

h1{
font-size:clamp(42px, 6vw, 90px);
}

h2,
.wp-block-heading{
font-size:clamp(34px, 5vw, 70px);
}

h3{
font-size:clamp(28px, 4vw, 54px);
}

h4{
font-size:26px;
}

h5{
font-size:22px;
}

h6{
font-size:18px;
}

.entry-content p{
margin-bottom:20px;
font-size:18px;
}

/* CATEGORIES */

.post-categories{
margin-top:25px;
display:flex;
flex-wrap:wrap;
gap:12px;
max-width:80%;
}

.post-categories a{
display:inline-block;
padding:8px 14px;
border:2px solid #000;
text-decoration:none;
color:#000;
font-size:12px;
font-weight:700;
text-transform:uppercase;
letter-spacing:0.5px;
}

.post-categories a:hover{
background:#000;
color:#fff;
}

/* LINKS */

a{
color:#000;
}

/* PAGINATION */

.pagination{
margin-top:80px;
display:flex;
gap:10px;
flex-wrap:wrap;
}

.page-numbers{
padding:10px 16px;
border:2px solid #000;
text-decoration:none;
color:#000;
font-weight:700;
}

.page-numbers:hover{
background:#000;
color:#fff;
}

.page-numbers.current{
background:#000;
color:#fff;
}

/* FOOTER */

.site-footer{
margin-top:100px;
padding-top:20px;
border-top:4px solid #000;
font-size:14px;
}

/* BUTTONS */

button,
input[type="submit"],
.wp-block-button__link{
background:#000;
color:#fff;
border:none;
padding:12px 20px;
font-weight:700;
text-transform:uppercase;
}

button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover{
opacity:0.8;
}

/* SEARCH WRAPPER */

.search-box{
margin:60px 0;
}

/* FORM */

.search-form{
display:flex;
width:100%;
}

/* INPUT */

.search-field{
flex:1;
padding:18px 20px;
font-family:'Archivo', sans-serif;
font-size:18px;
font-weight:700;
border:3px solid #000;
background:#fff;
color:#000;
outline:none;
}

/* Placeholder */

.search-field::placeholder{
color:#777;
font-weight:500;
text-transform:uppercase;
}

/* 🔥 FOCUS STATE */

.search-field:focus{
background:#000;
color:#fff;
}

/* BUTTON */

.search-submit{
padding:18px 24px;
border:3px solid #000;
border-left:none;
background:#000;
color:#fff;
font-family:'Archivo', sans-serif;
font-weight:900;
text-transform:uppercase;
cursor:pointer;
}

/* HOVER */

.search-submit:hover{
background:#fff;
color:#000;
}

/* 🔥 FORCE SQUARE BUTTONS */

.wp-block-button__link,
.wp-element-button,
button,
input[type="submit"],
input[type="button"]{
border-radius:0 !important;
margin-bottom: 2rem;
}