* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}

:root {
    --brand-black: #111111;
    --brand-red: #b91c1c;
    --light-gray: #e5e5e5;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #ddd;
    color: #111;
    line-height: 1.6;
}

header {
    background-color: #111;
    color: #ddd;
    padding: 30px 20px;
    text-align: center;
}

header h1 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

header p {
    font-size: 16px;
    margin-top: 5px;
}

nav ul {
    list-style: none;
    margin-top: 20px;
}

nav li {
    display: inline-block;
    margin: 0 10px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: var(--brand-red);
}

main {
    max-width: 1100px;
    margin: 40px auto;
    padding: 60px 15%;
    background-color: var(--light-gray);
}

h1, h2, h3 {
    margin-bottom: 15px;
}

main h2 {
    display: inline-block;
    background-color: var(--brand-black);
    color: white;
    padding: 12px 22px;
    border-left: 8px solid var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

main p {
    border-left: 5px solid var(--brand-red);
    padding-left: 18px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.project-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}

.project-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 35px 0;
}

.project-tile {
    position: relative;
    height: 230px;
    border: none;
    overflow: hidden;
    background: var(--brand-black);
    color: var(--brand-black);
    cursor: pointer;
}

.project-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.75;
    transition: 0.3s;
    filter: grayscale(15%);
    
}

.project-tile span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 17, 0.75);
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: 0.3s;
    border-bottom: 8px solid var(--brand-red);
}

.project-tile:hover {
    box-shadow: 0 0 18px rgba(255,255,255,0.15);
}


.project-tile:hover img {
    transform: scale(1.08);
    opacity: 0.45;
     filter: grayscale(0%);
}

.project-tile:hover span {
    opacity: 1;
}

.project-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.project-images img {
    width: 100%;
    height: auto;
    display: block;
}

.project-card p {
    font-size: 14px;
    margin-bottom: 8px;
}

footer {
    text-align: center;
    background: #111;
    color: white;
    padding: 20px;
    margin-top: 60px;
}

.footer-contact p {
    font-size: 15px;
}

footer p {
    line-height: 1.8;
}

.campaign-buttons {
    margin: 20px 0 30px;
}

.campaign-buttons a {
    display: inline-block;
    padding: 8px 14px;
    margin: 5px 5px 5px 0;
    background: #111;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.campaign-buttons a:hover {
    background: #444;
}

section[id] {
    margin-top: 40px;
}

.campaign {
    display: none;
}

.campaign.active {
    display: block;
}

.hero{
    text-align:center;
    padding:80px 20px;
    background-color:var(--brand-black);
    color:white;
}

.logo{
    width:170px;
    margin-bottom:35px;
}

.logo-blocks {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.logo-square {
    width: 110px;
    height: 110px;
    background: var(--brand-black);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 110px;
    font-weight: 700;
    border: 2px solid white;
    letter-spacing: 1px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.logo-square:hover {
    background: var(--brand-red);
    transform: translateY(-6px);

}



.profile-pic{
    width:260px;
    height:260px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:25px;
    border:4px solid white;
}

.hero h1{
    font-size:77px;
    margin-bottom:10px;
}

.tagline{
    font-size:20px;
    max-width:700px;
    margin:0 auto;
    line-height:1.6;
    color:#d4d4d4;
}