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

}

html {
    scroll-behavior: smooth
}

body {
    margin-top: 60px;
    font-family: 'Poppins', sans-serif;
    background-color: #fefefe;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: #fff0
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards
}

.typing {
    overflow: hidden;
    border-right: 2px solid #111;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink 0.75s step-end infinite
}

.pulse {
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

.social-links a:hover i {
    animation: rotate 0.5s ease-in-out
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem 1.5rem;
    background: rgb(255 255 255 / .15);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgb(0 0 0 / .05);
    z-index: 1000
}

.nav-bar .logo {
    width: 80px
}

.nav-bar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem
}

.nav-bar a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: color 0.3s ease, font-weight 0.3s ease;
    position: relative
}

.nav-bar a:hover {
    color: #c6ac4f;
    font-weight: 700
}

.nav-bar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #111;
    transition: width 0.3s ease
}

.nav-bar a:hover::after {
    width: 100%
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem
}

section {
    min-height: 100vh;
    padding: 5rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center
}

.intro {
    background: #fff;
    color: #111
}

.intro-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    width: 90%
}

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

.intro h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 1rem
}

.intro p {
    margin: .7rem 0;
    color: #333;
    font-size: 1.1rem
}

.cta-btn {
    margin-top: 2rem;
    background: linear-gradient(45deg, #000000, #c6ac4f, #897433, #41330e, #ecda71 );
    background-size: 400% 400%;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
}

.intro-image {
    flex-shrink: 0
}

.intro-image img {
    width: 600px;
    border-radius: 15px;
    object-fit: cover
}

.cta-btn:hover {
    transform: scale(1.05)
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

#About {
    background-color: #000000
}

#About p {
    max-width: 700px;
    margin-top: 1rem;
    color: #c6ac4f;
}

#About h2 {
    color: #fff;
}



#Philosophy .wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 90%;
    max-width: 900px
}

#Philosophy .box {
    background: #000000;
    background-size: 400% 400%;
    border: 1px solid #020202;
    padding: 0;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 20px rgb(0 0 0 / .05);
    display: flex;
    overflow: hidden;
    margin-bottom: 2rem;
    
}


.philosophy-image {
    width: 50%;
    height: 900px;
    object-fit: cover
}

.box-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center
}
#Philosophy {
    background: #fff;
}

#Philosophy .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgb(0 0 0 / .1)
}

#Philosophy .box {
    opacity: 0;
    transform: translateY(40px)
}

#Philosophy .box.show {
    animation: spread 0.8s forwards
}

#Philosophy h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    font-size: 1.4rem;
    margin-bottom: .7rem;
    color: #ffffff
}

#Philosophy p {
    color: #fff;
}

#Philosophy h2 i {
    font-size: 1.6rem;
    color: #f9f5f5;
    transition: transform 0.3s ease
}

#Philosophy .box:hover h2 i {
    transform: rotate(15deg)
}

#Projects {
    background: linear-gradient( 78deg, #1c1818, #1c1c1c, #0c0c0b, #a6a5a3, #1b180f);
    background-size: 400% 400%;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite
}

#Projects h2  {
    color: #fff;
}

.project-description  {
    color: #fff;
}

#Projects .wrapper {
    margin-top: 2rem;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

#Projects .box {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 10px 20px rgb(0 0 0 / .05);
    transition: transform 0.3s ease
}

#Projects .box:hover {
    transform: translateY(-8px)
}

.project-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1rem
}

#Collaborations {
    background: linear-gradient(45deg, #000000, #c6ac4f, #897433, #2d2828, #ecda71 );
    background-size: 400% 400%;
    color: #fff;
    transition: all 3s ease;
    animation: gradientShift 7s ease infinite;
}

#Collaborations .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 20px;
}

.artist-name .artist-description{
    color: #fff;
}

.artist-box {
    background: #000000;
    color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    width: 260px;
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow
}

@keyframes spread {
    to {
        opacity: 1
    }
}

.artist-box.show {
    animation: spread 0.8s ease-out forwards
}

.artist-box:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 35px rgb(0 0 0 / .15);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.artist-box img {
    width: 100%;
    height: 260px;
    object-fit: cover
}

.artist-box h3 {
    margin-top: .8rem;
    color: #ebe5e5
}

.artist-box p {
    font-size: .9rem;
    color: #f9f8f8;
    margin: .5rem 1rem 1.2rem
}

#Methodology {
    background: #f8f8f8;
    padding: 3rem 2rem
}

#Methodology h2 {
    color: #fff;
}

#Methodology  {
    background: linear-gradient( 78deg, #1c1818, #1c1c1c, #0c0c0b, #a6a5a3, #c6ac4f);
    background-size: 400% 400%;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite
}
#Methodology .method-list {
    list-style: none;
    margin: 2rem auto 0;
    text-align: left;
    max-width: 700px;
    padding: 0;
    counter-reset: method-counter
}

#Methodology .method-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgb(0 0 0 / .1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-wrap: wrap
}

#Methodology .method-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgb(0 0 0 / .15)
}

#Methodology .method-list li::before {
    content: counter(method-counter);
    counter-increment: method-counter;
    background: linear-gradient(45deg, #c6ac4f, #000000);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0
}

.method-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0
}

.method-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .5rem
}

#Methodology .method-list li i {
    color: #c6ac4f;
    font-size: 1.4rem;
    flex-shrink: 0
}

#Methodology .method-list li span {
    font-weight: 700;
    color: #111
}

.carousel {
    margin: 100px auto;
    width: 90%;
    border: none;
    display: flex;
    overflow-x: auto;
    gap: 1em;
}

.carousel::-webkit-scrollbar{
    display: none;
}

.group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    animation: spin 10s infinite linear;
    padding-right: 1em;
}

.card {
    flex: 0 0 5em;
    height: 5em;
    padding: 1em;
    font-size: 3rem;
    border-radius: .2em;
    text-align: center;
    align-content: center;
}

@keyframes spin {
    from {translate: 0;}
    to {translate: -100%;}
}
#Contact {
    background: linear-gradient(45deg, #000000, #c6ac4f, #897433, #2d2828, #ecda71 );
    background-size: 400% 400%;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    margin: 0;
    padding: 0;
    color: #fff;
}

#Contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 90%;
    max-width: 500px;
    margin-top: 1.5rem
}

#Contact input,
#Contact textarea {
    padding: .9rem;
    border: 1px solid #eee;
    border-radius: 10px;
    outline: none;
    font-size: 1rem
}

.footer {
    background: linear-gradient(45deg, #000000, #c6ac4f, #897433, #2d2828, #ecda71 );
    background-size: 400% 400%;
    text-align: center;
    padding: 1;
    font-size: .9rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    margin: 0;
    padding: 0;
}

.footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: .5rem
}

.footer a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .3rem
}

.footer a:hover {
    color: #050404
}

@media (min-width:768px) {
    .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 1.5rem 2rem
    }

    .footer p:first-child {
        margin: 0
    }

    .footer-right {
        display: flex;
        align-items: center;
        gap: 1rem
    }

    .footer-right p {
        margin: 0
    }

    .footer ul {
        margin-top: 0
    }
}

@media (min-width:768px) {
    #Philosophy .wrapper {
        grid-template-columns: 1fr 1fr
    }

    #Projects .wrapper {
        flex-direction: row;
        flex-wrap: wrap
    }
}

@media (max-width:767px) {
    .intro-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem
    }

    .intro-text {
        text-align: center
    }

    .intro h1 {
        font-size: 3rem
    }

    .intro-image img {
        width: 250px
    }

    #Philosophy .box {
        flex-direction: column
    }

    .philosophy-image {
        width: 100%;
        height: 200px
    }

    .box-content {
        padding: 1rem
    }

    .method-image {
        width: 60px;
        height: 60px
    }

    #Methodology .method-list li {
        flex-direction: column;
        text-align: center;
        gap: .5rem
    }

    .method-content {
        flex-direction: column;
        gap: .5rem
    }

    .nav-bar {
        padding: .5rem 1rem
    }

    .nav-bar .logo {
        width: 80px
    }

    section {
        padding: 4rem 1rem 2rem
    }

    #Philosophy .wrapper {
        width: 95%
    }

    #Projects .wrapper {
        width: 95%
    }

    #Collaborations .wrapper {
        gap: 1rem
    }

    .artist-box {
        width: 100%;
        max-width: 300px
    }

    #Methodology {
        padding: 2rem 1rem
    }

    #Methodology .method-list {
        max-width: 100%
    }

    #Contact form {
        width: 95%
    }

    .footer {
        padding: 1rem;
        font-size: .8rem
    }
}

@media (max-width:600px) {
    .nav-bar ul {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgb(255 255 255 / .95);
        flex-direction: column;
        gap: 0;
        display: none;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-bar ul.show-nav {
        display: flex;
        text-align: center
    }

    .nav-bar ul li {
        margin: 1rem 0
    }

    .nav-toggle {
        display: block
    }

    .intro h1 {
        font-size: 2.5rem
    }

    .intro-image img {
        width: 200px
    }

    .philosophy-image {
        height: 150px
    }

    .artist-box {
        width: 100%;
        max-width: 250px
    }

    .method-image {
        width: 50px;
        height: 50px
    }
}

@media (min-width:768px) and (max-width:1023px) {
    .intro-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem
    }

    .intro h1 {
        font-size: 3.2rem
    }

    .intro-image img {
        width: 400px
    }

    #Philosophy .wrapper {
        flex-direction: column;
        align-items: center
    }

    .philosophy-image {
        height: 400px
    }

    #Projects .wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center
    }

    .artist-box {
        width: 45%;
        max-width: 280px
    }

    #Methodology .method-list li {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .method-image {
        width: 70px;
        height: 70px
    }

    .footer {
        flex-direction: column;
        text-align: center;
        gap: 1rem
    }
}

@media (min-width:1024px) {
    .intro h1 {
        font-size: 5rem
    }

    .intro-image img {
        width: 700px
    }
}

@media (min-width:1200px) {
    .intro h1 {
        font-size: 6rem
    }

    .intro-image img {
        width: 800px
    }
}

/* iPad Pro landscape and portrait */
@media (min-width: 768px) and (max-width: 1024px) {

  html, body {
    overflow-x: hidden; /* ensures no horizontal scroll */
  }

}