* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

:root {
    --dark-grey: #2a2a2a;
    --light-beige: #f5f1eb;
    --muted-teal: #6b8e7a;
    --light-blue: #a8c5d1;
    --light-pink: #e8d5d0;
    --white: #ffffff;
    --black: #1a1a1a;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: transparent;
    padding: 40px 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-left {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.nav-left a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-left a:hover {
    opacity: 0.7;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 3px;
    order: -1;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.icon-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    display: block;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.hero-slide .corner-bracket {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 10;
    border: 2px solid var(--white);
}

.hero-slide .corner-bracket.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.hero-slide .corner-bracket.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.hero-slide .corner-bracket.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.hero-slide .corner-bracket.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.hero-slide.active {
    opacity: 1;
}

.hero-pagination {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.pagination-item {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.pagination-item.active {
    opacity: 1;
}

.pagination-item:hover {
    opacity: 1;
}

/* Meet Section */
.meet-section {
    background-color: #e0e5da;
    padding: 60px 0;
}

.meet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.meet-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meet-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.meet-text {
    padding: 20px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.section-title.white {
    color: var(--white);
}

.section-description {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 40px;
    line-height: 1.8;
}

.section-description.white {
    color: var(--white);
}

.meet-buttons {
    display: flex;
    gap: 20px;
}

/* Buttons */
.btn {
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-pink {
    background-color: var(--light-pink);
    color: var(--black);
}

.btn-pink:hover {
    background-color: #d4c0bb;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 40px;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-blue {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--light-blue);
}

.btn-outline-blue:hover {
    background-color: var(--light-blue);
    color: var(--black);
}

/* Education Section */
.education-section {
    background-color: #598b77;
    padding: 60px 0;
}

.education-section .section-title {
    margin-bottom: 30px;
}

.portfolio-title {
    text-align: center;
}

.portfolio-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.education-cards.portfolio-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.education-card.portfolio-card-item {
    background-color: transparent;
    border-radius: 4px;
    overflow: hidden;
    flex: 0 0 300px;
    cursor: grab;
    transition: transform 0.3s ease;
    user-select: none;
}

.education-card.portfolio-card-item:active {
    cursor: grabbing;
}

.card-image {
    position: relative;
    width: 100%;
    padding-top: 133.33%;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.education-card.portfolio-card-item:active .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    display: none;
}

.card-content {
    padding: 20px;
    background-color: transparent;
    color: var(--white);
}

.card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.card-content p {
    font-size: 13px;
    color: var(--white);
}

/* Experience & Photo Tours Section */
.experience-tours-section {
    position: relative;
    background-color: var(--dark-grey);
    clear: both;
    width: 100%;
}

.experience-tours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 600px 600px;
    min-height: 700px;
}

.experience-text {
    background-color: var(--dark-grey);
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.experience-text .section-title {
    margin-bottom: 35px;
    font-size: 42px;
}

.experience-text .section-description {
    margin-bottom: 40px;
    text-align: left;
    line-height: 1.9;
    font-size: 14px;
}

.experience-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.photo-tours-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.photo-tours-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.photo-tours-text {
    background-color: var(--dark-grey);
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.photo-tours-text .section-title {
    margin-bottom: 35px;
    font-size: 42px;
}

.photo-tours-text .section-description {
    margin-bottom: 40px;
    text-align: left;
    line-height: 1.9;
    font-size: 14px;
}

/* Corner Brackets */
.corner-bracket {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 10;
    border: 2px solid var(--white);
}

.corner-bracket.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.corner-bracket.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.corner-bracket.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.corner-bracket.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background-color: #599d9c;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

/* Prints Section */
.prints-section {
    background-color: #598891;
    padding: 60px 0;
    position: relative;
    clear: both;
    width: 100%;
}

.prints-section .section-title {
    margin-bottom: 30px;
}

.prints-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.prints-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.print-card.print-card-item {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    flex: 0 0 300px;
    user-select: none;
}

.print-card.print-card-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.print-card.print-card-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    padding: 15px;
    color: var(--black);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.print-card.print-card-item .price {
    padding: 0 15px 15px;
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--light-beige);
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.portfolio-card {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.portfolio-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 241, 235, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.portfolio-overlay p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
}

/* Online Course Section */
.online-course-section {
    position: relative;
    clear: both;
    width: 100%;
    overflow: hidden;
    max-width: 100%;
}

.online-course-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 100%;
    min-height: 600px;
}

.online-course-text {
    background-color: #967a80;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.online-course-image {
    width: 100%;
    height: 100%;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #967a80;
}

.online-course-image img {
    width: 85%;
    height: 85%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.online-course-image .corner-bracket {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 10;
    border: 2px solid var(--white);
}

.online-course-image .corner-bracket.top-left {
    top: calc(7.5% + 20px);
    left: calc(7.5% + 20px);
    border-right: none;
    border-bottom: none;
}

.online-course-image .corner-bracket.top-right {
    top: calc(7.5% + 20px);
    right: calc(7.5% + 20px);
    border-left: none;
    border-bottom: none;
}

.online-course-image .corner-bracket.bottom-left {
    bottom: calc(7.5% + 20px);
    left: calc(7.5% + 20px);
    border-right: none;
    border-top: none;
}

.online-course-image .corner-bracket.bottom-right {
    bottom: calc(7.5% + 20px);
    right: calc(7.5% + 20px);
    border-left: none;
    border-top: none;
}


/* Footer */
.footer {
    background-color: #5d6c79;
    padding: 60px 0 0;
    position: relative;
    clear: both;
    width: 100%;
    margin-top: 0;
    z-index: 1;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
}

.footer-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-column {
    width: 100%;
}

.footer-column.footer-left {
    text-align: left;
}

.footer-column.footer-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.footer-column h4 {
    font-size: 16px;
    text-transform: lowercase;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-column p {
    font-size: 12px;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid #ddd;
    background-color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form input::placeholder {
    color: #999;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.social-icons a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.contact-phone {
    margin-bottom: 30px;
}

.phone-number {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
    text-transform: none;
    line-height: 1.6;
}

.contact-form button {
    margin-top: 5px;
    align-self: center;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-column a {
    font-size: 12px;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.footer-links-column a:hover {
    opacity: 0.7;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: relative;
    clear: both;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .meet-content,
    .education-cards,
    .prints-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-tours-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        min-height: auto;
    }
    
    .experience-tours-grid .experience-text {
        order: 1;
    }
    
    .experience-tours-grid .experience-image {
        order: 2;
    }
    
    .experience-tours-grid .photo-tours-image {
        order: 3;
    }
    
    .experience-tours-grid .photo-tours-text {
        order: 4;
    }
    
    .section-divider {
        display: none;
    }
    
    .online-course-content {
        grid-template-columns: 1fr;
    }
    
    .online-course-text {
        order: 1;
    }
    
    .online-course-image {
        order: 2;
    }
    
    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 60px 40px 15px;
        justify-content: space-between;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo {
        font-size: 24px;
        order: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-left {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(42, 42, 42, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        gap: 0;
    }
    
    .nav-left.active {
        transform: translateX(0);
    }
    
    .nav-left a {
        font-size: 18px;
        letter-spacing: 2px;
        padding: 15px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .meet-section {
        padding: 40px 0;
    }
    
    .meet-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .meet-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .meet-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .meet-text {
        padding: 10px 20px;
        text-align: center;
    }
    
    .section-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .meet-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .meet-section {
        padding: 40px 0;
    }
    
    .education-section {
        padding: 40px 0;
    }
    
    .education-section .section-title {
        margin-bottom: 20px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-content h3 {
        font-size: 18px;
    }
    
    .card-content p {
        font-size: 12px;
    }
    
    .meet-content,
    .experience-text,
    .photo-tours-text {
        padding: 40px 30px;
    }
    
    .online-course-content {
        grid-template-columns: 1fr;
    }
    
    .online-course-text {
        order: 1;
    }
    
    .online-course-image {
        order: 2;
        padding: 20px;
    }
    
    .online-course-image img {
        width: 90%;
        height: auto;
        max-height: none;
    }
    
    .corner-bracket {
        width: 20px;
        height: 20px;
    }
    
    .corner-bracket.top-left,
    .corner-bracket.top-right {
        top: 10px;
    }
    
    .corner-bracket.bottom-left,
    .corner-bracket.bottom-right {
        bottom: 10px;
    }
    
    .corner-bracket.top-left,
    .corner-bracket.bottom-left {
        left: 10px;
    }
    
    .corner-bracket.top-right,
    .corner-bracket.bottom-right {
        right: 10px;
    }
    
    .education-card.portfolio-card-item {
        flex: 0 0 250px;
    }
    
    .education-cards.portfolio-slider {
        gap: 20px;
    }
    
    .prints-section {
        padding: 40px 0;
    }
    
    .print-card.print-card-item {
        flex: 0 0 250px;
    }
    
    .prints-slider {
        gap: 20px;
    }
    
    .print-card.print-card-item img {
        height: 200px;
    }
    
    .education-cards,
    .prints-grid,
    .portfolio-grid,
    .book-gallery,
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        margin-bottom: 20px;
    }
    
    .footer-title {
        margin-bottom: 25px;
        font-size: 28px;
    }
    
    .footer-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column.footer-left {
        text-align: center;
    }
    
    .footer-column.footer-right {
        text-align: center;
    }
    
    .contact-phone {
        margin-bottom: 25px;
    }
    
    .phone-number {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        max-width: 100%;
    }
    
    .contact-form {
        max-width: 100%;
        gap: 10px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .contact-form textarea {
        min-height: 70px;
    }
    
    .social-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: var(--dark-grey);
    padding: 80px 0;
    min-height: 100vh;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-tab {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.gallery-tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.gallery-tab.active {
    background-color: var(--white);
    color: var(--dark-grey);
    border-color: var(--white);
}

.gallery-container {
    position: relative;
    min-height: 600px;
}

.gallery-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    animation: fadeIn 0.5s ease;
}

.gallery-grid.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 3/4;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .gallery-tab {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
}

