/* =====================================================
   SHREYAS TAMHAN PORTFOLIO
   SECURITY ARCHITECT | SECURITY OPERATIONS | AUTOMATION
===================================================== */

:root {

    --bg: #f8f6f2;

    --white: #ffffff;

    --navy: #0b1f44;

    --gold: #c99718;

    --gold-dark: #b8860b;

    --text: #364152;

    --muted: #6d7484;

    --border: #ece7dc;

    --shadow:
        0 10px 30px rgba(0,0,0,.06);

    --shadow-lg:
        0 20px 60px rgba(0,0,0,.08);

    --radius: 24px;

    --transition: .3s ease;

}

/* =====================================================
   RESET
===================================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:

    radial-gradient(
    circle at top left,
    rgba(201,151,24,.06),
    transparent 30%
    ),

    radial-gradient(
    circle at bottom right,
    rgba(201,151,24,.04),
    transparent 35%
    ),

    var(--bg);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:min(1200px,92%);

    margin:auto;

}

/* =====================================================
   NAVBAR
===================================================== */

.navbar{

    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(248,246,242,.96);

    backdrop-filter:blur(12px);

    border-bottom:1px solid var(--border);

}

.nav-container{

    height:88px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.brand{

    display:flex;

    align-items:center;

    gap:16px;

    color:var(--navy);

}

.logo-box{

    width:56px;

    height:56px;

    border-radius:18px;

    border:2px solid var(--gold);

    color:var(--gold);

    font-weight:800;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

}

.brand h3{

    font-size:20px;

    font-weight:800;

    letter-spacing:1px;

}

.brand span{

    color:var(--muted);

    font-size:12px;

    letter-spacing:2px;

}

.nav-links{

    display:flex;

    gap:32px;

}

.nav-links a{

    color:var(--navy);

    font-weight:600;

    transition:var(--transition);

}

.nav-links a:hover{

    color:var(--gold);

}

.resume-button{

    padding:14px 22px;

    border-radius:14px;

    border:1px solid var(--gold);

    color:var(--gold);

    font-weight:600;

    transition:var(--transition);

}

.resume-button:hover{

    background:var(--gold);

    color:white;

}

/* =====================================================
   HERO
===================================================== */

/* =====================================================
   HERO
===================================================== */

.hero{

    padding:70px 0 40px;

}

.hero-grid{

    max-width:1000px;

    margin:0 auto;

}

.hero-content{

    max-width:1000px;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    border:1px solid var(--border);

    padding:12px 18px;

    border-radius:999px;

    margin-bottom:25px;

    color:var(--gold);

    font-weight:700;

}

.hero h1{

    font-size:72px;

    line-height:1.05;

    color:var(--navy);

    margin-bottom:15px;

    font-weight:800;

}

.hero h1 span{

    display:inline;

}

.hero h2{

    font-size:28px;

    color:var(--gold);

    margin-bottom:25px;

    font-weight:700;

    line-height:1.4;

}

.hero p{

    font-size:18px;

    line-height:1.9;

    color:var(--text);

    max-width:900px;

    margin-bottom:25px;

}

.hero-buttons{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

    margin-top:30px;

}

.hero-image{

    display:none;

}

/* =====================================================
   SECTION TITLE
===================================================== */

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title span{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:700;

    font-size:14px;

}

.section-title h2{

    font-size:42px;

    color:var(--navy);

    margin-top:12px;

}

/* =====================================================
   PROJECT
===================================================== */

.project-section{

    padding:50px 0 90px;

}

.project-card{

    background:white;

    border-radius:32px;

    padding:40px;

    box-shadow:var(--shadow-lg);

    display:grid;

    grid-template-columns:420px 1fr;

    gap:40px;

    align-items:center;

}

.project-info h3{

    font-size:34px;

    color:var(--navy);

    margin-bottom:20px;

}

.project-info p{

    margin-bottom:25px;

}

.tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:30px;

}

.tags span{

    background:#fafafa;

    border:1px solid var(--border);

    padding:10px 16px;

    border-radius:12px;

    font-size:14px;

}

.project-image{

    border-radius:20px;

    overflow:hidden;

    border:1px solid var(--border);

}

.project-image img{

    transition:.5s;

}

.project-image:hover img{

    transform:scale(1.02);

}

/* =====================================================
   FOCUS
===================================================== */

.focus-section{

    padding:100px 0;

}

.focus-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.focus-card{

    background:white;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.focus-card:hover{

    transform:translateY(-8px);

}

.focus-card i{

    font-size:42px;

    color:var(--gold);

    margin-bottom:20px;

}

.focus-card h3{

    color:var(--navy);

    margin-bottom:12px;

}

.focus-card p{

    color:var(--muted);

}

/* =====================================================
   CONNECT
===================================================== */

.connect-section{

    padding:100px 0;

}

.connect-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    max-width:700px;

    margin:0 auto;

}

.connect-card{

    background:white;

    padding:35px;

    border-radius:24px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    color:var(--text);

}

.connect-card:hover{

    transform:translateY(-8px);

}

.connect-card i{

    font-size:46px;

    color:var(--gold);

    margin-bottom:20px;

}

.connect-card h3{

    color:var(--navy);

    margin-bottom:10px;

}

.connect-card p{

    color:var(--muted);

}

/* =====================================================
   FOOTER
===================================================== */

footer{

    border-top:1px solid var(--border);

    padding:40px 0;

    text-align:center;

    color:var(--muted);

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px){

    .hero-grid,
    .project-card{

        grid-template-columns:1fr;

    }

    .hero{

        text-align:center;

    }

    .hero-image{

        margin-top:40px;

    }

}

@media(max-width:900px){

    .focus-grid{

        grid-template-columns:1fr 1fr;

    }

    .connect-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .nav-links{

        display:none;

    }

    .resume-button{

        display:none;

    }

    .hero h1{

        font-size:54px;

    }

    .hero h2{

        font-size:24px;

    }

    .section-title h2{

        font-size:32px;

    }

    .focus-grid{

        grid-template-columns:1fr;

    }

    .hero-highlights{

        justify-content:center;

    }

    .project-card{

        padding:24px;

    }

}

@media(max-width:480px){

    .hero h1{

        font-size:42px;

    }

}