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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
}

/* Password Gate Styles */
.password-gate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.login-container {
    background: transparent;
    border: 2px solid white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
}

.gate-image {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
    font-size: 18px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.gate-welcome {
    margin-bottom: 2rem;
    max-width: 500px;
}

.gate-welcome h1 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: white;
}

.gate-welcome p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
    color: white;
}

.password-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.form-group {
    width: 100%;
}

.password-input {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.password-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.password-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.form-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.submit-btn {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.alert-container {
    width: 100%;
    margin-top: 1rem;
}

.error-message, .alert-error {
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Main Portfolio Layout */
.portfolio {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: white;
    border-right: 1px solid #eee;
    padding: 2rem 1.5rem;
    z-index: 1000;
    transform: translateX(-230px);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar:hover {
    transform: translateX(0);
}

.sidebar-toggle {
    position: absolute;
    right: -30px;
    top: 10.5rem;
    width: 30px;
    height: 60px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    font-size: 10px;
    writing-mode: vertical-rl;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #000;
    text-align: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.nav-menu {
    list-style: none;
    margin-bottom: 2rem;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background: #f8f9fa;
    color: #333;
    transform: translateX(5px);
}

.nav-link i {
    width: 16px;
    text-align: center;
}

.sidebar-logout {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #999;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    background: #f8f9fa;
}

.logout-btn:hover {
    background: #e9ecef;
    color: #666;
    transform: translateY(-1px);
}

.logout-btn i {
    width: 14px;
    font-size: 12px;
    text-align: center;
}



/* Main Content */
.main-content {
    margin-left: 50px;
    padding: 0;
    width: calc(100% - 50px);
}

.section {
    min-height: 100vh;
    padding: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-quote {
    font-size: 3.84rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.1;
    text-align: left;
    letter-spacing: normal;
}

.hero-quote strong {
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: block;
    text-align: left;
    width: 100%;
    line-height: 1.1;
}

.underlined-text {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.indented-line {
    margin-left: 1rem;
}


.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.9rem;
    animation: continuousBounce 2s ease-in-out infinite;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-indicator i {
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.hero-scroll-indicator span {
    animation: textFade 3s ease-in-out infinite;
}

.hero-signature {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #333;
    font-size: 1.08rem;
    font-weight: 400;
    letter-spacing: 3px;
    font-family: 'Arial', sans-serif;
}

/* Hero Fade In Animations */
.hero-fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.hero-fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out 1s forwards;
}

.hero-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out 2s forwards;
}

.hero-fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out 3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes continuousBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes textFade {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* About Me Section */
.about-section {
    background: #fafafa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-image {
    position: relative;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text p:first-child {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
}

/* Strategy Section */
.strategy-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.strategy-item {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Integrated Strategy Box */
.strategy-integrated {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #ff6b35;
}

.integrated-projects-vertical {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.integrated-project-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.integrated-explore-section {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

/* Separate Strategy Box */
.strategy-separate {
    background: #f8f9fa;
    border: 2px solid #ff6b35;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Video Areas */
.strategy-video-area {
    background: #f8f9fa;
    border-radius: 8px;
    width: 100%;
    height: auto;
    overflow: hidden;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.strategy-video-area:hover {
    border-color: #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

/* Video placeholder styles removed - using actual videos now */

.strategy-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #ff6b35;
}

.media-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strategy-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.strategy-text {
    flex: 1;
}

.strategy-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.strategy-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.strategy-highlights {
    list-style: none;
    margin-bottom: 1rem;
}

.strategy-highlights li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.strategy-highlights li::before {
    content: "•";
    color: #ff6b35;
    position: absolute;
    left: 0;
}

.explore-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.explore-btn:hover {
    background: #e55a2b;
    transform: translateX(5px);
}

/* Projects Section */
.project-hero {
    background: transparent;
    padding: 4rem;
    text-align: center;
    margin: 2rem 0 3rem 0;
}

/* Production-Conceptual Spectrum Bar */
.spectrum-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 0 2rem;
}

.spectrum-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    width: 100%;
    justify-content: center;
}

.spectrum-image {
    width: 300px;
    height: 20px;
    border-radius: 8px;
    object-fit: cover;
    transform: scaleX(-1);
}

.spectrum-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spectrum-left {
    text-align: right;
    color: #d4594a;
}

.spectrum-right {
    text-align: left;
    color: #4a93d0;
}

.project-taste-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.taste-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for project grid */
@media (max-width: 1024px) {
    .project-details {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .project-details {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
    }
}

.project-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ccc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Individual project box colors - Premium Conceptual to Production Spectrum */
.project-card:nth-child(1) {
    border-left-color: #d4594a; /* Muted warm red */
}

.project-card:nth-child(2) {
    border-left-color: #c4556b; /* Warm rose */
}

.project-card:nth-child(3) {
    border-left-color: #b4528c; /* Sophisticated plum */
}

.project-card:nth-child(4) {
    border-left-color: #8f5aa6; /* Refined purple */
}

.project-card:nth-child(5) {
    border-left-color: #6a63c0; /* Premium lavender */
}

.project-card:nth-child(6) {
    border-left-color: #5a7bc8; /* Sophisticated blue */
}

.project-card:nth-child(7) {
    border-left-color: #4a93d0; /* Premium steel blue */
}

.project-card:nth-child(8) {
    border-left-color: #2c3e50; /* Elegant dark slate */
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.project-video-area {
    background: #e9ecef;
    border-radius: 8px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    border: 2px dashed #ccc;
    transition: all 0.3s ease;
}

.project-video-area:hover {
    border-color: #ff6b35;
    background: #f0f2f5;
}

.project-logo-area {
    background: #fff;
    border-radius: 8px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.project-logo-area:hover {
    border-color: #ff6b35;
    background: #fafafa;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: #999;
}

.logo-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.brand-logo {
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.project-logo-area:hover .brand-logo {
    transform: scale(1.1);
}

/* Specific logo size adjustments */
.brand-logo[src*="chrysler_logo.png"] {
    max-width: 198px;
    max-height: 198px;
}

.brand-logo[src*="gwm_logo.png"] {
    max-width: 162px;
    max-height: 162px;
}

.brand-logo[src*="nio_logo.png"] {
    max-width: 120px;
    max-height: 120px;
}

.brand-logo[src*="mercedes_logo.png"] {
    max-width: 78px;
    max-height: 78px;
}

.project-content h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.project-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Sketchbook Section */
.sketch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sketch-item {
    background: #f8f9fa;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: block;
}

.sketch-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sketch-item i {
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.sketch-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.sketch-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Clickable sketch link styling */
.sketch-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.sketch-link:hover {
    text-decoration: none;
    color: inherit;
}

.sketch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: 500;
    border-radius: 12px;
}

.sketch-link:hover .sketch-overlay {
    opacity: 1;
}

.sketch-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.sketch-overlay span {
    font-size: 1.1rem;
}

.sketch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Sketch Gallery Page Styles */
.sketch-gallery-body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    overflow-x: hidden;
    overflow-y: auto;
}

.sketch-gallery-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.fullscreen-sketch-image {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-home-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-home-button:hover {
    background: rgba(255, 107, 53, 1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
    color: white;
    text-decoration: none;
}

.floating-home-button:focus {
    outline: none;
    color: white;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-home-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .sketch-gallery-container {
        padding: 10px 0;
    }
    
    .fullscreen-sketch-image {
        width: 100%;
    }
}

/* Photography Section */
/* Photography Section Redesign */
.photography-redesigned {
    background: #fafafa;
    padding: 4rem 2rem;
}

.photo-category {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.category-caption {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.4;
}

/* New Photography Layout */
.category-layout {
    max-width: 800px;
    margin: 0 auto;
}

.featured-photo {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.featured-photo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.featured-photo:hover .featured-image {
    transform: scale(1.03);
}

.preview-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.preview-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.preview-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.preview-item:hover .preview-image {
    transform: scale(1.05);
}

/* Responsive design for new layout */
@media (max-width: 768px) {
    .featured-image {
        height: 300px;
    }
    
    .preview-photos {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .featured-image {
        height: 250px;
    }
    
    .preview-photos {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .preview-item {
        aspect-ratio: 16/9;
    }
}

/* Enhanced Photo Modal for New Design */
.photo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.photo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.photo-modal-content {
    max-width: 85vw;
    max-height: 85vh;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-modal-overlay.active .photo-modal-content {
    transform: scale(1) translateY(0);
}

.photo-modal-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    object-fit: contain;
}

.photo-modal-info {
    padding: 2rem;
    text-align: center;
    background: white;
}

.photo-modal-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.photo-modal-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.photo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.photo-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.photo-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.photo-horizontal {
    grid-row: span 1;
}

.photo-vertical {
    grid-row: span 2;
}

.photo-item {
    min-height: 180px;
}

/* Hidden Photos */
.photo-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.photo-hidden.show {
    display: flex;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Photo Controls */
.photo-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    position: relative;
}



.see-more-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
}

.see-more-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
}

.see-more-btn.expanded span {
    content: "Show Less";
}

.see-more-btn.expanded i {
    transform: rotate(180deg);
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

/* Project Links */
.project-link {
    text-decoration: none;
    color: inherit;
}

.project-link:hover {
    text-decoration: none;
    color: inherit;
}

.project-link:visited {
    text-decoration: none;
    color: inherit;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 2rem;
    text-align: center;
    color: white;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.7;
    line-height: 1.6;
    font-weight: 300;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.work-btn {
    background: #ff6b35;
    color: white;
}

.work-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: white;
}

.cv-btn {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cv-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-description {
        font-size: 1.1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Modal for Photography */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: zoomIn 0.3s ease;
}

.modal-image {
    width: 100%;
    height: 70vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
}

.modal-caption {
    padding: 2rem;
    text-align: center;
    background: white;
}

.modal-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.modal-caption p {
    color: #666;
    line-height: 1.6;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10001;
}

.close-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

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

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Admin Panel Styles */
.admin-panel {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 50px;
}

.admin-header {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.admin-icon {
    margin-bottom: 1rem;
}

.admin-title {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.admin-subtitle {
    opacity: 0.9;
    font-size: 1.1rem;
}

.security-notice {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.security-notice .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Utility Classes */
.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;
}

.main-wrapper {
    position: relative;
    min-height: 100vh;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 250px;
        transform: translateX(-200px);
    }

    .main-content {
        margin-left: 30px;
        width: calc(100% - 30px);
    }

    .section {
        padding: 2rem 1rem;
    }

    .hero-quote {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-number {
        font-size: 3rem;
    }

    /* Mobile About Me */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-text p:first-child {
        font-size: 1.1rem;
    }

    .strategy-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

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

    .project-hero {
        padding: 2rem;
    }

    .project-keywords {
        font-size: 1.5rem;
    }

    /* Mobile Strategy Layout */
    .integrated-projects-vertical {
        gap: 2rem;
    }

    .integrated-explore-section {
        margin-top: 0.5rem;
        padding-top: 1.5rem;
    }

    .strategy-video-area {
        height: 150px;
    }

    .strategy-integrated, .strategy-separate {
        padding: 2rem;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .photo-horizontal {
        aspect-ratio: 4/3;
    }

    .photo-vertical {
        grid-row: span 1;
        aspect-ratio: 3/2;
    }

    .sketch-grid {
        grid-template-columns: 1fr;
    }

    .sketch-item {
        aspect-ratio: 4/3;
        padding: 2rem;
    }
    
    .sketch-item h3 {
        font-size: 1.3rem;
    }
}