/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --off-white: #fafafa;
    --light-grey: #f5f5f5;
    --grey: #e8e8e8;
    --medium-grey: #999999;
    --dark-grey: #6b6b6b;
    --text-grey: #5a5a5a;
    --border-grey: #d8d8d8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-grey);
    background: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-grey);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
}

.logo {
    display: block;
    height: 40px;
    /* Adjust height as needed */
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-grey);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.nav-links a.active {
    color: var(--text-grey);
    font-weight: 400;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 22px;
    height: 1px;
    background: var(--text-grey);
    transition: all 0.3s ease;
}

/* Hero Section with Image Collage */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--off-white);
}

/* wrapper around hero should be taller so pinning has room */
.hero-wrapper {
    position: relative;
    height: 220vh;
}

/* keep the hero pinned via CSS, not JS */
.hero-full {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    min-height: 150vh;
}

/* Image Collage Layout */
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.3);
    opacity: 1;
    will-change: transform, opacity;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.hero-image img,
.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

/* Collage positioning - 8 images with varied placements */
/* Collage positioning - 8 images with varied sizes */
.hero-image-1 {
    width: 380px;
    height: 480px;
    top: 35%;
    left: 24%;
}

.hero-image-2 {
    width: 500px;
    height: 600px;
    top: 5%;
    left: 18%;
}

.hero-image-3 {
    width: 300px;
    height: 360px;
    top: 25%;
    right: 15%;
}

.hero-image-4 {
    width: 350px;
    height: 450px;
    top: 11%;
    right: 32%;
}

.hero-image-5 {
    width: 320px;
    height: 400px;
    top: 60%;
    left: 18%;
}

.hero-image-6 {
    width: 380px;
    height: 470px;
    top: 35%;
    right: 35%;
}

.hero-image-7 {
    width: 350px;
    height: 350px;
    top: 68%;
    left: 35%;
}

.hero-image-8 {
    width: 400px;
    height: 500px;
    top: 70%;
    right: 22%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.hero-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    padding: 0 3rem;
    max-width: 900px;
    transition: position 0.3s ease;
}

.hero-content.scrolled {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.hero-date {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--medium-grey);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    /* Change from 200 to 700 */
    letter-spacing: -0.02em;
    color: var(--text-grey);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--medium-grey);
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--medium-grey);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--medium-grey), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Projects Grid Section */
.projects-grid-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
}

.projects-heading {
    font-size: 3rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 60px;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

.project-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #6b6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.learn-more-btn:hover {
    background: #2a2a2a;
}

/* Feature Section */
.feature-section {
    padding: 8rem 3rem;
    background: var(--white);
    border-top: 1px solid var(--border-grey);
}

.feature-content {
    max-width: 800px;
    margin: 0 auto;
}

.feature-date {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--medium-grey);
    margin-bottom: 2rem;
    font-weight: 300;
}

.feature-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 200;
    letter-spacing: -0.01em;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.feature-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--dark-grey);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.feature-link {
    display: inline-block;
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--text-grey);
    transition: opacity 0.3s ease;
}

.feature-link:hover {
    opacity: 0.5;
}

/* Media Split Section */
.media-split-section {
    padding: 0;
    background: var(--off-white);
}

.media-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.media-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.media-panel:first-child {
    border-right: 1px solid var(--border-grey);
}

.media-video-container,
.media-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.media-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.media-label {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--medium-grey);
    text-transform: uppercase;
    font-weight: 300;
}
/* Blog Section */
.blog-section {
    padding: 100px 20px;
    background: #fff;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.blog-heading {
    font-size: 3rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 60px;
    text-align: center;
}

.blog-carousel {
    position: relative;
    overflow: hidden;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.4s ease;
}

.blog-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.blog-link {
    display: inline-block;
    color: #6b6b6b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #000;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #6b6b6b;
}

/* Contact Simple Section */
.contact-simple-section {
    padding: 100px 20px;
    background: #f5f5f5;
    text-align: center;
}

.contact-simple-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-simple-heading {
    font-size: 3rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 20px;
}

.contact-simple-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-email-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #6b6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-email-btn:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-heading {
        font-size: 2rem;
    }

    .contact-simple-heading {
        font-size: 2rem;
    }

    .contact-simple-text {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--off-white);
    border-top: 1px solid var(--border-grey);
    padding: 3rem 3rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    color: var(--medium-grey);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.footer-right a {
    color: var(--medium-grey);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 0.5;
}

/* Projects Page */
.projects-page {
    background: #fff;
    min-height: 100vh;
    padding-top: 80px;
}

.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.projects-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 100px;
}

.project-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid #e0e0e0;
}

.project-detail:last-child {
    border-bottom: none;
}

.project-detail-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.project-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
}

.project-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-detail-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 4rem 3rem 6rem;
    background: var(--white);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-heading {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
}

.contact-text {
    font-size: 1rem;
    color: var(--dark-grey);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--medium-grey);
    text-transform: uppercase;
    font-weight: 300;
}

.contact-value {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.contact-value:hover {
    opacity: 0.5;
}

.contact-social {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.5;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--text-grey);
    font-weight: 300;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-grey);
    background: var(--white);
    color: var(--text-grey);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--medium-grey);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    padding: 1rem 2.5rem;
    background: var(--text-grey);
    color: var(--white);
    border: 1px solid var(--text-grey);
    font-family: inherit;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--dark-grey);
    border-color: var(--dark-grey);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-container {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-grey);
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-content {
        padding: 0 2rem;
    }

    /* Adjust collage for tablet */
    .hero-image-1 {
        width: 280px;
        height: 340px;
        top: 8%;
        left: 10%;
    }

    .hero-image-2 {
        width: 240px;
        height: 300px;
        right: 12%;
    }

    .hero-image-3 {
        width: 260px;
        height: 300px;
        left: 30%;
    }

    .hero-image-4 {
        width: 240px;
        height: 340px;
        right: 30%;
    }

    .hero-image-5 {
        width: 240px;
        height: 320px;
        left: 10%;
    }

    .hero-image-6 {
        width: 260px;
        height: 340px;
        right: 10%;
    }

    .hero-image-7 {
        width: 220px;
        height: 280px;
        left: 35%;
    }

    .hero-image-8 {
        width: 240px;
        height: 300px;
        right: 35%;
    }

    .feature-section {
        padding: 5rem 2rem;
    }

    .footer {
        padding: 2.5rem 2rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 80px;
    }

    .page-header {
        padding: 60px 20px 40px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .media-split-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .media-panel {
        min-height: 50vh;
    }

    .media-panel:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border-grey);
    }

    .media-video-container,
    .media-image-container {
        padding: 2rem;
    }

    .media-label {
        bottom: 2rem;
        left: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1.25rem 1.5rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    /* Spread images out more on mobile - no overlap */
    .hero-image-1 {
        width: 160px;
        height: 200px;
        top: 55%;
        right: 5%;
    }

    .hero-image-2 {
        width: 140px;
        height: 180px;
        top: 3%;
        left: 5%;
    }

    .hero-image-3 {
        width: 130px;
        height: 160px;
        top: 22%;
        left: 8%;
    }

    .hero-image-4 {
        width: 150px;
        height: 190px;
        top: 20%;
        right: 8%;
    }

    .hero-image-5 {
        width: 140px;
        height: 175px;
        top: 40%;
        left: 6%;
    }

    .hero-image-6 {
        width: 160px;
        height: 200px;
        top: 42%;
        right: 6%;
    }

    .hero-image-7 {
        width: 130px;
        height: 165px;
        top: 62%;
        left: 10%;
    }

    .hero-image-8 {
        width: 145px;
        height: 180px;
        top: 60%;
        right: 10%;
    }

    .hero-date {
        margin-bottom: 2rem;
    }

    .feature-section {
        padding: 4rem 1.5rem;
    }

    .footer {
        padding: 2rem 1.5rem;
    }

    .projects-grid-section {
        padding: 60px 1.5rem;
    }

    .projects-heading {
        font-size: 2rem;
    }

    .contact-section {
        padding: 3rem 1.5rem 4rem;
    }

    .form-submit {
        width: 100%;
    }
}

/* Project Details Section */
.project-details-section {
    padding: 60px 20px 100px;
    background: #fff;
}

.project-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid #e0e0e0;
    scroll-margin-top: 100px;
}

.project-detail:last-child {
    border-bottom: none;
}

.project-detail-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.project-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
}

.project-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-detail-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #666;
}

@media (max-width: 968px) {
    .project-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Idea Page Styles */
.idea-page {
    background: #fff;
    min-height: 100vh;
    padding-top: 80px;
}

.idea-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.idea-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.idea-date {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.idea-title {
    font-size: 3rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.idea-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.idea-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.idea-content p {
    margin-bottom: 30px;
}

.idea-content p:last-child {
    margin-bottom: 0;
}

/* Idea Images */
.idea-image {
    margin: 50px 0;
    text-align: center;
}

.idea-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.idea-image figcaption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .idea-article {
        padding: 40px 20px 60px;
    }

    .idea-title {
        font-size: 2rem;
    }

    .idea-subtitle {
        font-size: 1rem;
    }

    .idea-content {
        font-size: 1rem;
    }
}

/* Idea Footer with Buttons */
.idea-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #6b6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.back-home-btn:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.twitter-btn:hover {
    background: #1DA1F2;
    color: #fff;
}

.facebook-btn:hover {
    background: #1877F2;
    color: #fff;
}

.linkedin-btn:hover {
    background: #0A66C2;
    color: #fff;
}

.email-btn:hover {
    background: #666;
    color: #fff;
}

@media (max-width: 768px) {
    .idea-footer {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .share-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Buy Button for Blog Posts */
.buy-button-container {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.buy-elden-ring-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #6b6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.buy-elden-ring-btn:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
}

/* Project Detail Page */
.project-detail-page {
    background: #fff;
    min-height: 100vh;
    padding: 140px 20px 80px;
}

.project-detail-container {
    max-width: 800px;
    margin: 0 auto;
}

.back-nav {
    margin-bottom: 40px;
}

.back-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #6b6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.back-btn:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
}

.project-detail-title {
    font-size: 3rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

.project-detail-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.project-button-container {
    text-align: center;
    margin-top: 50px;
}

.project-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #6b6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.project-btn:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* What I Do Section */
.what-i-do-section {
    padding: 100px 20px;
    background: #fff;
}

.what-i-do-container {
    max-width: 1000px;
    margin: 0 auto;
}

.what-i-do-heading {
    font-size: 3rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 60px;
    text-align: center;
}

.what-i-do-content p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
}

.what-i-do-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .what-i-do-section {
        padding: 80px 40px;
    }

    .what-i-do-heading {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .what-i-do-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .what-i-do-section {
        padding: 60px 20px;
    }

    .what-i-do-heading {
        font-size: 2rem;
    }

    .what-i-do-content p {
        font-size: 1rem;
    }
}