body{
    background-color: #faf5f1;
}
.cinzel {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.red{
    color: #fe0000;
}
h1{
    font-size: 14rem;
    margin: 0;
}
h2{
    font-size: 14rem;
    margin: -110px;
    margin-bottom: 3rem;
}
.menu-des{
    justify-content: end;
    display: flex;
}
.section-one{
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}
.section-one-down{
    display: flex;
    justify-content: center;
   
    gap: 3rem;
    margin-bottom: 11rem;
}
.section-one-hipen{
    background-color: red;
    width: 142px;
    height: 3px;
    margin-top: 2rem;
}
.section-one-louise{
    padding: 0rem 4rem;
}



header{
    display: flex;
    justify-content: space-between;
    padding: 1rem 8rem;
    position: sticky;
    align-items: center;
    top: 0;
    z-index: 1;
      background-color: #faf5f1;
}
.header-logo{
    color: #727272;
}
.rotate {
      width: 40px; /* Adjust as needed */
      height: 40px;
      animation: spin 4s linear infinite;
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }


    

    .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1.5px solid #4d4a4a;
        }

        /* Left Section */
        .left-section {
            padding: 60px 20px;
             background-color: #faf5f1;
          
            flex-direction: row;
            justify-content: flex-start;
            gap: 3rem;
        }
        .left-section-two {
            padding: 60px 20px;
             background-color: #faf5f1;
          
            flex-direction: row;
            justify-content: space-between;
            gap: 3rem;
        }
        .image-top{
            margin-top: 2rem;
        }
        .image-top-image{
            width: 100%;
            height: auto;
        }
        .column{
            display: flex;
             gap: 3rem;
             flex-direction: row;
            justify-content: flex-start;
            border-bottom: 1px solid #4d4a4a;
        }
        .column-two{
            display: flex;
             margin: 0rem 5rem;
             flex-direction: row;
            justify-content: space-between;
            padding: 3rem 3rem;
            border-bottom: 1px solid #4d4a4a;
         
        }

        .browse-text {
            font-size: 14px;
            color: #727272;
            margin-bottom: 20px;
            letter-spacing: 2px;
            padding: 0rem .7rem;
            text-transform: uppercase;
        }

        .main-title {
            font-size: 48px;
            color: rgb(254, 0, 0);
            font-weight: 300;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .description {
            font-size: 16px;
            color: #727272;
            line-height: 1.8;
            max-width: 350px;
        }
        .description-two {
            font-size: 16px;
            color: #727272;
            line-height: 1.8;
            max-width: 550px;
        }

        /* Right Section */
        .right-section {
              background-color: #faf5f1 !important;
            padding: 0px 24px;
            margin-top: 60px;
            border-left: 1px solid #8d8888;
        }
        .ssh{
             border-top: 1px solid #8d8888;
        }

        .nav-item {
            border-bottom: 1px solid #8d8888;
            padding: 25px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: -100%;
            width: 100%;
            height: 100%;
            background-color: red;
            transition: top 0.4s ease;
            z-index: 0;
        }

        .nav-item:hover::before {
            top: 0;
        }

        .nav-item:hover {
            padding-left: 10px;
        }

        .nav-item:hover .nav-title,
        .nav-item:hover .arrow {
            color: white;
            text-decoration: none;
        }

        .nav-title,
        .arrow {
            position: relative;
            z-index: 1;
        }

        .nav-title {
            font-size: 48px;
            color: rgb(254, 0, 0);
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.4s ease;
             text-decoration: none;
        }

        .arrow {
            font-size: 50px;
            color: rgb(254, 0, 0);
            transition: transform 0.3s ease, color 0.4s ease;
        }

        .nav-item:hover .arrow {
            transform: translateX(5px);
        }

        /* Content Sections */
        .content-section {
            margin-top: 40px;
        }

        .section-title {
            font-size: 19px;
            color: rgb(254, 0, 0);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .section-content {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            width: 50%;
        }

        .read-more {
            font-size: 12px;
            color: #727272;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: rgb(254, 0, 0);
        }

        .read-more::after {
            content: '→';
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            
            .right-section {
                border-left: none;
                border-top: 1px solid #e0e0e0;
            }
        }

        @media (max-width: 768px) {
            .left-section,
            .right-section {
                padding: 40px 30px;
            }

            .main-title {
                font-size: 36px;
            }

            .nav-title {
                font-size: 24px;
            }

            .nav-item {
                padding: 20px 0;
            }
        }

        @media (max-width: 480px) {
            .left-section,
            .right-section {
                padding: 30px 20px;
            }

            .main-title {
                font-size: 28px;
            }

            .nav-title {
                font-size: 20px;
            }

            .description {
                font-size: 14px;
            }
        }



        .section-three-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            max-width: 1200px;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin: 0 auto;
        }

        .section-three-card {
            height: 600px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 60px 40px;
            color: #4a4a4a;
            transition: transform 0.3s ease;
            overflow: hidden;
             border-right: 1px solid #8d8888;

        }
        .border-left{
             border-left: 1px solid #8d8888;
        }

        .section-three-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: left 0.6s ease;
            z-index: 1;
        }

        .section-three-card:hover::before {
            left: 0;
        }

        .section-three-card:hover {
            transform: translateY(-5px);
            color: white;
        }

        .section-three-card > * {
            position: relative;
            z-index: 2;
            transition: all 0.6s ease;
        }

        .section-three-card:hover > * {
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        /* .section-three-card-1 {
            background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
        }

        .section-three-card-2 {
            background: linear-gradient(135deg, #f6f4f1 0%, #ede9e4 100%);
        }

        .section-three-card-3 {
            background: linear-gradient(135deg, #f4f2ef 0%, #ebe7e2 100%);
        } */

        .section-three-card-1::before {
            background-image: url('https://cdn.prod.website-files.com/668a5f75f6e4d87e64aae81c/668db1d625ce71c9855cdb64_the-cleveland-museum-of-art-0ixrpRDdNBc-unsplash.jpg');
        }

        .section-three-card-2::before {
            background-image: url('https://cdn.prod.website-files.com/668a5f75f6e4d87e64aae81c/668db1d625ce71c9855cdb64_the-cleveland-museum-of-art-0ixrpRDdNBc-unsplash.jpg');
        }

        .section-three-card-3::before {
            background-image: url('https://cdn.prod.website-files.com/668a5f75f6e4d87e64aae81c/668db1d625ce71c9855cdb64_the-cleveland-museum-of-art-0ixrpRDdNBc-unsplash.jpg');
        }

        .section-three-card-4::before {
            background-image: url('https://cdn.prod.website-files.com/668a5f75f6e4d87e64aae81c/668db1d625ce71c9855cdb64_the-cleveland-museum-of-art-0ixrpRDdNBc-unsplash.jpg');
        }

        .section-three-title {
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            line-height: 1.2;
            text-align: center;
             padding: 60px 0px;
        }

        .section-three-number {
            font-size: 12rem;
            font-weight: bold;
            color: rgb(254, 0, 0);
            line-height: 0.8;
            text-align: center;
            align-self: center;
            transition: all 0.6s ease;
        }

        .section-three-card:hover .section-three-number {
            color: rgb(254, 0, 0);
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .section-three-container {
                grid-template-columns: repeat(2, 1fr);
                max-width: 800px;
            }
            
            .section-three-card {
                height: 400px;
                padding: 40px 30px;
            }
            
            .section-three-title {
                font-size: 1.8rem;
            }
            
            .section-three-number {
                font-size: 8rem;
            }
        }

        @media (max-width: 768px) {
            .section-three-container {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 0 0px;
            }
            
            .section-three-card {
                height: 300px;
                padding: 30px 25px;
                border-radius: 0px;
                 border-bottom: 1px solid #8d8888;
                 border-right: 1px solid #ffffff;
            }
            
            .section-three-title {
                font-size: 1.4rem;
                letter-spacing: 2px;
            }
            
            .section-three-number {
                font-size: 6rem;
            }
            .border-left{
                border-left:1px solid #ffffff ;
                 border-top: 1px solid #8d8888;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            .section-three-card {
                height: 400px;
                padding: 20px;
            }
            
            .section-three-title {
                font-size: 1.2rem;
                letter-spacing: 1px;
            }
            
            .section-three-number {
                font-size: 4.5rem;
            }
        }

        /* Subtle animations */
        .section-three-card {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .section-three-card-1 { animation-delay: 0.1s; }
        .section-three-card-2 { animation-delay: 0.2s; }
        .section-three-card-3 { animation-delay: 0.3s; }
        .section-three-card-4 { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .section-four {
           background-color: #faf5f1;
           overflow: hidden;
            width: 90%;
            margin: 0 auto;
           transition: all 0.3s ease;
           
        }

        .section-four__header {
            display: flex;
            
            align-items: center;
           
            border-bottom: 1px solid #4d4a4a;
            padding-bottom: 20px;
            padding: 1rem 2rem;
            margin: 0px 32px 5px 32px;
        }

        .section-four__header-item {
            font-size: 18px;
            color: #888;
            font-weight: 300;
            letter-spacing: 1px;
            text-transform: uppercase;
            width: 25%;
        }
        .section-four__header-item-2 {
            font-size: 18px;
            color: #888;
            font-weight: 300;
            letter-spacing: 1px;
            text-transform: uppercase;
            width: 50%;
        }
        .section-four__header-item-3 {
            font-size: 18px;
            color: #888;
            font-weight: 300;
            letter-spacing: 1px;
            text-transform: uppercase;
            width: 25%;
        }

        .section-four__content {
            display: flex;
            border-bottom: 1px solid #4d4a4a;
            align-items: center;
            position: relative;
            min-height: 200px;
                padding: 2rem 1rem;
                margin: 0rem 2.3rem;
        }
        

        .section-four__content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Claude_Monet%2C_Impression%2C_soleil_levant.jpg/800px-Claude_Monet%2C_Impression%2C_soleil_levant.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: .4;
            z-index: 1;
            clip-path: inset(0 0 100% 0);
            transition: clip-path 0.8s ease;
        }

        .section-four__date {
            font-size: 16px;
            color: #727272;
            font-weight: 600;
            line-height: 1.2;
            z-index: 2;
            position: relative;
            width: 25%;
        }

        .section-four__main-title {
            text-align: center;
            z-index: 2;
            position: relative;
            width: 50%;
        }

        .section-four__title {
            font-size: 42px;
            color: rgb(254, 0, 0);
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 10px;
            text-align: left;
        }

        .section-four__subtitle {
            font-size: 42px;
            color: rgb(254, 0, 0);
            font-weight: 400;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-align: left;
        }

        .section-four__location {
            font-size: 22px;
            color: #727272;
            font-weight: 600;
            letter-spacing: 1px;
            z-index: 2;
            position: relative;
             width: 25%;
        }

        /* Hover effects */
        .section-four:hover {
            transform: translateY(0px);
            
            background-color: #faf5f1;
        }

        .section-four:hover .section-four__content::before {
            clip-path: inset(0 0 0 0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-four {
                padding: 30px 20px;
            }

            .section-four__header {
                flex-direction: row;
                gap: 10px;
                text-align: center;
                margin-bottom: 30px;
            }

            .section-four__content {
                flex-direction: row;
                gap: 30px;
                text-align: center;
                min-height: 300px;
                margin: 0rem 0rem;
            }

            .section-four__title {
                font-size: 36px;
                letter-spacing: 1px;
                text-align: center;
            }

            .section-four__subtitle {
                font-size: 30px;
                letter-spacing: 2px;
                text-align: center;
            }

            .section-four__location {
                font-size: 28px;
            }

            .section-four__date {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .section-four {
                padding: 20px 15px;
            }

            .section-four__header {
                margin-bottom: 20px;
            }

            .section-four__content {
                gap: 20px;
                min-height: 200px;
            }

            .section-four__title {
                font-size: 15px;
                letter-spacing: 0.5px;
            }

            .section-four__subtitle {
                font-size: 15px;
                letter-spacing: 1px;
            }

            .section-four__location {
                font-size: 19px;
            }

            .section-four__date {
                font-size: 10px;
            }

            .section-four__header-item {
                font-size: 16px;
            }
            
        }


        .section-five {
            max-width: 1107px;
            margin: 0 auto;
            padding: 60px 0px;
            display: flex;
            justify-content: space-between;
            min-height: 70vh;
            gap: 60px;
          
        }

        .carousel-content {
            flex: 1;
            max-width: 400px;
        }

        .carousel-content h2 {
            font-size: 2.5rem;
            color: #faf5f1;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.2;
        }

        .carousel-description {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #727272;
            width: 65%;
        }

        .carousel-owner {
            font-size: .8rem;
            font-weight: 600;
            color: #8b7355;
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .carousel-navigation {
            display: flex;
            gap: 20px;
        }

        .nav-btn {
            width: 60px;
            height: 60px;
            border: 1.2px solid #727272;
            border-radius: 50%;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-btn:hover {
            border-color: #8b7355;
            background-color: #ffffff;
        }

        .nav-btn:hover::before {
            border-color: white;
        }

        .nav-btn.prev::before {
            content: '';
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 12px solid #d4c4a8;
            margin-right: 3px;
            transition: all 0.3s ease;
        }

        .nav-btn.next::before {
            content: '';
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 12px solid #d4c4a8;
            margin-left: 3px;
            transition: all 0.3s ease;
        }

        .carousel-image-container {
            flex: 1;
            position: relative;
            max-width: 500px;
        }

        .carousel-image {
            width: 100%;
            height: 600px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .carousel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .carousel-image:hover img {
            transform: scale(1.02);
        }

        .image-title {
            /* position: absolute; */
            bottom: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 500;
            color: #8b7355;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #faf5f1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: #faf5f1;
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-five {
                flex-direction: column;
                text-align: center;
                gap: 40px;
                padding: 40px 20px;
            }

            .carousel-content {
                max-width: 100%;
            }

            .carousel-content h2 {
                font-size: 2rem;
            }

            .carousel-description {
                font-size: 1rem;
            }

            .carousel-image {
                height: 400px;
            }

            .nav-btn {
                width: 50px;
                height: 50px;
            }

            .image-title {
                bottom: 20px;
                right: 20px;
                font-size: 1rem;
                padding: 12px 20px;
            }
            .carousel-description {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #727272;
            width: 100%;
        }

        }

        @media (max-width: 480px) {
            .section-five {
                padding: 30px 15px;
            }

            .carousel-content h2 {
                font-size: 1.7rem;
            }

            .carousel-image {
                height: 350px;
            }

            .carousel-navigation {
                gap: 15px;
                display: flex;
                 justify-content: center;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
            }
        }


         .wrapper {
            padding: 2rem 0rem;
         
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            min-height: 30vh;
        }

        .textContainer {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 1rem;
            font-size: 5rem;
            font-weight: bold;
            color: #07241c;
            will-change: transform;
        }

        .textContainer p {
            font-size: 190px;
            margin: 0;
            color: #faf5f1;
             -webkit-text-stroke: 1.5px #727272;
            text-stroke: 1.5px #727272;
            
        }
        .insidetext{
            font-size: 180px;
            margin: 0;
            color: #faf5f1;
             -webkit-text-stroke: 1.5px #faf5f1 !important;
            text-stroke: 1.5px #faf5f1 !important;
        }

        
        .news {
            display: inline-block;
            transition: transform 0.15s ease-out;
            white-space: nowrap;
            will-change: transform;
        }
        .inside{
            display: inline-block;
            transition: transform 0.15s ease-out;
            white-space: nowrap;
            will-change: transform;
        }

        .news {
            font-style: normal;
        }

        /* Demo content to make page scrollable */
        .demo-content {
            height: 100vh;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #333;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .textContainer {
                font-size: 3rem;
            }
            
            .textContainer p {
                font-size: 80px;
            }
            .section-one {
            display: flex;
            justify-content: center;
             }
             h1{
                font-size: 4rem;
             }
             h2{
                font-size: 4rem;
                margin: 0rem;
             }
             .column {
                display: flex;
                gap: 3rem;
                flex-direction: column;
                justify-content: flex-start;
                border-bottom: 1px solid #4d4a4a;
            }
            .section-content {
                font-size: 14px;
                color: #666;
                line-height: 1.8;
                margin-bottom: 20px;
                width: 100%;
            }
            .column-two {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding: 3rem 0rem;
                border-bottom: 1px solid #4d4a4a;
                border-top: 1px solid #4d4a4a;
            }
            .wrapper {
            padding: 2rem 0rem;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            min-height: 20vh;
        }
        header{
            padding: 1rem 0rem;
        }
        }

        @media (max-width: 480px) {
            .textContainer {
                font-size: 2rem;
            }
            
            .textContainer p {
                font-size: 50px;
            }
            header{
            padding: 1rem 0rem;
        }
        }


        .section-seven {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-seven__container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding: 20px 0;
        }

        .section-seven__card {
             background-color: #faf5f1;
            border: 1px solid #727272;
            
            overflow: hidden;
          
            padding: 1rem;
        }

      

        .section-seven__image-container {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .section-seven__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .section-seven__card:hover .section-seven__image {
            transform: scale(1.05);
        }

        .section-seven__content {
            padding: 0px 0px;
        }

        .section-seven__title {
            font-size: 24px;
            font-weight: 600;
            color: #fe0000;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .section-seven__price {
            font-size: 24px;
            font-weight: 500;
            color: #6b7280;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-seven__container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .section-seven__image-container {
                height: 250px;
            }
            
            .section-seven__content {
                padding: 20px;
            }
            
            .section-seven__title {
                font-size: 20px;
            }
            
            .section-seven__price {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            .section-seven__container {
                gap: 15px;
            }
            
            .section-seven__image-container {
                height: 200px;
            }
            
            .section-seven__content {
                padding: 15px;
            }
            
            .section-seven__title {
                font-size: 18px;
            }
            
            .section-seven__price {
                font-size: 18px;
            }
        }

        /* Loading placeholder for images */
        .section-seven__image-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                        linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                        linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                        linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            color: #727272;
            font-size: 14px;
            text-align: center;
        }



        .footer-container {
            background-color: #faf5f1;
            padding: 60px 40px;
           
            margin: 0 auto;
            max-width: 1130px;
            width: 100%;
              border-top: 1px solid #727272;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 60px;
            max-width: 800px;
        }

        .footer-section h3 {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 30px;
            color: #6b5843;
            letter-spacing: 0.5px;
        }

        .footer-section ul {
            list-style: none;
            padding-left: 0px;
        }

        .footer-section li {
            margin-bottom: 18px;
        }

        .footer-section a {
            color: #8b7355;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease, transform 0.2s ease;
            display: inline-block;
        }

        .footer-section a:hover {
            color: #6b5843;
            transform: translateX(3px);
        }

        .contact-info {
            color: #8b7355;
            font-size: 16px;
        }

        .contact-label {
            font-weight: 600;
            color: #6b5843;
            margin-bottom: 8px;
            display: block;
            font-size: 18px;
        }

        .phone-number {
            margin-bottom: 25px;
        }

        .address {
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                padding: 40px 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-section h3 {
                font-size: 22px;
                margin-bottom: 25px;
            }

            .footer-section li {
                margin-bottom: 15px;
            }

            .footer-section a {
                font-size: 15px;
            }

            .contact-label {
                font-size: 17px;
            }

            .contact-info {
                font-size: 15px;
            }
             .column-two{
            display: flex;
             margin: 0rem 0rem;
             flex-direction: row;
            justify-content: space-between;
            padding: 3rem 1rem;
            gap: 2rem;
            flex-direction: column;
            border-bottom: 1px solid #4d4a4a;
         
        }
        .section-four__header {
            display: flex;
            
            align-items: center;
           
            border-bottom: 1px solid #4d4a4a;
            padding-bottom: 20px;
            padding: 1rem 0rem;
            margin: 0px 0px 5px 0px;
        }

        }

        @media (max-width: 480px) {
            .footer-container {
                padding: 30px 0px;
            }

            .footer-content {
                gap: 35px;
            }

            .footer-section h3 {
                font-size: 25px;
                margin-bottom: 20px;
            }

            .footer-section a {
                font-size: 20px;
            }

            .contact-label {
                font-size: 16px;
            }

            .contact-info {
                font-size: 14px;
            }
        }

        /* Larger screens */
        @media (min-width: 1024px) {
            .footer-container {
                padding: 80px 0px;
            }

            .footer-content {
                gap: 80px;
            }

            .footer-section h3 {
                font-size: 26px;
                margin-bottom: 35px;
            }

            .footer-section a {
                font-size: 17px;
            }

            .contact-label {
                font-size: 19px;
            }

            .contact-info {
                font-size: 17px;
            }
        }


         /* Main content area */
        .main-content {
            padding: 20px;
            transition: all 0.3s ease;
        }

        .main-content.blur {
            filter: blur(3px);
            opacity: 0.7;
        }

        /* Menu trigger button */
        .menu-trigger {
            position: fixed;
            top: 20px;
            left: 20px;
            background: #ff3333;
            color: white;
            border: none;
            padding: 15px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
        }

        .menu-trigger:hover {
            background: #e62e2e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 51, 51, 0.4);
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1500;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Menu popup */
        .menu-popup {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 700px;
            height: 100vh;
            background: #ff3333;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        .img-menu{
            width: 60%;
            height: auto;
            object-fit: cover;
        }

        .menu-popup.active {
            right: 0;
        }

        /* Menu header */
        .menu-header {
            padding: 30px 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .menu-title {
            color: white;
            font-size: 18px;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        /* Close button */
        .close-btn {
            position: absolute;
            top: 30px;
            right: 40px;
            background: none;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 50%;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        /* Menu content */
        .menu-content {
            flex: 1;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .menu-item {
            margin-bottom: 60px;
            opacity: 0;
            display: flex;
            gap: 1rem;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }

        .menu-popup.active .menu-item {
            opacity: 1;
            transform: translateX(0);
        }

        .menu-popup.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
        .menu-popup.active .menu-item:nth-child(2) { transition-delay: 0.2s; }
        .menu-popup.active .menu-item:nth-child(3) { transition-delay: 0.3s; }

        .menu-number {
            color: rgba(255, 255, 255, 0.7);
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 10px;
            display: block;
        }

        .menu-text {
            color: white;
            font-size: 48px;
            font-weight: 300;
            letter-spacing: 8px;
            text-transform: uppercase;
            line-height: 1.2;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            text-decoration: none;
        }

        .menu-text:hover {
            color: rgba(255, 255, 255, 0.8);
            transform: translateX(-20px);
            letter-spacing: 12px;
        }

        /* Sample content for demonstration */
        .demo-content {
            max-width: 800px;
            margin: 100px auto 0;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .demo-content h1 {
            color: #333;
            margin-bottom: 20px;
            font-size: 32px;
        }

        .demo-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .art-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .art-piece {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            height: 200px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .art-piece:hover {
            transform: translateY(-5px);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .menu-popup {
                max-width: 100%;
            }

            .menu-header, .menu-content {
                padding-left: 30px;
                padding-right: 30px;
            }

            .close-btn {
                right: 30px;
            }

            .menu-text {
                font-size: 36px;
                letter-spacing: 4px;
            }

            .menu-text:hover {
                letter-spacing: 6px;
            }

            .demo-content {
                margin: 80px 20px 0;
                padding: 30px;
            }

            .demo-content h1 {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .menu-text {
                font-size: 28px;
                letter-spacing: 2px;
            }

            .menu-text:hover {
                letter-spacing: 4px;
                transform: translateX(10px);
            }

            .menu-item {
                margin-bottom: 40px;
            }
        }


        .about-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 2rem;
        }

        .container-4 {
            max-width: 1400px;
            width: 86%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .content-left {
            padding-right: 2rem;
        }

        .section-label {
            font-size: 0.875rem;
            font-weight: 400;
            letter-spacing: 2px;
            color: #888;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .artist-name {
            font-size: 4rem;
            font-weight: 300;
            color: rgb(254, 0, 0);
            line-height: 0.9;
            margin-bottom: 3rem;
            letter-spacing: -2px;
        }

        .bio-text {
            font-size: 1.125rem;
            line-height: 1.8;
            color: #727272;
            max-width: 500px;
        }

        .image-container-4 {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .artist-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }

        .image-container:hover .artist-image {
            transform: scale(1.02);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                gap: 3rem;
            }
            
            .artist-name {
                font-size: 3.5rem;
            }
            
            .content-left {
                padding-right: 1rem;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 1.5rem;
            }
            
            .container-4 {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                text-align: center;
            }
            
            .content-left {
                padding-right: 0;
                order: 2;
            }
            .section-one-louise {
                padding: 0rem 2rem;
            }
            
            
            .image-container {
                order: 1;
                height: 400px;
            }
            
            .artist-name {
                font-size: 3rem;
                margin-bottom: 2rem;
            }
            
            .bio-text {
                max-width: 100%;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 1rem;
            }
            
            .artist-name {
                font-size: 2.5rem;
                letter-spacing: -1px;
            }
            
            .image-container {
                height: 350px;
            }
            
            .bio-text {
                font-size: 0.95rem;
                line-height: 1.6;
            }
            
            .section-label {
                font-size: 0.8rem;
                letter-spacing: 1.5px;
                margin-bottom: 1.5rem;
            }
        }



        .container {
            position: relative;
        }

        /* Subtle animation on load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-left > * {
            animation: fadeInUp 0.8s ease forwards;
        }

        .content-left > *:nth-child(1) { animation-delay: 0.1s; }
        .content-left > *:nth-child(2) { animation-delay: 0.2s; }
        .content-left > *:nth-child(3) { animation-delay: 0.3s; }

        .image-container {
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.4s;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

         .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .about-header {
            display: none;
        }

        .about-title {
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #727272;
            margin: 0 0 40px 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 2fr 2fr;
            gap: 120px;
            align-items: start;
        }
         .about-content-2 {
            display: grid;
            grid-template-columns: 2fr 0fr;
            gap: 120px;
            align-items: start;
        }


        .about-left-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
        }

        .about-story-number {
            display: inline-block;
            background-color: transparent;
            color: #ccc;
            font-size: 1.2rem;
            font-weight: 300;
            width: auto;
            height: auto;
            text-align: left;
            line-height: 1;
            margin: 0;
            padding: 0;
        }

        .about-text-section {
            padding: 0;
        }

        .about-story-text {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.8;
            color: #727272;
            text-align: left;
            margin: 0;
            max-width: 600px;
        }

        .about-highlight {
            color: #727272;
            font-weight: 400;
        }
        .about-img{
            width: 83%;
            height: 40rem;
            object-fit: cover;
        }
        .about-div{
            display: flex;
    justify-content: center;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-container {
                padding: 60px 30px;
            }
            
            .about-content {
                gap: 80px;
            }
            .about-content-2 {
                gap: 80px;
            }
        }

        @media (max-width: 768px) {
            .about-container {
                padding: 40px 20px;
            }

            .about-title {
                font-size: 1.5rem;
                letter-spacing: 1.5px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .about-content-2 {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-left-section {
                justify-content: flex-start;
            }

            .about-story-text {
                font-size: 1rem;
            }
            .image-container-4 {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
             }
             .about-img {
                width: 90%;
                height: 20rem;
                object-fit: cover;
            }
            
        }

        @media (max-width: 480px) {
            .about-container {
                padding: 30px 15px;
            }

            .about-title {
                font-size: 1.3rem;
                letter-spacing: 1px;
            }

            .about-content {
                gap: 30px;
            }
            .about-content-2 {
                gap: 30px;
            }

            .about-story-text {
                font-size: 0.95rem;
                line-height: 1.7;
            }
        }

        /* Subtle animations */
        .about-container {
            animation: about-fadeIn 0.8s ease-out;
        }

        @keyframes about-fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }