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

body {
    font-family: 'Inter', sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navigation Sidebar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100vh;
    background: #2a2a2a;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: width 0.3s ease;
}

.navbar:hover {
    width: 200px;
}

.nav-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    margin: 0.5rem 0;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.nav-item:hover {
    background: #3a3a3a;
}

.nav-item.active {
    background: white;
    color: #2a2a2a;
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.nav-text {
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

.navbar:hover .nav-text {
    opacity: 1;
}

/* Main content with navbar offset */
.main-content {
    margin-left: 80px;
    transition: margin-left 0.3s ease;
}

.navbar:hover + .main-content {
    margin-left: 200px;
}

/* Portfolio Page - Static and Stable */
.portfolio-page {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

/* Portfolio Text - Static Centered */
.portfolio-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 20vw, 16rem);
    font-weight: 900;
    color: #323b4c;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    z-index: 1;
    user-select: none;
    pointer-events: none;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
}

/* Profile Photo - Static Centered */
.profile-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 40vw, 600px);
    height: clamp(300px, 40vw, 600px);
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    z-index: 3;
    margin-top: 2rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    opacity: 1;
    visibility: visible;
}

/* Name Text - Static Top Right */
.name-text {
    position: absolute;
    top: 2rem;
    right: calc(2rem + 80px);
    color: #323b4c;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 600;
    z-index: 2;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
}

/* Skills Text - Static Bottom Right */
.skills-text {
    position: absolute;
    bottom: 25%;
    right: calc(2rem + 80px);
    color: #323b4c;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    font-weight: 500;
    text-align: right;
    z-index: 2;
    line-height: 1.4;
    max-width: 300px;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
}

/* Education Text - Static Bottom Left */
.education-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 4;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
}

.main-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
    color: #8B4513;
}

.sub-title {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #323b4c;
}

/* No animations - elements should be static */

/* Second page - Resume */
.resume-page {
    min-height: 100vh;
    padding: 2rem;
    background: #323b4c;
}

.resume-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Top section with photo and hello */
.top-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.photo-section {
    position: relative;
}

.resume-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.hello-section {
    padding-left: 2rem;
}

.hello-text {
    font-size: 4rem;
    font-weight: 900;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.hello-exclamation {
    color: #ff6b35;
}

.about-me {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
}

/* Contact boxes */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.contact-box {
    background: #ff6b35;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Left column */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Right column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Three column layout */
.three-column-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* slightly wider Skills without overflow */
    gap: 2rem;
}

.section-title {
    color: #e0e0e0;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-content {
    color: #b0b0b0;
}

/* Education */
.education-item {
    margin-bottom: 0.5rem;
}

.education-year {
    color: #e0e0e0;
    font-weight: 500;
}

.education-school {
    color: #b0b0b0;
}

.education-degree {
    color: #b0b0b0;
    font-style: italic;
}

/* Software Skills */
.software-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.software-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.software-icon {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
}

.software-info {
    flex: 1;
}

.software-name {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.9rem;
}

.software-desc {
    color: #b0b0b0;
    font-size: 0.8rem;
}

/* Experience */
.experience-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.experience-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.experience-dot {
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.experience-content {
    flex: 1;
}

.experience-year {
    color: #e0e0e0;
    font-weight: 500;
}

.experience-company {
    color: #e0e0e0;
    font-weight: 600;
    white-space: nowrap;
}

.experience-position {
    color: #b0b0b0;
}

/* Skills list */
.skills-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    column-gap: 2rem; /* balanced spacing to avoid overflow */
    row-gap: 0.75rem;
}

.skills-list li {
    color: #b0b0b0;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1rem;
}

.skills-list li::before {
    content: "-";
    color: #ff6b35;
    position: absolute;
    left: 0;
}

/* Language */
.language-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.language-name {
    color: #e0e0e0;
}

.language-level {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resume-container {
        grid-template-columns: 1fr;
    }
    
    .top-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hello-section {
        padding-left: 0;
    }
    
    .hello-text {
        font-size: 3rem;
    }
    
    .software-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .three-column-layout {
        grid-template-columns: 1fr;
    }
    
    .experience-section {
        grid-template-columns: 1fr;
    }
}

/* Third page - About Us */
.about-page {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-section {
    color: white;
}

.about-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: white;
}

.about-description {
    margin-top: 2rem;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

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

.about-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-building-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
}

/* Fourth page - Projects */
.project-page {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.project-container {
    max-width: 95vw;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-header {
    text-align: center;
    margin-bottom: 4rem;
}

.project-main-title {
    font-size: 4rem;
    font-weight: 900;
    color: #2a2a2a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.project-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #323b4c;
}

.project-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.project-grid:active {
    cursor: grabbing;
}

.project-grid::-webkit-scrollbar {
    height: 10px;
}

.project-grid::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
    margin: 0 1rem;
}

.project-grid::-webkit-scrollbar-thumb {
    background: #323b4c;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.project-grid::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: 400px;
    max-width: 500px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #e0e0e0;
    position: relative;
    margin: 0;
    padding: 0;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-video-container {
    width: 100%;
    height: 350px;
    position: relative;
    background: transparent;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.project-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    margin: 0;
    padding: 0;
}

.project-content {
    padding: 2rem;
}

.project-card .project-content + .project-image-container {
    border-radius: 0 0 15px 15px;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.project-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tag {
    background: #323b4c;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-button {
    display: inline-block;
    background: #323b4c;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.project-button:hover {
    background: #ff6b35;
}

@media (max-width: 1200px) {
    .project-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 350px;
        max-width: 450px;
    }
}

@media (max-width: 968px) {
    .project-grid {
        gap: 1.5rem;
    }
    
    .project-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 320px;
        max-width: 400px;
    }
    
    .project-main-title {
        font-size: 3rem;
    }
    
    .project-image-container,
    .project-video-container {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .project-container {
        padding: 0 1rem;
    }
    
    .project-grid {
        gap: 1rem;
        padding: 0;
    }
    
    .project-card {
        flex: 0 0 calc(100% - 0.5rem);
        min-width: 280px;
        max-width: 100%;
    }
    
    .project-content {
        padding: 1.5rem;
    }
}

/* Fifth page - Graphic Design Portfolio */
.design-page {
    min-height: 100vh;
    background: #323b4c;
    padding: 4rem 2rem;
}

.design-container {
    max-width: 1600px;
    margin: 0 auto;
}

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

.design-small-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.design-large-title {
    font-size: 5rem;
    font-weight: 900;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: 
        2px 2px 0px rgba(0,0,0,0.3),
        4px 4px 0px rgba(0,0,0,0.2);
}

.slider-wrapper {
    position: relative;
    padding: 0 150px;
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.design-card {
    min-width: calc(25% - 1.5rem);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.design-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.design-card-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #323b4c;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:hover svg {
    fill: white;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    fill: #323b4c;
    transition: fill 0.3s ease;
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.design-footer {
    margin-top: 3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 2px solid #2a2a2a;
    font-weight: 600;
    color: #2a2a2a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact:hover {
    background: #2a2a2a;
    color: white;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #2a2a2a;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social:hover {
    background: #323b4c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 968px) {
    .design-large-title {
        font-size: 3rem;
    }
    
    .design-card {
        min-width: calc(50% - 1rem);
    }
    
    .design-card-image {
        height: 350px;
    }
    
    .slider-wrapper {
        padding: 0 100px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .design-card {
        min-width: calc(100% - 1rem);
    }
    
    .slider-wrapper {
        padding: 0 50px;
    }
}

/* Sixth page - Photography Portfolio */
.photography-page {
    min-height: 100vh;
    background: #ffffff;
    padding: 4rem 2rem;
    position: relative;
}

.photography-container {
    max-width: 1600px;
    margin: 0 auto;
}

.photography-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.photography-decorative-dots {
    position: absolute;
    top: 0;
    right: 10%;
    width: 100px;
    height: 100px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    opacity: 0.3;
}

.photography-decorative-dots span {
    width: 8px;
    height: 8px;
    background: #d0d0d0;
    border-radius: 50%;
}

.photography-main-title {
    font-size: 5rem;
    font-weight: 900;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.photography-main-title::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -30px;
    width: 20px;
    height: 20px;
    background: #ffc107;
    border-radius: 50%;
    border: 3px solid white;
}

.photography-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.photography-filter {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-item {
    font-size: 1rem;
    font-weight: 600;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: relative;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.filter-item:hover {
    color: #ffc107;
}

.filter-item.active {
    color: #2a2a2a;
}

.filter-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffc107;
}

/* Video submenu dropdown */
.filter-item.has-submenu {
    position: relative;
}

.video-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    min-width: 150px;
    z-index: 100;
}

.video-submenu.show {
    display: flex;
}

.video-submenu-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
}

.video-submenu-item:hover {
    background: #ffc107;
    color: white;
}

.video-submenu-item.active {
    background: #ffc107;
    color: white;
}

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

.photography-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: #f5f5f5;
    aspect-ratio: 16/9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photography-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.photography-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photography-item.video-landscape {
    aspect-ratio: 16/9;
}

.photography-item.photo {
    aspect-ratio: 1/1;
}

.photography-item.video-instagram {
    aspect-ratio: 9/16;
}

.photography-item video,
.photography-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-play-overlay:hover {
    background: rgba(255, 193, 7, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-overlay svg {
    width: 40px;
    height: 40px;
    fill: white;
    margin-left: 5px;
}

.photography-card-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffc107;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.photography-card-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.photography-card-icon svg {
    width: 30px;
    height: 30px;
    fill: #ffc107;
}

.photography-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.photography-card-description {
    font-size: 0.95rem;
    color: white;
    line-height: 1.6;
    max-width: 280px;
}

@media (max-width: 968px) {
    .photography-main-title {
        font-size: 3.5rem;
    }
    
    .photography-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .photography-filter {
        gap: 2rem;
    }
    
    .photography-item.video-instagram {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .photography-main-title {
        font-size: 2.5rem;
    }
    
    .photography-subtitle {
        font-size: 1.2rem;
    }
    
    .photography-grid {
        grid-template-columns: 1fr;
    }
    
    .photography-filter {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
}
