:root {
    --bg-dark: #121212;
    --bg-light: #1E1E1E;
    --text-primary: #EAEAEA;
    --text-secondary: #B0B0B0;
    --accent-gold: #D4AF37;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
}

/* General Styles */
body {
    font-family: var(--font-body);
    margin: 0;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
}

h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    position: relative;
}

:root {
    --bg-dark: #1a1a1a;
    --bg-light: #2c2c2c;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --accent-gold: #ffc107;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
}

/* General Styles */
body {
    font-family: var(--font-body);
    margin: 0;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
}

h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 3rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

a {
    text-decoration: none;
    color: var(--accent-gold);
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

.btn {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--bg-dark);
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid var(--accent-gold);
    font-weight: bold;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateY(-5px);
}

/* Header */
header {
    background-color: transparent;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.4s ease;
}

header.scrolled {
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(12px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 30px;
}

.mobile-nav-links a {
    font-size: 2rem;
    color: var(--text-primary);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    max-width: 850px;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--accent-gold);
    margin-bottom: 25px;
}

#hero h1 {
    font-size: 4.5rem;
    margin: 15px 0;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.intro {
    max-width: 650px;
    margin: 25px auto 35px;
    color: var(--text-secondary);
}

/* Sections */
section {
    padding: 100px 20px;
    border-bottom: 1px solid #3a3a3a;
}

section:nth-of-type(odd) {
    background-color: var(--bg-light);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 45px;
    text-align: center;
}

.skill-item {
    transition: transform 0.4s ease;
}

.skill-item:hover {
    transform: translateY(-12px);
}

.skill-item i {
    font-size: 4.5rem;
    color: var(--accent-gold);
    margin-bottom: 18px;
}

.skill-item p {
    font-weight: bold;
    font-family: var(--font-heading);
}

/* Projects & Blog Section */
.projects-grid, .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.project-item, .blog-post {
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-item:hover, .blog-post:hover {
    transform: translateY(-12px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15);
}

.project-item img {
    width: 100%;
    display: block;
}

.project-item h3, .blog-post h3 {
    padding: 25px 25px 12px;
    margin: 0;
    color: var(--accent-gold);
}

.project-item p, .blog-post p {
    padding: 0 25px 25px;
    margin: 0;
    color: var(--text-secondary);
}

.project-item .btn, .blog-post .btn {
    margin: 0 25px 25px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    text-align: center;
}

.service-item {
    background: var(--bg-dark);
    padding: 45px 25px;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.service-item:hover {
    transform: translateY(-12px);
    border-color: var(--accent-gold);
}

.service-item i {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

/* Testimonials Section */
.testimonial-item {
    background-color: var(--bg-light);
    padding: 45px;
    border-radius: 12px;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    border-left: 6px solid var(--accent-gold);
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.2rem;
    margin: 0;
}

.testimonial-item cite {
    display: block;
    margin-top: 25px;
    font-style: normal;
    font-weight: bold;
    color: var(--accent-gold);
}

/* Contact Section */
form {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

input, textarea {
    padding: 18px;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-body);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.social-links {
    text-align: center;
    margin-top: 45px;
}

.social-links a {
    font-size: 2rem;
    margin: 0 18px;
    color: var(--text-secondary);
}

/* Footer */
footer {
    background-color: #000;
    text-align: center;
    padding: 35px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    #hero h1 {
        font-size: 3rem;
    }
    .tagline {
        font-size: 1.4rem;
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* My Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    text-align: center;
}

.process-item {
    padding: 35px;
}

.process-item i {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
}


a {
    text-decoration: none;
    color: var(--accent-gold);
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

.btn {
    display: inline-block;
    background: transparent;
    color: var(--accent-gold);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid var(--accent-gold);
    font-weight: bold;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Header */
header {
    background-color: transparent;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-secondary);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-gold);
    margin-bottom: 20px;
}

#hero h1 {
    font-size: 4rem;
    margin: 10px 0;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.intro {
    max-width: 600px;
    margin: 20px auto 30px;
    color: var(--text-secondary);
}

/* Sections */
section {
    padding: 80px 20px;
    border-bottom: 1px solid #2a2a2a;
}

section:nth-of-type(odd) {
    background-color: var(--bg-light);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
}

.skill-item {
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-10px);
}

.skill-item i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.skill-item p {
    font-weight: bold;
    font-family: var(--font-heading);
}

/* Projects & Blog Section */
.projects-grid, .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-item, .blog-post {
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover, .blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
}

.project-item img {
    width: 100%;
    display: block;
}

.project-item h3, .blog-post h3 {
    padding: 20px 20px 10px;
    margin: 0;
    color: var(--accent-gold);
}

.project-item p, .blog-post p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--text-secondary);
}

.project-item .btn, .blog-post .btn {
    margin: 0 20px 20px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    background: var(--bg-dark);
    padding: 40px 20px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.service-item i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonial-item {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    border-left: 5px solid var(--accent-gold);
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-item cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: bold;
    color: var(--accent-gold);
}

/* Contact Section */
form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    padding: 15px;
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-body);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.social-links {
    text-align: center;
    margin-top: 40px;
}

.social-links a {
    font-size: 1.8rem;
    margin: 0 15px;
    color: var(--text-secondary);
}

/* Footer */
footer {
    background-color: #000;
    text-align: center;
    padding: 30px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Or implement a mobile menu toggle */
    }
    #hero h1 {
        font-size: 2.5rem;
    }
    .tagline {
        font-size: 1.2rem;
    }
}