/* Modern CSS Reset and Variables */
:root {
    --primary-color: #000;
    --text-color: #333;
    --background-color: #fff;
    --font-primary: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.8;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--text-color);
    background-color: var(--background-color);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Enhanced Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

nav.nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: var(--font-size-base);
    letter-spacing: 1px;
    transition: opacity 0.3s;
    font-weight: var(--font-weight-regular);
}

nav a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    margin-top: 100px;
    text-align: center;
    padding: 4rem 0;
}

.hero .profile {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero .logo {
    width: 400px;
    height: auto;
    margin: 2rem auto;
    display: block;
}

.hero h2 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-light);
    letter-spacing: 1px;
    margin-top: 0.5rem;
    color: #666;
}

/* About Section */
.about {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    line-height: var(--line-height-relaxed);
    color: #666;
}

.about p {
    margin-bottom: 2rem;
    font-size: var(--font-size-lg);
}

.about h3 {
    color: #333;
    font-weight: var(--font-weight-regular);
    margin: 2rem 0 1rem;
    font-size: var(--font-size-lg);
}

.portfolio-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.portfolio-highlights li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.portfolio-highlights strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.cta {
    margin-top: 3rem;
    font-style: italic;
    color: #333;
}

@media (max-width: 768px) {
    .about {
        padding: 0 1rem;
        margin: 2rem auto;
    }
}

blockquote {
    font-style: italic;
    border-left: none;
    padding: 2rem;
    margin: 3rem 0;
    color: #666;
    text-align: center;
    font-size: 1.2rem;
}

/* Project Cards */
.featured-projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.featured-projects .project-card {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.featured-projects .project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.featured-projects .project-card .card-overlay {
    height: 180px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Reset any potential conflicting styles */
.featured-projects * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.project-card:hover .card-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.05);
}

.card-overlay h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.card-overlay a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    padding-bottom: 4px;
    border-bottom: 1px solid white;
    transition: all 0.3s ease;
}

.card-overlay a:hover {
    padding-bottom: 8px;
}

@media (max-width: 768px) {
    .featured-projects {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .featured-projects .project-card {
        height: 200px;
    }

    .card-overlay h3 {
        font-size: 1.4rem;
    }

    .card-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.3);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .featured-projects {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-projects {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .project img {
        height: 200px;
    }
}

.project * {
    margin: 0;
    padding: 0;
}

.project:first-child img {
    object-position: center 35%;
}

.project:hover img {
    transform: scale(1.05);
}

.project:first-child:hover img {
    transform: scale(1.05);
}

.project h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    z-index: 2;
    font-size: 1.5rem;
    padding: 5px 10px;
}

.project-link {
    position: absolute;
    bottom: 35%;
    left: 50%;
    transform: translate(-50%, 50%);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.project:hover .project-link {
    opacity: 1;
}

.project::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.project:hover::after {
    background: rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        gap: 1.5rem;
    }

    .featured-projects {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .about {
        padding: 0 1rem;
    }

    .hero .logo {
        width: 300px;
    }
}

/* Logo styling */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 120px; /* Add space for navbar */
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.logo-container {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.logo-container img {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 60px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.contact-info {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.contact-info h1 {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-light);
    margin-bottom: 3rem;
    color: var(--text-color);
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    main {
        padding-top: 100px;
    }

    .logo-container img {
        width: 220px;
        margin-bottom: 40px;
    }

    .contact-info h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Remove the inline style from HTML */
img[style] {
    width: auto !important;
}

/* If you want to use SVG */
img[src$=".svg"] {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Footer styling */
footer {
    margin-top: 4rem;
    padding: 2rem 0;
    text-align: center;
    border-top: none;
    font-size: 0.9rem;
    color: #666;
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-link {
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.contact-link:hover {
    color: #333;
    border-bottom-color: #333;
}

/* Responsive footer */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem;
    }
    
    .contact-info {
        padding: 0 1rem;
    }
}

/* Projects Page Specific Styles */
.intro {
    max-width: 800px;
    margin: 8rem auto 6rem;
    text-align: center;
    padding: 0 2rem;
}

.intro img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 4rem;
}

.intro h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 2rem 0;
    color: #333;
}

.intro h2 {
    font-size: 1.4rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.categories {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.categories li {
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: #666;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
    padding-bottom: 0.5rem;
}

.categories li:hover {
    border-color: #666;
}

.intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Project Sections */
.project {
    max-width: 1000px;
    margin: 8rem auto;
    padding: 0 2rem;
    background-color: white;
    position: relative;
}

.project img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 3rem;
}

.project h2, 
.project h3, 
.project h4,
.project p {
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.project .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    width: 100%;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.project-content {
    background-color: white;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.project h2 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.project p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Quotes styling */
.quotes {
    background-color: #f9f9f9;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.quotes p {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.quotes .author {
    font-style: normal;
    color: #333;
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-top: 3rem;
}

/* Project details */
.project-details {
    border-top: 1px solid #eee;
    margin-top: 2rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    overflow: visible;
    position: relative;
}

.project-details p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
}

.project-details p::before {
    content: attr(data-label);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.project-details .buttons.center {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 0;
    width: 100%;
    padding-bottom: 1rem;
    overflow: visible;
}

.project-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid #666;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    border-radius: 4px;
    margin: 8px;
    min-height: 44px;
    width: auto;
    position: relative;
    z-index: 2;
}

.project-button:hover {
    background-color: #666;
    color: white;
    border-color: #666;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .project-details {
        padding-bottom: 2rem;
        gap: 1rem;
    }

    .project-details .buttons.center {
        margin-top: 1rem;
    }

    .project-button {
        width: 100%;
        margin: 4px 0;
    }
}

.project-content {
    background-color: white;
    padding: 2rem;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.project-card {
    background: white;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    max-width: 100%;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.project-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.02);
}

.project-content h3 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-light);
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: 1px;
    line-height: var(--line-height-tight);
}

.project-content h4 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-light);
    color: #666;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.project-content p {
    font-size: 1rem;
    line-height: var(--line-height-relaxed);
    color: #666;
    margin-bottom: 1.5rem;
}

.project-development {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #eee;
}

.project-development h4 {
    color: #333;
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.development-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.development-image:hover {
    transform: scale(1.02);
}

.project-development p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.8rem;
}

.project-links {
    margin: 2.5rem 0;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.quotes {
    background-color: #f9f9f9;
    padding: 3.5rem;
    margin: 3.5rem 0;
    position: relative;
    border-radius: 8px;
}

.quotes p {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.quotes .author {
    font-style: normal;
    color: #333;
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-top: 3rem;
    text-align: right;
}

@media (max-width: 768px) {
    .projects-container {
        padding: 1.5rem;
        padding-top: 100px;
    }

    .page-header {
        margin-bottom: 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header h2 {
        font-size: 1.2rem;
    }

    .categories {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-content h3 {
        font-size: 1.5rem;
    }

    .project-content h4 {
        font-size: 1.1rem;
    }

    .quotes {
        padding: 2.5rem;
        margin: 2.5rem 0;
    }

    .project-links {
        flex-direction: column;
    }

    .project-button {
        width: 100%;
        justify-content: center;
    }
}

/* Add or update these styles */
.intro {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
    text-align: center;
}

.intro h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 2rem 0;
    color: #333;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 1.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social {
    font-size: 1rem;
    color: #666;
    margin-top: 2rem;
}

.project {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.project h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 2rem;
}

.project h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 1.5rem;
}

.project p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 1.5rem 0;
}

.project img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
}

.trailer {
    margin: 3rem 0;
    text-align: center;
}

.trailer p {
    margin-top: 1rem;
    font-weight: 500;
}

.buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 1px solid #666;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.button:hover {
    background-color: #666;
    color: white;
    border-color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro, .project {
        padding: 1rem;
    }
    
    .intro h1 {
        font-size: 2rem;
    }
    
    .project h2 {
        font-size: 1.8rem;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .button {
        width: 100%;
        text-align: center;
    }
}

/* Main content styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 120px; /* Add space for navbar */
    position: relative;
    z-index: 1;
    background-color: #fff;
}

/* Intro section */
.intro {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.intro img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.intro p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.social {
    font-style: italic;
    color: #666;
}

/* Project sections */
.project {
    margin: 60px 0;
    padding: 20px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.project h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.project h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #666;
}

.project p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.project img {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

/* Trailer section */
.trailer {
    margin: 30px 0;
    text-align: center;
}

.trailer img {
    max-width: 100%;
    height: auto;
}

.trailer p {
    margin-top: 10px;
    font-weight: bold;
}

/* Button styles */
.buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #333;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro h1 {
        font-size: 2rem;
    }

    .project h2 {
        font-size: 1.8rem;
    }

    .buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
        text-align: center;
    }
}

.buttons.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
}

.button.pinterest {
    display: flex;
    align-items: center;
    gap: 8px;
}

.button.pinterest svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.button.biofaces {
    display: flex;
    align-items: center;
    gap: 8px;
}

.button.biofaces svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.button.studio {
    display: flex;
    align-items: center;
    gap: 8px;
}

.button.studio svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.button.youtube,
.button.site {
    display: flex;
    align-items: center;
    gap: 8px;
}

.button.youtube svg,
.button.site svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.clipping-preview {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.clipping-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #333;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.02);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.clip-icon {
    width: 24px;
    height: 24px;
    fill: #333;
    transform: rotate(45deg);
    opacity: 0.8;
}

.clipping-preview h2 {
    margin-bottom: 0; /* Override previous margin since we're using section-header */
}

/* Optional animation for the clip icon */
@keyframes clipWiggle {
    0% { transform: rotate(45deg); }
    25% { transform: rotate(40deg); }
    75% { transform: rotate(50deg); }
    100% { transform: rotate(45deg); }
}

.clip-icon:hover {
    animation: clipWiggle 0.5s ease;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: #666;
    transition: fill 0.3s ease;
}

.social-icon:hover {
    fill: #333;
}

/* Make sure contact items are properly spaced */
.contact-item {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item h2 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-phone-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: #25d366;
    transition: transform 0.2s ease;
}

.whatsapp-link:hover .whatsapp-icon {
    transform: scale(1.08);
}

.phone-divider {
    color: #888;
}

/* Add smooth scrolling for better navigation */
html {
    scroll-behavior: smooth;
}

/* Clipping Section Styles */
.clipping-section {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.clipping-section .section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.clipping-section .clip-icon {
    width: 24px;
    height: 24px;
    fill: #333;
}

.clipping-section h2 {
    font-size: 1.8rem;
    color: #333;
    letter-spacing: 0.1em;
    margin: 0;
}

.clipping-section .separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.clipping-section .separator .line {
    height: 1px;
    flex-grow: 1;
    background-color: #ddd;
}

.clipping-section .separator .diamond {
    width: 8px;
    height: 8px;
    background-color: #333;
    transform: rotate(45deg);
    margin: 0 1rem;
}

.clipping-section .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.clipping-section .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.clipping-section .gallery img:hover {
    transform: scale(1.02);
}

.clipping-section .clipping-intro {
    margin: 2rem 0;
}

.clipping-section .clipping-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.clipping-section blockquote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #ddd;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.clipping-section blockquote em {
    font-weight: 500;
    color: #333;
}

/* Honorable Mentions Section */
.honorable-mentions {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.honorable-mentions h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-light);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    letter-spacing: 2px;
}

.mentions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mention-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.mention-item:hover {
    transform: translateY(-4px);
}

.mention-item h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.mention-item p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: #666;
}

@media (max-width: 768px) {
    .mentions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .honorable-mentions {
        margin: 4rem auto;
        padding: 0 1rem;
    }
}

.projects-grid {
    display: grid;
    gap: 4rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .project-content {
        padding: 1.5rem;
    }

    .project-content h3 {
        font-size: 1.5rem;
    }

    .project-content h4 {
        font-size: 1.1rem;
    }

    .project-details {
        padding-bottom: 2rem;
        gap: 1rem;
    }
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 120px; /* Add space for navbar */
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.page-header h1 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-light);
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: 2px;
}

.page-header h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-light);
    color: #666;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.page-header .intro-text {
    max-width: 800px;
    margin: 2rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.page-header .social-follow-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 1px solid #666;
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin: 1.5rem 0;
}

.page-header .social-follow-button:hover {
    background-color: #666;
    color: white;
    transform: translateY(-2px);
}

.page-header .social-follow-button .social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .projects-container {
        padding: 1.5rem;
        padding-top: 100px;
    }

    .page-header {
        margin-bottom: 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header h2 {
        font-size: 1.2rem;
    }

    .page-header .social-follow-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

