/*
Theme Name: Newaart
Theme URI: https://newaart.com
Author: Prajen Raj Shakya
Author URI: https://prajenrajshakya.com.np
Description: Design and developed by Prajen Raj Shakya for Newaart Studio.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: newaart
Tags: custom
*/
:root {
    --text-primary-color: #F5F1E9;
    --text-shadow-color: rgba(0, 0, 0, 0.7);
    --color-gold: #dbdbdb;
    --color-gold-dark: #f5f5f5;
    --color-button-text: #2c2c2c;
    --color-button-text-shadow: rgba(255, 255, 255, 0.4);
    --color-logo-start: #dbdbdb;
    --color-logo-end: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: white!important;
    color: rgb(0, 0, 0);
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.5;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 3rem;
    transition: all 0.3s ease;
}

nav.sticky {
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    backdrop-filter: saturate(180%) blur(10px);
}

.sticky {
    position: sticky;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-weight: 900;
    font-size: 1.9rem;
    background: linear-gradient(90deg, var(--color-logo-start), var(--color-logo-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.7));
    white-space: nowrap;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--color-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 9999;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}
.hero {
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
}

.hero::before {
content: "";
position: absolute;
z-index: 2;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
background: radial-gradient(ellipse at center,
  rgba(0, 0, 0, 0) 70%,
  rgba(0, 0, 0, 0.3) 100%);
}

.hero video {
width: 100vw;
height: 100vh;
object-fit: cover;
object-position: 0% 23%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
filter: brightness(0.8) contrast(1.1);
transition: filter 0.3s ease;
}

.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.35);
z-index: 3;
}

.content {
position: relative;
z-index: 4;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
text-align: center;
padding: 0 20px;
}

.line {
font-size: 2.5rem;
font-weight: 600;
color: var(--text-primary-color);
opacity: 0;
transform: translateX(-100%);
animation: slideIn 1s ease forwards;
animation-delay: 0.5s;
white-space: nowrap;
margin-bottom: 40px;
text-shadow: 0 2px 6px var(--text-shadow-color);
}

@keyframes slideIn {
to {
opacity: 1;
transform: translateX(0);
}
}

.cta-button {
margin-top: 1rem;
padding: 12px 28px;
background: var(--color-gold);
color: var(--color-button-text);
border: none;
border-radius: 30px;
font-size: 1rem;
cursor: pointer;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 1s ease-out forwards;
animation-delay: 2s;
transition: background 0.3s, box-shadow 0.3s;
font-weight: 600;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
text-shadow: 0 1px 2px var(--color-button-text-shadow);
text-decoration: none;
}

.cta-button:hover {
background: var(--color-gold-dark);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
color: #111;
}

@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}

nav {
z-index: 999;
}
/* MoNA Section Styles */
.mona-section {
    background: white;
    color: black;
    padding: 3rem 1rem;
  }
  
  .mona-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    /* overflow: hidden; */
  }
  
  .mona-text {
    flex: 1 1 48%;
    padding: 5rem 2rem 5rem 2rem;
  }
  
  .mona-text h1 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #111;
    font-weight: 600;
    /* letter-spacing: 1.5; */
  }
  
  .mona-text p {
    margin-bottom: .75rem;
    font-weight: 400;
    line-height: 1.5;
  }
  
  .mona-images {
    flex: 1 1 48%;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
    /* position: relative; */
    /* height: 100%; */
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
  }
  
  .mona-images .mona-img1,.mona-images .mona-img2,.mona-images .mona-img3  {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    aspect-ratio: 420 / 360;
    width: 70%;
    max-width: 350px;
    object-fit: cover;
    object-position: 50%, 50%;
    position: relative;
    outline: none;
}
 
  .mona-img1 {
    z-index: 4;
  }
  
  .mona-img2 {
    align-self: end;
    z-index: 3;
    margin-top: -2rem;
    /* margin-left: 10rem;  */
  }
  
  .mona-img3 {
    margin-top: -4rem;
    z-index: 2;
  }
  .mona-img4 {
    z-index: 1;
    align-self: end;
  }
  .stack-container {
    position: relative;
    width: 100%;
    /* height: 460px; */
    aspect-ratio: 36/46;
    /* increased height for more vertical spread */
    margin: auto;
    margin-top: 5rem;
    cursor: pointer;
    padding:0 1rem ;
}

.stack-container img {
    position: absolute;
    width: 55%;
    /* height: auto; */
    border-radius: 14px;
    aspect-ratio: 42/60;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        z-index 0.3s ease,
        top 0.3s ease,
        left 0.3s ease;
    transform-origin: center center;
}


/* Increased bottom-right to top-left diagonal scatter */
.stack-container img:nth-child(1) {
    top: 55%;
    right: 0;
    transform: rotate(16deg);
    z-index: 1;
}

.stack-container img:nth-child(2) {
    top: 40%;
    right: 3%;
    transform: rotate(-13deg);
    z-index: 2;
}

.stack-container img:nth-child(3) {
    top: 25%;
    right: 25%;
    transform: rotate(9deg);
    z-index: 3;
}

.stack-container img:nth-child(4) {
    top: 0;
    /* right: 170px; */
    transform: rotate(-11deg);
    z-index: 4;
}

/* Active (clicked) image: bring to front, scale up slightly, and add stronger shadow */
.stack-container img.active {
    z-index: 10 !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
    transform: scale(1.05) rotate(0deg);
}

        .mute-btn {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 5;
            background: none;
            color: white;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
        }

        .mute-btn:hover {
            opacity: 0.8;
        }

        .sound-tooltip {
            position: absolute;
            bottom: 75px;
            right: 15px;
            background: white;
            color: black;
            font-size: 13px;
            padding: 6px 12px;
            border-radius: 14px;
            white-space: nowrap;
            z-index: 5;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            opacity: 1;
            transition: opacity 0.4s ease;
        }

        .sound-tooltip.hidden {
            opacity: 0;
            pointer-events: none;
        }

    header,
    footer {
        color: white;
        padding: 8rem 3rem;
        text-align: center;
        background: url('https://newaart.com/drive/yuth.jpg');
        background-size: cover;
        background-position: 50%, 50%;
        position: relative;
    }

    header {
        height: 70vh;
    }

    header .content {
        padding: 0;
    }

    header .content .line {
        white-space: unset;
        margin: 0;
    }

    header .content .line h1 {
        /* font-size:1.5rem; */
        margin-bottom: 1rem;
        font-size: 2.5rem;
        color: white;
    }

    header p {
        color: rgb(204, 204, 204);
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 1rem;
    }

    .section {
        padding: 3rem 1.5rem;
        max-width: 1100px;
        margin: 0 auto;
        color: black;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .product {
        background: white;
        border-radius: 1rem;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        text-align: center;
    }

    .product img {
        max-width: 100%;
        border-radius: 0.5rem;
    }

    .badge {
        display: inline-block;
        background: #d4af37;
        color: white;
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
        border-radius: 0.25rem;
        margin-top: 0.5rem;
    }

    .cta {
        background: #d4af37;
        color: white;
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 0.5rem;
        cursor: pointer;
        margin-top: 1rem;
    }

    .highlight {
        background: #fff8e1;
        padding: 1rem;
        border-left: 4px solid #d4af37;
        margin-bottom: 2rem;
    }

    .details-table {
        margin-top: 1.5rem;
        border-collapse: collapse;
        width: 100%;
    }

    .details-table td {
        padding: 0.5rem;
        border: 1px solid #ccc;
    }

    blockquote {
        font-style: italic;
        margin: 1rem 0;
        padding-left: 1rem;
        border-left: 4px solid #ccc;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: 0;
        /* no gaps */
        max-width: 75rem;
        margin: 0 auto;
        border: 1px solid #e6e6e6;
        /* outer border */
    }

    .card {
        background: #fff;
        padding: 1rem;
        border-right: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
        box-sizing: border-box;
        text-decoration: none;
        color: black;
    }

    /* We'll remove right/bottom border on last column/row cards with JS */

    .card img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 0.25rem;
    }

    .card h3 {
        font-size: 1.125rem;
        margin: 0.75rem 0 0.25rem;
        cursor: pointer;
    }

    .card p.size {
        font-size: 0.9rem;
        margin: 0.25rem 0;
        color: #555;
        background-color: rgb(243, 237, 226);
        border-radius: 1rem;
        width: max-content;
        padding: 0.1rem 0.5rem;
    }

    .card p.price {
        font-size: 1rem;
        margin: 0.25rem 0;
        font-weight: 600;
        color: #222;
    }

    .collection .title,
    .collection .sub-title {
        margin-bottom: 2rem;
    }

    .custom-size-cta {
        text-align: center;
        margin-top: 2rem;
        font-size: 1.2rem;
    }

    .custom-size-cta p {
        margin-bottom: 1rem;
    }

    .btn-contact {
        background-color: black;
        color: white;
        text-decoration: none;
        padding: 0.75rem 2rem;
        border-radius: 25px;
        font-weight: bold;
        font-size: 1rem;
        transition: background-color 0.3s ease;
        display: inline-block;
        cursor: pointer;
    }

    .btn-contact:hover,
    .btn-contact:focus {
        background-color: white;
        border: 1px solid black;
        outline: none;
        color: black;
    }

    @media (max-width: 768px) {
        header .content .line h1 {
            font-size: 1.5rem;
        }
    }

    .testimonial-premium {
        padding: 4rem 1rem;
        background: #faf7f1;
        font-family: 'Georgia', serif;
        color: #333;
    }

    .testimonial-heading {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
        letter-spacing: 1px;
    }

    .testimonial-carousel {
        max-width: 800px;
        margin: 0 auto;
    }

    .testimonial-item {
        background: #fff;
        padding: 2rem 2.5rem;
        border-radius: 10px;
        border: 1px solid #e3d7c7;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .testimonial-text {
        font-size: 1.1rem;
        font-style: italic;
        line-height: 1.8;
    }

    .testimonial-author {
        margin-top: 1.5rem;
        font-weight: bold;
        text-align: right;
    }


    .faq-section {
        max-width: 800px;
        margin: 3rem auto;
        padding: 0 1rem;
        font-family: 'Georgia', serif;
        background: #faf7f1;
        color: #333;
    }

    .faq-heading {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
        letter-spacing: 1px;
        padding-top: 2rem;
    }

    .faq-item {
        border-bottom: 1px solid #e3d7c7;
    }

    .faq-question {
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        position: relative;
        color: #222;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-question:focus {
        outline: 2px solid #a67c00;
        outline-offset: 2px;
    }

    .faq-toggle-icon {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .faq-question[aria-expanded="true"] .faq-toggle-icon {
        transform: rotate(45deg);
    }

    .faq-answer {
        padding: 0 0 1.5rem 0;
        font-style: italic;
        line-height: 1.6;
        color: #555;
    }
@media (max-width: 768px) {
  .nav-links {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.9);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: translateY(-100%);
      transition: transform 0.3s ease, opacity 0.3s ease;
      opacity: 0;
      pointer-events: none;
  }

  .nav-links.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
  }

  .hamburger {
      display: flex;
  }

  .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
  }
  .mona-text{
    padding: 1rem 1rem;
  }
  .mona-images{
    padding-top: 1rem;
  }
  .mona-section.process{
    padding-top: 1rem;
  }
  .process .mona-images{
    padding: 1rem 1rem;
    order: 2;
  }
  .stack-container{
    margin-top: 1rem;
    cursor: none;
  }
  .line {
    font-size: 2rem;
  }
}