/* FONTS */
/* Sarina font loaded from Google Fonts in HTML */

/* CSS VARIABLES */
:root {
    --black: #161616;
    --white: #FFFFFF;
    --grey: #9E9E9E;
    --orange: #FF5B19;
    --blue: #B2CDFF;
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--white);
    color: var(--black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    z-index: 9998;
}

.header-left {
    flex: 1;
}

.tagline {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-style: italic;
    color: var(--black);
    white-space: nowrap;
}

.tagline-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}


.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: var(--grey);
    transition: color 0.3s ease;
}

.nav-link.active {
    font-weight: bold;
    color: var(--black);
    position: relative;
}

.nav-link:hover {
    color: var(--black);
    font-weight: bold;
}

.active-indicator {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--orange);
    border-radius: 50%;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    animation-name: none;
}

@keyframes bounce-down {
    0% {
        transform: translateX(-50%) translateY(0);
        animation-timing-function: ease-out;
    }
    25% {
        transform: translateX(-50%) translateY(15px);
        animation-timing-function: linear;
    }
    32% {
        transform: translateX(-50%) translateY(15px);
        animation-timing-function: ease-in;
    }
    65% {
        transform: translateX(-50%) translateY(-5px);
        animation-timing-function: ease-out;
    }
    82% {
        transform: translateX(-50%) translateY(2px);
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

.header-right {
    flex: 1;
    text-align: right;
}

.contact-link {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 8px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--orange);
}

/* HAMBURGER MENU (Hidden on Desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger-line:first-child {
    top: 10px;
}

.hamburger-line:last-child {
    bottom: 10px;
}

.hamburger.active .hamburger-line:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: var(--white);
}

.hamburger.active .hamburger-line:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background-color: var(--white);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--black);
    z-index: 9997;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-link {
    font-family: Arial, sans-serif;
    font-size: 24px;
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-nav-link.active {
    font-weight: bold;
}

.mobile-nav-link:hover {
    color: var(--orange);
}

.mobile-contact-link {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
    margin-top: 20px;
}

.mobile-contact-link:hover {
    color: var(--orange);
}

/* MAIN CONTENT */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: visible;
}

/* GALLERY */
.gallery-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 200px 20px 120px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: center;
    width: 100%;
}

.gallery-arrows {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.gallery-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--black);
    border-radius: 999px;
    background: var(--white);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    position: relative;
}

/* Arrow chevron styling */
.gallery-arrow::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

#arrowLeft::before {
    transform: rotate(-135deg);
}

#arrowRight::before {
    transform: rotate(45deg);
}

.gallery-arrow:hover:not(:disabled) {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.gallery-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

/* PROJECT CARDS */
.project-card {
    position: relative;
    flex-shrink: 0;
    width: 230px;
    height: 300px;
    cursor: pointer;
    overflow: visible;
    transition: all 0.3s ease;
    background-color: var(--white);
    display: block;
    text-decoration: none;
}

.project-card:hover {
    width: 320px;
    height: 420px;
    z-index: 100;
    margin-top: -60px;
    margin-bottom: -60px;
    overflow: visible;
}

.last-project:hover {
    margin-left: -90px;
    margin-right: 0;
}

.project-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.project-image {
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    object-fit: cover;
    position: absolute;
    top: -15px;
    left: -15px;
    transition: none;
}

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

.project-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    z-index: 10;
    pointer-events: none;
    transition: max-width 0.3s ease, max-height 0.3s ease;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

.project-logo.dmd-logo {
    max-width: 38%;
    max-height: 38%;
    filter: drop-shadow(0 0 10px #29177a);
}

.project-logo.blor-logo {
    max-width: 32%;
    max-height: 32%;
    filter: brightness(0) invert(1) drop-shadow(0 0 16px #29177a);
}

.project-logo.tanapets-logo {
    max-width: 40%;
    max-height: 40%;
    filter: drop-shadow(0 0 12px rgba(41, 23, 122, 0.5));
}

.project-logo.pdp-logo {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--black);
    text-align: center;
    line-height: 1.2;
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
}

.project-logo.instagram-logo {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
}

.project-image.pdp-image, .project-image.instagram-image {
    filter: blur(2px);
}

.illustration-logo {
    max-width: 25%;
    max-height: 25%;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(101, 67, 33, 0.6));
}

.illustration-logo-white {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(101, 67, 33, 0.6)) !important;
}

.smaller-logo {
    max-width: 50%;
    max-height: 50%;
}

.project-info {
    position: absolute;
    top: -80px;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--black);
    background-color: transparent;
    padding: 5px 0;
    border-radius: 0;
    max-width: 100%;
    white-space: nowrap;
    z-index: 1001;
    pointer-events: none;
}

/* Mobile: project-info always visible */
@media (max-width: 768px) {
    .project-info {
        top: -80px;
        opacity: 1;
        z-index: 1;
        transition: opacity 0.3s ease;
    }
}

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

.project-title {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 4px;
    font-style: normal;
}

.project-description {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 2px;
    font-style: italic;
}

.project-year {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: var(--black);
    font-style: italic;
}

/* COMING SOON PAGE */
.coming-soon-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coming-soon-text {
    font-family: 'Sarina', cursive;
    font-size: 60px;
    font-weight: normal;
    color: var(--black);
}

.underline-svg {
    width: auto;
    height: 80px;
    max-width: 100%;
}

/* PROJECT PAGE STYLES */
.project-page {
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.project-header {
    max-width: 1000px;
    margin: 60px auto 50px;
    width: 100%;
    padding: 0 40px;
}

.project-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.project-page-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--black);
    margin: 0 0 20px 0;
    text-align: center;
}

.project-external-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.project-external-link:hover {
    color: var(--orange);
}

.arrow-diagonal {
    width: 14px;
    height: 14px;
    display: inline-block;
    background-color: currentColor;
    mask: url('img/arrow.svg') center/contain no-repeat;
    -webkit-mask: url('img/arrow.svg') center/contain no-repeat;
    transform: rotate(135deg);
}

.title-divider {
    width: 100%;
    height: 1px;
    background-color: var(--black);
    margin-bottom: 20px;
}

.project-page-description {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-style: italic;
    color: var(--black);
    margin: 0;
    padding: 0px 80px;
    text-align: center;
    line-height: 1.4;
}

/* Hero Section */
.hero-section {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 0 40px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 1000px;
    height: 500px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    filter: brightness(0.7);
}

.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 25%;
    max-height: 25%;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.8));
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.project-video {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0;
    padding-bottom: 60px;
}

.video-crop-container {
    width: 85%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
}

.video-cropped {
    width: 105%;
    max-width: 105%;
    margin-left: -2.5%;
    padding-bottom: 0;
}

.content-image {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

/* Illustration Gallery */


.illustration-gallery .content-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.image-container {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  gap: 20px;
  min-height: 50vh; /* Ocupa toda la altura de la pantalla */
}

.image-container img {
  height: 500px;
  width: 500px; /* Mismo ancho para ambas */
  object-fit: cover; /* Ajusta la imagen sin distorsionar */
}

/* DMD GALLERY */
.dmd-gallery {
    gap: 20px;
    padding: 160px;
    display: flex;
    flex-direction: column;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.image-description {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
    font-family: inherit;
    line-height: 1.4;
}

/* Next Case Section */
.next-case-section {
    background-color: var(--black);
    padding: 70px 0 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.next-case-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.next-case-label {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    margin: 0;
}

.next-case-label a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

.next-case-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--orange);
    border-radius: 50%;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    animation-name: none;
}

.next-case-content {
    max-width: 800px;
    margin: 0 auto 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.next-case-content:hover {
    opacity: 0.8;
}

.next-case-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin: 0 0 10px 0;
}

.next-case-category {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-style: italic;
    color: var(--white);
    margin: 0;
}

.next-case-image-container {
    position: relative;
    width: 85%;
    margin: 0 auto;
}

.next-case-reveal-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 100px 100px 0 0;
    padding-top: 30px;
}

.next-case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.7s ease-out, opacity 0.7s ease-out;
    border-radius: 100px 100px 0 0;
}

.next-case-logo {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 35%;
    max-height: 35%;
    pointer-events: none;
    z-index: 20;
}

.illustration-next-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(101, 67, 33, 0.6));
    max-width: 25%;
    max-height: 25%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 20;
}

.reveal-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    max-width: 110%;
    height: 2px;
    background-color: var(--white);
    z-index: 10;
}

.all-work-button {
    display: inline-block;
    padding: 15px 40px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 40px;
}

.all-work-button:hover {
    background-color: var(--white);
    color: var(--black);
}

/* FOOTER */
footer {
    padding: 0;
    margin: 0;
    text-align: center;
    background-color: var(--black);
    border-top: 1px solid var(--white);
}

.footer-logo-container {
    padding: 40px 0 10px;
    text-align: center;
}

.footer-bottom-logo {
    width: 40px;
    height: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px 40px;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-left-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.footer-left .name {
    color: var(--white);
    margin: 0;
    font-size: 14px;
}

.footer-left .name-first,
.footer-left .name-last {
    color: var(--white);
    font-size: 14px;
}

.footer-center {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.footer-nav-link {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav-link.active {
    color: var(--white);
    font-weight: bold;
}

.footer-nav-link:hover {
    color: var(--white);
    font-weight: bold;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-contact-link {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: var(--grey);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-link {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--orange);
}

.name {
    font-family: Arial, sans-serif;
    font-size: 28px;
    color: var(--black);
    letter-spacing: 1px;
}

.name-first {
    font-style: italic;
    font-weight: normal;
}

.name-last {
    font-weight: bold;
    font-style: normal;
}

.name-footer {
    padding: 40px 20px;
    width: 100%;
    background: none;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px;
    }

    .header-left {
        flex: 0;
        max-width: 150px;
    }

    .header-left .tagline {
        display: none;
    }

    .header-left::before {
        content: none;
    }

    .tagline-link {
        display: inline-block;
        width: 40px;
        height: 40px;
        background-image: url('./logocolor.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .header-center {
        display: none;
    }

    .header-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .gallery-container {
        padding: 0;
    }

    .gallery-scroll {
        padding: 160px 20px 120px 20px;
    }

    .gallery-arrows {
        display: none;
    }

    .arrow-left {
        left: 10px;
    }

    .arrow-right {
        right: 10px;
    }

    .project-card {
        width: 280px;
        height: 380px;
    }

    /* Prevent hover/click growth on mobile */
    .project-card:hover {
        width: 280px;
        height: 380px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .project-card:hover .project-image {
        transform: none;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .coming-soon-text {
        font-size: 40px;
    }

    .underline-svg {
        height: 50px;
    }

    .name {
        font-size: 18px;
    }

    /* PROJECT PAGE RESPONSIVE */
    .project-header {
        margin: 40px 20px 40px;
        text-align: center;
    }

    .project-title-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .project-page-title {
        font-size: 36px;
        text-align: center;
    }

    .project-external-link {
        font-size: 15px;
        padding-bottom: 15px;;
    }

    .title-divider {
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
    }

    .project-page-description {
        font-size: 13px;
        line-height: 1.4;
        padding: 0 20px;
    }

    .hero-section {
        padding: 0 20px;
    }

    .hero-image-container {
        width: 100%;
        height: auto;
        aspect-ratio: 2/1;
    }

    .content-section {
        padding: 0 20px;
    }

    .content-section img,
    .content-section video {
        margin-bottom: 20px;
    }
  .image-container {
    flex-direction: column;
  }
  
  .image-container img {
    width: 100%; /* Ocupa el ancho completo en móvil */
    max-width: 400px; /* Ancho máximo en móvil */
    height: 400px;
  }


    /* Next Case Section */
    .next-case-section {
        padding: 50px 20px 60px;
    }

    .next-case-header {
        margin-bottom: 40px;
    }

    .next-case-label {
        font-size: 24px;
    }

    .next-case-title {
        font-size: 28px;
    }

    .next-case-category {
        font-size: 14px;
    }

    .next-case-image-container {
        width: 85%;
        padding-top: 20px;
        max-width: 320px;
        margin: 0 auto;
    }

    .next-case-reveal-wrapper {
        height: 250px;
    }

    .reveal-line {
        width: 120%;
    }

    .all-work-button {
        padding: 12px 30px;
        font-size: 14px;
        margin-top: 30px;
    }

    /* FOOTER RESPONSIVE */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        width: 100%;
    }

    .footer-left .name {
        font-size: 20px;
    }

    .footer-center {
        flex-direction: column;
        gap: 20px;
    }

    .footer-contact-link {
        font-size: 14px;
        display: inline-block;
    }

    .footer-logo-container {
        padding: 30px 0 10px;
    }

    .footer-bottom-logo {
        width: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .copyright {
        font-size: 11px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        font-size: 11px;
    }

}

/* --- ABOUT PAGE STYLES --- */

/* About Main Section */
.about-main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px 60px 40px;
    background: var(--white);
}

.about-main-inner {
    display: flex;
    align-items: flex-start;
    gap: 130px;
    max-width: 1200px;
    width: 100%;
    justify-content: flex-start;
}

.about-photo {
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--black);
}

.about-photo img {
    /*border-radius: 20px;*/
    width: 300px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.2s ease-out;
    transform: scale(1.1);
}

.about-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 0;
}

.about-name-footer-style {
    font-family: Arial, sans-serif;
    font-size: 28px;
    color: var(--black);
    letter-spacing: 1px;
    margin: 0;
    font-weight: normal;
    line-height: 1.2;
}

.about-name-footer-style .name-first {
    font-style: italic;
    font-weight: normal;
}

.about-name-footer-style .name-last {
    font-weight: bold;
    font-style: normal;
}

.about-description {
    font-size: 16px;
    color: var(--black);
    line-height: 1.5;
    font-family: Arial, sans-serif;
    margin: 0;
    font-style: italic;
    max-width: 480px;
}

.about-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 20px;
}

.about-btn {
    padding: 12px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.about-btn:hover {
    background: var(--black);
    color: var(--white);
}

/* Services Section */
.about-services {
    width: 100%;
    padding: 80px 40px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-title {
    font-family: Arial, sans-serif;
    font-size: 40px;
    font-weight: 100;
    color: var(--black);
    margin: 0 0 60px 0;
    text-align: left;
    width: 100%;
    max-width: 1200px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item h3 {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: var(--black);
    margin: 0;
}

.service-item p {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: var(--black);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section with Background Circles */
.about-cta-bg {
    width: 100%;
    min-height: 340px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
}

/* Blob elements */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

.blob-orange-1 {
    width: 600px;
    height: 600px;
    background: var(--orange);
    top: -150px;
    left: -200px;
    animation: blob 14s infinite ease-in-out;
}

.blob-orange-2 {
    width: 500px;
    height: 500px;
    background: var(--orange);
    bottom: -100px;
    right: 100px;
    animation: blob 16s infinite ease-in-out;
    animation-delay: -2s;
}

.blob-blue-1 {
    width: 700px;
    height: 700px;
    background: var(--blue);
    bottom: -250px;
    right: -200px;
    animation: blob 18s infinite ease-in-out;
}

.blob-blue-2 {
    width: 550px;
    height: 550px;
    background: var(--blue);
    top: 50px;
    right: -150px;
    animation: blob 20s infinite ease-in-out;
    animation-delay: -3s;
}

.blob-blue-3 {
    width: 450px;
    height: 350px;
    background: var(--blue);
    top: 200px;
    left: -250px;
    animation: blob 22s infinite ease-in-out;
    animation-delay: -6s;
}

.blob-white-1 {
    width: 450px;
    height: 450px;
    background: var(--white);
    top: 100px;
    left: 10%;
    opacity: 0.6;
    animation: blob 22s infinite ease-in-out;
    animation-delay: -1s;
}

.blob-white-2 {
    width: 480px;
    height: 480px;
    background: var(--white);
    bottom: 50px;
    left: 20%;
    opacity: 0.4;
    animation: blob 25s infinite ease-in-out;
    animation-delay: -4s;
}

.blob-white-3 {
    width: 520px;
    height: 520px;
    background: var(--white);
    top: -100px;
    right: 200px;
    opacity: 0.75;
    animation: blob 30s infinite ease-in-out;
    animation-delay: -5s;
}

/* Blurred background circles - Orange (kept for legacy compatibility) */
.about-cta-bg::before {
    display: none;
}

/* Blurred background circles - Blue (kept for legacy compatibility) */
.about-cta-bg::after {
    display: none;
}

.about-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.cta-arrow {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-arrow-down {
    transform: rotate(270deg);
}

.cta-arrow-up {
    transform: rotate(90deg);
}

.cta-button {
    padding: 14px 40px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--black);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--black);
    color: var(--white);
}

.about-cta-bg:hover .cta-arrow-down {
    animation: bounce-down-arrow 0.8s infinite;
}

.about-cta-bg:hover .cta-arrow-up {
    animation: bounce-up-arrow 0.8s infinite;
}

@keyframes bounce-down-arrow {
    0%, 100% {
        transform: translateY(0) rotate(270deg);
    }
    50% {
        transform: translateY(8px) rotate(270deg);
    }
}

@keyframes bounce-up-arrow {
    0%, 100% {
        transform: translateY(0) rotate(90deg);
    }
    50% {
        transform: translateY(-8px) rotate(90deg);
    }
}

@keyframes blob {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(150px, -200px) scale(1.08);
    }
    50% {
        transform: translate(-200px, -300px) scale(0.95);
    }
    75% {
        transform: translate(250px, -400px) scale(1.12);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-main-inner {
        gap: 50px;
    }

    .about-photo img {
        width: 320px;
        height: 300px;
        transition: none;
    }

    .about-description {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .about-main {
        padding: 60px 20px 40px 20px;
    }

    .about-main-inner {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .about-photo img {
        width: 40vw;
        margin-left: calc(-20vw + 50%);
        height: 40vw;
        aspect-ratio: 1;
    }

    .about-info {
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .about-name-footer-style {
        font-size: 32px;
    }

    .about-description {
        font-size: 16px;
        max-width: 100%;
    }

    .about-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-btn {
        width: 100%;
    }

    .about-services {
        padding: 60px 20px;
    }

    .services-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-item h3 {
        font-size: 16px;
    }

    .service-item p {
        font-size: 14px;
    }

    .about-cta-bg {
        min-height: 280px;
        padding: 40px 20px;
    }

    .cta-arrow {
        width: 32px;
        height: 32px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* --- CONTACT PAGE STYLES --- */

/* Contact Main Section */
.contact-main {
    width: 100%;
    min-height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 40px;
    background: var(--white);
}

.contact-container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    font-family: Arial, sans-serif;
    font-size: 28px;
    color: var(--black);
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.contact-underline {
    width: auto;
    height: 60px;
    max-width: 100%;
}

/* Contact Form */
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-number {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: var(--orange);
}

.form-group input,
.form-group textarea {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 25px;
    padding: 12px 20px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    border-radius: 20px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9E9E9E;
}

.contact-submit-btn {
    align-self: center;
    padding: 14px 50px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
    border: 1px solid var(--black);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.contact-submit-btn:hover {
    background: var(--black);
    color: var(--white);
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-main {
        padding: 80px 20px 60px 20px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-underline {
        height: 50px;
    }

    .contact-title-wrapper {
        margin-bottom: 40px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-number {
        font-size: 11px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 16px;
    }

    .contact-submit-btn {
        padding: 12px 40px;
        font-size: 16px;
    }
}

/* SHOP PAGE STYLES */
.shop-page {
    padding: 15px 0 0 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.shop-header {
    max-width: 100%;
    margin: 0;
    width: 100%;
    padding: 120px 40px 80px 40px;
    text-align: center;
    background-image: url('img/shop/Cover.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(36, 34, 33, 0.4);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.shop-header h1 {
    position: relative;
    z-index: 1;
}

.shop-arrow-link {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.shop-arrow-link:hover {
    transform: translateY(5px);
}

.shop-arrow {
    width: auto;
    height: 40px;
    transform: rotate(-90deg);
}

.shop-title {
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: 700px;
    color: var(--white);
    margin: 0;
}

.shop-grid {
    max-width: 1200px;
    margin: 0 auto 80px;
    width: 100%;
    padding: 180px 40px 80px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.shop-product {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.product-image-wrapper:hover {
    opacity: 0.7;
}

.product-image-wrapper.placeholder-gradient {
    background: linear-gradient(135deg, #FF5B19 0%, #FFB399 100%);
    opacity: 0.5;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: var(--orange);
    margin: 0;
    text-align: left;
    padding-top: 15px;
}

.product-description {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: var(--orange);
    opacity: 60%;
    margin: 0;
    text-align: left;
    padding-bottom: 20px;
}

.shop-button {
    padding: 12px 30px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--black);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    align-self: flex-start;
}

.shop-button:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Responsive Shop Page */
@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 84px;
        padding: 40px 80px;
    }

    .shop-header {
        padding: 0 30px;
        margin: 50px auto 60px;
    }

    .shop-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .shop-page {
        padding: 0;
    }

    .shop-header {
        margin: 10px auto 50px;
        padding: 20px 20px;
    }

    .shop-arrow-link {
        margin-top: 40px;
    }

    .shop-title {
        font-size: 36px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 40px;
        margin: 0 auto 60px;
    }

    .shop-product {
        gap: 12px;
    }

    .product-image-wrapper {
        padding-bottom: 70%;
    }

    .product-title {
        font-size: 14px;
        text-align: center;
    }

    .product-description {
        font-size: 12px;
        text-align: center;
    }

    .shop-button {
        padding: 10px 24px;
        font-size: 12px;
        align-self: center;
    }
}

/* PDP GRID STYLES */
.pdp-grid-section {
    padding: 150px 80px;
    display: flex;
    justify-content: center;
}

.pdp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.pdp-grid-item {
    position: relative;
    aspect-ratio: 1;
    overflow: visible;
    background-color: #f0f0f0;
}

.grid-number {
    position: absolute;
    top: -20px;
    left: 0;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: var(--black);
    z-index: 10;
    opacity: 0.6;
}

.grid-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

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

/* Responsive PDP Grid */
@media (max-width: 1024px) {
    .pdp-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }

    .pdp-grid-section {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .pdp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 27px;
    }

    .pdp-grid-section {
        padding: 40px 20px;
    }

    .grid-number {
        font-size: 10px;
        top: -20px;
        left: 0;
    }
}

/* LIGHTBOX STYLES */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10000;
    padding: 20px;
    overflow: auto;
}

.lightbox-overlay.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-image-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
}

.lightbox-image {
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
    border-radius: 4px;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    transition: background 0.2s ease;
    z-index: 10001;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* INSTAGRAM GRID STYLES */
.instagram-grid-section {
    padding: 150px 40px;
    display: flex;
    justify-content: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.instagram-grid-item {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: visible;
    background-color: #f0f0f0;
}

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

.grid-number {
    position: absolute;
    top: -25px;
    left: 0;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: var(--black);
    z-index: 10;
    opacity: 0.6;
}

.grid-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.grid-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

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

/* Responsive Instagram Grid */
@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .instagram-grid-section {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .instagram-grid-section {
        padding: 40px 20px;
    }

    .grid-number {
        font-size: 10px;
        top: -20px;
        left: 0;
    }
}
