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

}

html {
    scroll-behavior: smooth
}

/* ===== UPDATED FOR RESPONSIVENESS: Body ===== */
body {
    margin-top: 60px;
    font-family: 'Poppins', sans-serif;
    background-color: #fefefe;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px; /* Prevent very small widths on mobile */
}

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: 40px
}

.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
}

/* ===== UPDATED FOR RESPONSIVENESS: Section ===== */
section {
    min-height: min(100vh, auto); /* Use auto for mobile to prevent cut-off */
    padding: 4rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}

/* ===== UPDATED FOR RESPONSIVENESS: Intro Section ===== */
.intro {
    background: #fff;
    color: #111;
    width: 100%;
    overflow-x: hidden;
}

/* Mobile-first: Stack on mobile */
.intro-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    width: 95%;
    text-align: center;
}

.intro-text {
    flex: 1;
    text-align: center;
    width: 100%;
}

/* Mobile-first: Smaller font on mobile */
.intro h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.intro p {
    margin: .7rem 0;
    color: #333;
    font-size: 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 2rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    text-decoration: none;
}

.intro-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 300px;
}

.intro-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    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;
}



/* ===== UPDATED FOR RESPONSIVENESS: Philosophy Section ===== */
#Philosophy .wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 95%;
    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;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Mobile-first: Full width, reduced height */
.philosophy-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.box-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}


#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;
}

/* ===== UPDATED FOR RESPONSIVENESS: Projects Section ===== */
/* Center the container on all devices */
#Projects .container {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#Projects .wrapper {
    margin-top: 2rem;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    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;
    width: 100%;
    max-width: 100%;
}

#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;
}

/* ===== UPDATED FOR RESPONSIVENESS: Artist/Collaboration Boxes ===== */
.artist-box {
    background: #000000;
    color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-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: auto;
    aspect-ratio: 1 / 1;
    max-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
}
/* ===== UPDATED FOR RESPONSIVENESS: Methodology Section ===== */
#Methodology .method-list {
    list-style: none;
    margin: 2rem auto 0;
    text-align: left;
    max-width: 100%;
    width: 95%;
    padding: 0;
    counter-reset: method-counter
}

#Methodology .method-list li {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: 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;
}

#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: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0
}

.method-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    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.5rem 2rem;
    font-size: .9rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.link{
    text-decoration: none;
    color: #fff;
}

.link:active {
    color:#fff;
}

.link:hover {
    color: #c6ac4f;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-right p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

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

/* Social links icon color - white regardless of state */
.social-links a i {
    color: #fff !important;
}

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

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        width: auto;
        gap: 2rem;
    }

    .footer-right {
        flex-direction: row;
        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
    }
}

/* Mobile Navigation - Hamburger appears below 1024px */
@media (max-width: 1023px) {
    .nav-bar ul {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgb(255 255 255 / .98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        display: none;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        padding: 1rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

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

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

    .nav-bar ul li a {
        padding: 0.5rem 1rem;
        display: inline-block;
    }

    .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
    }
}

/* Desktop Navigation - Full navbar visible at 1024px and above */
@media (min-width: 1024px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-bar ul {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0;
        max-height: none;
        overflow: visible;
    }
}

@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 */
  }

}

/* ===== NEW STYLES FOR ENHANCEMENTS ===== */

/* ===== UPDATED FOR RESPONSIVENESS: Hero Section ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: min(100vh, 70vh);
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-content {
    text-align: center;
    color: #fff;
    padding: 1.5rem;
    width: 95%;
    max-width: 800px;
}

/* Mobile-first: Smaller font */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}


.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.hero-content .cta-btn {
    margin-top: 1rem;
}

/* ===== UPDATED FOR RESPONSIVENESS: Section Titles ===== */
.section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.section-title i {
    color: #c6ac4f;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.emphasis-line {
    margin-top: 2.5rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: #c6ac4f;
    font-style: italic;
    max-width: 800px;
}

/* ===== UPDATED FOR RESPONSIVENESS: Card Grid System ===== */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    padding: 0 0.5rem;
}

.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c6ac4f, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #111;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1000px;
}

.philosophy-item {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Philosophy icon with gold gradient background - matches card-icon styling */
.philosophy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c6ac4f, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.philosophy-icon i {
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.philosophy-item:hover .philosophy-icon i {
    transform: scale(1.1);
}

.philosophy-item h3 {
    font-size: 1.1rem;
    color: #111;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* iPad Mini/Air fix - stack philosophy items vertically (768px - 820px) */
@media (min-width: 768px) and (max-width: 820px) {
    .philosophy-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Nav CTA Button */
.nav-cta {
    background: linear-gradient(45deg, #000000, #c6ac4f);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 172, 79, 0.4);
}

.nav-cta::after {
    display: none !important;
}

/* Closing Statement */
#Closing {
    background: #000000;
    min-height: 50vh;
}

.closing-statement {
    font-size: 2rem;
    font-weight: 500;
    color: #c6ac4f;
    max-width: 800px;
    line-height: 1.6;
    font-style: italic;
}

/* Scroll Animations for Cards */
.card-grid .feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.card-grid .feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.card-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.card-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.card-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }
.card-grid .feature-card:nth-child(5) { transition-delay: 0.5s; }

.philosophy-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.philosophy-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-item:nth-child(1) { transition-delay: 0.1s; }
.philosophy-item:nth-child(2) { transition-delay: 0.2s; }
.philosophy-item:nth-child(3) { transition-delay: 0.3s; }
.philosophy-item:nth-child(4) { transition-delay: 0.4s; }

/* Partners Section */
#partners {
    background: #fff;
    min-height: auto;
    padding: 5rem 2rem;
}

#partners h2 {
    margin-bottom: 3rem;
    color: #111;
    font-size: 1.5rem;
}

/* Contact Section Improvements */
#Contact {
    min-height: auto;
    padding-bottom: 5rem;
}

#Contact h2 {
    color: #fff;
}

#Contact textarea {
    min-height: 150px;
    resize: vertical;
}

/* Responsive Hero */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

    .closing-statement {
        font-size: 1.4rem;
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* ===== BLOG PAGE STYLES ===== */

/* ===== UPDATED FOR RESPONSIVENESS: Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #000000, #1a1a1a, #2d2828);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    min-height: 40vh;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1rem;
    color: #c6ac4f;
    max-width: 90%;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-header-content {
    text-align: left;
}

.blog-title {
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-excerpt {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more-btn,
.read-less-btn {
    background: linear-gradient(45deg, #000000, #c6ac4f);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.read-more-btn:hover,
.read-less-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(198, 172, 79, 0.4);
}

.read-more-btn {
    display: inline-block;
}

.blog-full-content {
    text-align: left;
    border-top: 1px solid #eee;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.blog-full-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.read-less-btn {
    margin-top: 1rem;
}

/* Tickets Page Styles */
.page-header {
    background: linear-gradient(135deg, #000000, #1a1a1a, #2d2828);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    min-height: 50vh;
    padding-top: 120px;
}

#tickets-intro {
    background: #fff;
    min-height: auto;
    padding: 4rem 2rem;
}

#tickets-intro .section-intro {
    color: #555;
}

#live-events {
    background: #f8f8f8;
}

.event-card .cta-btn {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    padding: 0.7rem 2rem;
}

#shop {
    background: #fff;
    min-height: auto;
    padding: 5rem 2rem;
}

.coming-soon-card {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: center;
    color: #fff;
}

.coming-soon-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.coming-soon-card > p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-block;
    background: #c6ac4f;
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.offerings-list {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.offerings-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.offerings-list li:last-child {
    border-bottom: none;
}

.offerings-list li i {
    color: #c6ac4f;
    width: 20px;
}

/* Responsive Blog */
@media (max-width: 767px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header {
        min-height: 40vh;
        padding-top: 100px;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .blog-grid {
        padding: 1rem 0.5rem;
    }
    
    .blog-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .coming-soon-card {
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-card h3 {
        font-size: 1.4rem;
    }
}
