@charset "utf-8";
/* CSS Document 

Tooplate 2154 Split Portfolio

https://www.tooplate.com/view/2154-split-portfolio

*/

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

:root {
	--bg-dark: #2d2d2d;
	--bg-light: #383838;
	--bg-header: #242424;
	--text-primary: #ffffff;
	--text-secondary: #9a9a9a;
	--accent: #ff3366;
	--accent-hover: #ff5580;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Archivo', sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	overflow-x: hidden;
}
/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 2rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	background: rgba(36, 36, 36, 0.95);
	backdrop-filter: blur(10px);
}
.logo {
	font-family: 'Crimson Pro', serif;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: -1px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--text-primary);
	transition: opacity 0.3s ease;
}

.logo:hover {
	opacity: 0.8;
}

.logo-icon {
	width: 40px;
	height: 40px;
}
.desktop-nav {
	display: flex;
	gap: 2.5rem;
	list-style: none;
}

.desktop-nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 400;
	transition: all 0.3s ease;
	position: relative;
	padding-bottom: 0.5rem;
}
.desktop-nav a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.desktop-nav a:hover {
	color: var(--text-primary);
}

.desktop-nav a:hover::before {
	width: 100%;
}

.desktop-nav a.active {
	color: var(--text-primary);
}

.desktop-nav a.active::before {
	width: 100%;
	background: var(--text-primary);
}
.menu-icon {
	display: none;
	width: 40px;
	height: 40px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: border-color 0.3s ease;
	position: relative;
	z-index: 1002;
}

.menu-icon:hover {
	border-color: var(--accent);
}

.menu-icon span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--text-primary);
	position: relative;
}

.menu-icon span::before,
.menu-icon span::after {
	content: '';
	position: absolute;
	width: 18px;
	height: 2px;
	background: var(--text-primary);
	transition: all 0.3s ease;
}

.menu-icon span::before {
	top: -6px;
}

.menu-icon span::after {
	top: 6px;
}

/* =========================
   NEW CLEAN PORTFOLIO
========================= */

body{
    background:#fff5f8;
    color:#2b2b2b;
}

/* HERO */

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;
    padding:140px 10%;
    background:linear-gradient(
        135deg,
        #fff5f8,
        #ffe3ec
    );
}

.hero-left img{
    width:380px;
    border-radius:30px;
    object-fit:cover;
    box-shadow:0 20px 40px rgba(255,105,180,.2);
}

.hero-right{
    max-width:600px;
}

.hero-role{
    display:inline-block;
    padding:10px 20px;
    background:#ff4f87;
    color:white;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
}

.hero-right h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    color:#222;
}

.hero-description{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.hero-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}

.hero-tags span{
    padding:10px 18px;
    background:white;
    border-radius:30px;
    border:1px solid #ffd0dc;
    color:#ff4f87;
    font-weight:600;
}

/* SHOWCASE */

.showcase-section{
    padding:120px 10%;
    background:white;
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header h2{
    font-size:56px;
    color:#222;
    margin-bottom:20px;
}

.section-header p{
    color:#666;
    font-size:18px;
}

.showcase-grid{
    display:flex;
    gap:40px;
	justify-content:center;;
}

.showcase-card{
    background:#fff5f8;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
	display:flex;
	flex-direction:column;
	height:100%;
	transition:.3s ease;
    max-width:850px;
    width:100%;
    margin:auto;
}
.showcase-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.showcase-card img{
    width:100%;
	height:auto;
    display:block;
    object-fit:cover;
}

.showcase-content{
    padding:25px;
}

.showcase-label{
    display:inline-block;
    background:#ff4f87;
    color:white;
    padding:8px 16px;
    border-radius:20px;
    margin-bottom:20px;
    font-size:14px;
}

.showcase-content h3{
    font-size:30px;
    margin-bottom:20px;
    color:#222;
}

.showcase-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.project-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:30px;
}

.tag{
    padding:10px 16px;
    background:white;
    border-radius:20px;
    border:1px solid #ffd0dc;
    color:#ff4f87;
}

.view-project-btn{
    display:inline-block;
    padding:16px 34px;
    background:#ff4f87;
    color:white;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
	margin-top:auto;
}

.view-project-btn:hover{
    background:#ff2f70;
    transform:translateY(-3px);
}

/* CONTACT */

.contact-section{
    padding:120px 10%;
    background:#fff0f5;
}

.contact-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
}

.contact-info h2{
    font-size:60px;
    margin-bottom:25px;
    color:#222;
}

.contact-info p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:40px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
}

.contact-item-icon{
    width:55px;
    height:55px;
    background:#ff4f87;
    color:white;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-item-content h4{
    margin-bottom:6px;
    color:#222;
}

.contact-item-content a{
    color:#666;
    text-decoration:none;
}

.contact-form{
    background:white;
    padding:50px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
	position:relative;
    z-index:100;
}

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    color:#444;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:18px;
    border-radius:14px;
    border:1px solid #eee;
    background:#fafafa;
	font-size:16px;
    color:#222;
	pointer-events:auto;
    position:relative;
    z-index:10;
}

.form-group textarea{
    min-height:180px;
    resize:none;
}

.submit-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:14px;
    background:#ff4f87;
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

footer{
    padding:30px;
    text-align:center;
    background:white;
    color:#666;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-section{
        flex-direction:column;
        text-align:center;
    }

    .contact-split{
        grid-template-columns:1fr;
    }

    .hero-right h1{
        font-size:48px;
    }

    .section-header h2{
        font-size:42px;
    }
}

.project-detail-page{
    padding:180px 10% 80px;
    background:#fff7fb;
}

.detail-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.detail-image img{
    width:100%;
	max-height:500px;
	object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.detail-label{
    display:inline-block;
    background:#ff4f8b;
    color:white;
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:20px;
}

.detail-content h1{
    font-size:64px;
    margin-bottom:25px;
    line-height:1.1;
}

.detail-description{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.detail-tags{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.detail-tags span{
    border:1px solid #ff4f8b;
    color:#ff4f8b;
    padding:10px 18px;
    border-radius:999px;
}

.project-section{
    padding:80px 10%;
    background:white;
}

.project-wrapper{
    max-width:1100px;
    margin:auto;
}

.project-wrapper h2{
    margin-top:50px;
    margin-bottom:20px;
    font-size:40px;
}

.project-wrapper p,
.project-wrapper li{
    color:#555;
    line-height:1.9;
    font-size:18px;
}

.project-gallery{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:40px;
}

.project-gallery img{
    width:100%;
    border-radius:20px;
}

@media(max-width:900px){

    .detail-container{
        grid-template-columns:1fr;
    }

    .project-gallery{
        grid-template-columns:1fr;
    }

    .detail-content h1{
        font-size:42px;
    }
}


.project-detail-page{
    padding:180px 10% 100px;

    background:linear-gradient(
        135deg,
        #fff5f8,
        #ffe3ec
    );
}

.detail-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;

    align-items:center;
}

.detail-image img{
    width:100%;
    max-height:550px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.detail-content h1{
    font-size:64px;
    line-height:1.1;

    margin:20px 0;
}

.detail-description{
    font-size:18px;
    line-height:1.9;

    color:#666;

    margin-bottom:30px;
}

.detail-label{
    display:inline-block;

    background:#ff4f87;
    color:white;

    padding:10px 20px;

    border-radius:999px;
}

.detail-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;

    margin-bottom:30px;
}

.detail-tags span{
    padding:10px 18px;

    border:1px solid #ff4f87;

    border-radius:999px;

    color:#ff4f87;

    background:white;
}

.project-section{
    padding:100px 10%;
    background:#fff;
}

.project-wrapper{
    max-width:1100px;
    margin:auto;
}

.content-card{
    background:#fff5f8;

    padding:50px;

    border-radius:30px;

    margin-bottom:40px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.content-card h2{
    font-size:38px;

    margin-bottom:25px;

    color:#222;
}

.content-text{
    color:#555;
    line-height:1.9;

    font-size:18px;
}

.feature-list{
    padding-left:20px;
}

.feature-list li{
    margin-bottom:14px;

    color:#555;
    line-height:1.8;
}

.project-gallery img{
    width:100%;

    border-radius:24px;
}

@media(max-width:991px){

    .detail-container{
        grid-template-columns:1fr;
    }

    .detail-content h1{
        font-size:42px;
    }

    .content-card{
        padding:30px;
    }
}
