:root {
  --black: #111;
  --white: #fff;
  --gray: #666;
  --light: #f8f8f8;
  --accent: #ccc;
  --accent-beige: #d6c1a6; /* soft elegant beige */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
opacity: 0;
transition: opacity 0.7s ease;
font-family: 'Inter', sans-serif;
}


html, body {
  font-family: 'Inter', sans-serif;
  
  color: var(--black);
  scroll-behavior: smooth;
}



a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  z-index: 1000;
  display: flex;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.nav.scrolled {
  background: linear-gradient(135deg, #000000, #212121); /* Subtle gradient */
  color: var(--accent);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow on scroll */
  border-bottom-left-radius:20px ;
  border-bottom-right-radius: 20px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* LOGO */
.nav-logo img {
  height: 90px;
  width: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
}

.nav-logo img:hover {
  transform: scale(1.1); /* Gentle zoom on hover */
  filter: brightness(1.2); /* Slightly brighten the logo */
  
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 2px;
  position: relative;
  color: var(--accent);
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  transform: translateY(-4px); /* Subtle lift effect */
}

.nav-links a:hover::after {
  width: 100%; /* Underline expands */
  left: 0;
}

/* SCROLL EFFECT */
.nav.scrolled .nav-links a {
  color: #fff; /* Links turn white on scroll */
}

.nav.scrolled .nav-links a:hover::after {
  background: #fff; /* White underline effect */
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 4vw;
  }

  .nav-links {
    gap: 30px;
  }

  .nav-logo img {
    height: 70px; /* Resize logo for mobile */
  }
}

/* HERO */
.hero {
  height: 100vh;
  background: url('0-02-05-21f56700aba41e07c48c3ddd7033274fc2d8ee7d00959afbb70a0b7996d12c78_3eac7e7b3f52baf.jpg') center/cover no-repeat; /* Replace with your image */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for contrast */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-family: 'Lora', serif; /* Elegant serif font */
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease-out forwards;
}

.hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 2s ease-out 0.5s forwards;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
}



/* ABOUT */
.about {
  padding: 100px 10vw;
  display: flex;
  gap: 60px;
  align-items: center;
  background: var(--light);
}

.about img {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
  max-width: 600px;
}

.about h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about img {
    max-width: 100%;
  }

  .nav-links {
    display: none;
  }
}
.gallery {
padding: 100px 8vw;
background: var(--white);
text-align: center;
}

.gallery h2 {
font-size: 2.8rem;
margin-bottom: 10px;
font-family: 'Playfair Display', serif;
}

.gallery-sub {
font-size: 1.1rem;
color: var(--gray);
margin-bottom: 60px;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 40px;
}

.gallery-item {
position: relative;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
transition: transform 0.4s ease;
cursor: pointer;
}

.gallery-item:hover {
transform: scale(1.03);
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.5s ease;
}

.gallery-info {
position: absolute;
bottom: 0;
width: 100%;
background: rgba(0,0,0,0.5);
color: var(--white);
padding: 15px;
font-size: 1rem;
letter-spacing: 1px;
text-transform: uppercase;
font-weight: 500;
}


.testimonials-section {
  background: var(--white);
  color: var(--black);
  padding: 80px 5vw;
  text-align: center;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-section h2 {
  font-size: 2.4rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.testimonials-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: #eaeaea;
}

.testimonial-card .quote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

/* Optional media query if needed */
@media (max-width: 480px) {
  .testimonials-section h2 {
    font-size: 1.8rem;
  }

  .testimonials-sub {
    font-size: 1rem;
  }
}









.contact-call {
background: #111;
color: var(--white);
position: relative;
padding: 0;
}

.contact-call-bg {
background: url('https://images.unsplash.com/photo-1618221738420-2c6fa3f0a0e2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
padding: 140px 8vw;
position: relative;
z-index: 1;
}

.contact-call-bg::before {
content: "";
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
z-index: -1;
}

.contact-call-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.call-title {
font-size: 2.8rem;
font-family: 'Playfair Display', serif;
margin-bottom: 20px;
color: var(--white);
}

.call-description {
font-size: 1.2rem;
color: #ddd;
margin-bottom: 40px;
}

.call-lux-btn {
background: var(--white);
color: var(--black);
padding: 16px 36px;
border-radius: 50px;
font-weight: bold;
font-size: 1rem;
text-decoration: none;
box-shadow: 0 4px 20px rgba(255,255,255,0.2);
transition: all 0.3s ease;
}

.call-lux-btn:hover {
background: var(--gray);
color: var(--white);
}

.miracle {
background: var(--white);
padding: 100px 8vw;
text-align: center;
}

.miracle-inner {
max-width: 1200px;
margin: 0 auto;
}

.miracle h2 {
font-size: 2.6rem;
font-family: 'Playfair Display', serif;
margin-bottom: 12px;
}

.miracle-sub {
font-size: 1.1rem;
color: var(--gray);
margin-bottom: 60px;
}

.miracle-gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.miracle-photo {
overflow: hidden;
border-radius: 16px;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
transition: transform 0.3s ease;
}

.miracle-photo:hover {
transform: scale(1.02);
}

.miracle-photo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.team {
background: var(--light);
padding: 100px 8vw;
text-align: center;
}

.team-inner {
max-width: 1200px;
margin: 0 auto;
}

.team h2 {
font-size: 2.6rem;
font-family: 'Playfair Display', serif;
margin-bottom: 10px;
}

.team-sub {
font-size: 1.1rem;
color: var(--gray);
margin-bottom: 60px;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}

.team-card {
background: var(--white);
box-shadow: 0 8px 20px rgba(0,0,0,0.05);
border-radius: 16px;
overflow: hidden;
transition: transform 0.3s ease;
}

.team-card:hover {
transform: translateY(-8px);
}

.team-img {
height: 340px;
background-size: cover;
background-position: center;
}

.team-info {
padding: 20px;
}

.team-info h3 {
font-size: 1.4rem;
margin-bottom: 5px;
font-family: 'Playfair Display', serif;
}

.team-info p {
color: var(--gray);
font-size: 0.95rem;
}
.case-studies {
height: 100vh;
width: 100%;
position: relative;
overflow: hidden;
}








/* Mood Words Section */
.mood-words {
background: #000;
color: #fff;
padding: 3rem 0;
overflow: hidden;
white-space: nowrap;
font-family: 'Playfair Display', serif;
font-size: 2rem;
letter-spacing: 2px;
}

.mood-track {
display: inline-block;
animation: scroll-left 20s linear infinite;
}

.mood-track span {
display: inline-block;
margin: 0 2rem;
}

@keyframes scroll-left {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}

/* Design Quote Section */
.design-quote {
background: #f9f9f9;
padding: 6rem 2rem;
text-align: center;
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
color: #111;
}

.design-quote blockquote {
max-width: 800px;
margin: auto;
font-style: italic;
line-height: 1.6;
}

.design-quote cite {
display: block;
margin-top: 1rem;
font-size: 1rem;
font-style: normal;
color: #666;
}
.client-projects-deluxe {
background: white;
color: #fff;
padding: 4rem 0;
font-family: 'Playfair Display', serif;
overflow: hidden;
}

.projects-title {
text-align: center;
font-size: 2.8rem;
margin-bottom: 3rem;
color: #fff;
letter-spacing: 1.5px;
text-transform: uppercase;
}

.projects-track {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
gap: 2rem;
padding: 0 2rem;
}

.project-panel {
flex: 0 0 90vw;
height: 80vh;
background-size: cover;
background-position: center;
position: relative;
scroll-snap-align: center;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
transition: transform 0.3s ease;
}

.project-panel:hover {
transform: scale(1.015);
}

.overlay {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
z-index: 1;
}

.project-content {
position: absolute;
bottom: 3rem;
left: 3rem;
z-index: 2;
color: #fff;
max-width: 50%;
backdrop-filter: blur(4px);
background: rgba(0, 0, 0, 0.3);
padding: 1.5rem 2rem;
border-radius: 12px;
}

.project-content h3 {
font-size: 1.8rem;
margin-bottom: 0.5rem;
}

.project-content p {
font-size: 1rem;
color: #ccc;
line-height: 1.5;
}

/* Floating Call Button */
.call-us-btn {
position: fixed;
bottom: 2rem;
right: 2rem;
background-color: #000;
color: #fff;
border: 2px solid #fff;
border-radius: 50%;
font-size: 1.5rem;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
z-index: 999;
transition: transform 0.2s ease, background-color 0.3s ease;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.call-us-btn:hover {
transform: scale(1.1);
background-color: #111;
}

.site-footer {
background-color: #000;
color: #aaa;
padding: 4rem 2rem 2rem;
font-family: 'Playfair Display', serif;
border-top: 1px solid #222;
}

.footer-inner {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.footer-column {
flex: 1 1 220px;
}

.footer-column h3,
.footer-column h4 {
color: #fff;
margin-bottom: 1rem;
font-size: 1.3rem;
letter-spacing: 0.5px;
}

.footer-column p {
font-size: 0.95rem;
color: #888;
line-height: 1.6;
}

.footer-column ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-column li {
margin-bottom: 0.5rem;
}

.footer-column a {
color: #aaa;
text-decoration: none;
font-size: 0.95rem;
transition: color 0.3s;
}

.footer-column a:hover {
color: #fff;
}

.footer-bottom {
text-align: center;
margin-top: 2rem;
font-size: 0.85rem;
color: #666;
border-top: 1px solid #222;
padding-top: 1.5rem;
}
.philosophy-section {
background-color: #f8f8f8;
color: #111;
padding: 6rem 2rem;
text-align: center;
font-family: 'Playfair Display', serif;
}

.philosophy-content h2 {
font-size: 2.4rem;
margin-bottom: 1rem;
letter-spacing: 0.5px;
}

.philosophy-content p {
max-width: 800px;
margin: 0 auto;
font-size: 1.1rem;
line-height: 1.8;
color: #444;
}

.palette-section {
padding: 6rem 2rem;
background-color: #fff;
text-align: center;
font-family: 'Playfair Display', serif;
}

.palette-section h2 {
font-size: 2rem;
margin-bottom: 3rem;
letter-spacing: 1px;
}

.palette-grid {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
max-width: 1100px;
margin: 0 auto;
}

.color-swatch {
width: 120px;
height: 120px;
border-radius: 8px;
position: relative;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
transition: transform 0.3s ease;
display: flex;
align-items: flex-end;
justify-content: center;
padding: 0.7rem;
flex-direction: column;
color: #000;
background-color: #eee;
}

.color-swatch span {
font-size: 0.9rem;
font-family: monospace;
}

.color-swatch small {
font-size: 0.75rem;
color: #555;
}

.color-swatch:hover {
transform: scale(1.05);
}


.canvas-book-section {
position: relative;
overflow: hidden;
background: #0f0f0f;
padding: 8rem 2rem;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}

.canvas-book-wrapper {
position: relative;
width: 100%;
max-width: 1200px;
height: 400px;
}

.canvas-book-left,
.canvas-book-right {
position: absolute;
top: 0;
width: 50%;
height: 100%;
background: #1a1a1a;
transform-origin: center right;
transition: transform 1s ease;
z-index: 1;
}

.canvas-book-right {
left: 50%;
transform-origin: center left;
}

.canvas-book-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) translateY(50px);
opacity: 0;
text-align: center;
z-index: 2;
color: #ffffff;
max-width: 600px;
font-family: 'Cormorant Garamond', serif;
}

.canvas-book-content h2 {
font-size: 3rem;
margin-bottom: 1rem;
font-weight: 400;
}

.canvas-book-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #cccccc;
}

.canvas-book-button {
display: inline-block;
padding: 0.75rem 2rem;
border: 1px solid #ffffff;
text-decoration: none;
color: #ffffff;
transition: all 0.3s ease;
}

.canvas-book-button:hover {
background: #ffffff;
color: #0f0f0f;
}

/* --- Active animations --- */
.canvas-open .canvas-book-left {
transform: translateX(-100%);
}

.canvas-open .canvas-book-right {
transform: translateX(100%);
}

.canvas-open .canvas-book-content {
opacity: 1;
transform: translate(-50%, -50%) translateY(0);
transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}



.lines-love-section {
background: #fff;
color: #000;
padding: 100px 20px;
overflow: hidden;
position: relative;
}

.lines-container {
display: flex;
flex-direction: column;
gap: 12px;
align-items: center;
}

.line {
width: 0;
height: 2px;
background: #000;
animation: growLineHorizontal 1.5s ease forwards;
animation-delay: calc(0.1s * var(--i));
border-radius: 5px;
}

/* Line animation */
@keyframes growLineHorizontal {
to {
width: var(--target-width);
}
}

/* Content below the lines */
.love-content {
text-align: center;
margin-top: 80px;
opacity: 0;
transform: translateY(30px);
transition: all 1s ease;
}

.love-items {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 30px;
}

.love-item {
background: #fff;
border: 1px solid #000;
padding: 12px 24px;
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
border-radius: 12px;
}

/* Reveal text */
.lines-love-section.show .love-content {
opacity: 1;
transform: translateY(0);
}.luxury-book-wrapper {
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

.luxury-book {
  width: 100%;
  max-width: 1200px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  perspective: 2000px; /* THIS makes the page-flip illusion */
}

.luxury-book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #ccc;
  transform: translateX(-50%);
  z-index: 2;
}

.page {
  display: flex;
  flex-wrap: wrap;
}

.page-content {
  flex: 1 1 50%;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: rotateY(90deg); /* <-- like a closed book page */
  transform-origin: left center;
  transition: all 1.2s ease;
}

.text-side {
  background: #ffffff;
  text-align: center;
}

.text-side h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
}

.text-side p {
  font-size: 1.2rem;
  color: #666;
}

.img-side {
  background: #eeeeee;
}

.img-side img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* When active */
.luxury-book.active .page-content {
  opacity: 1;
  transform: rotateY(0deg); /* <-- opens like a real book */
}

/* Mobile behavior */
@media (max-width: 768px) {
  .page {
    flex-direction: column;
  }

  .page-content {
    flex: 1 1 100%;
    transform: rotateX(90deg); /* Flip from top on mobile */
    transform-origin: top center;
  }

  .luxury-book.active .page-content {
    transform: rotateX(0deg);
  }

  .luxury-book::before {
    display: none;
  }
}
/* Base cursor */
.custom-cursor {
  width: 12px;
  height: 12px;
  background-color: black;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease, transform 0.15s ease;
  z-index: 9999;
  mix-blend-mode: difference; /* Makes it blend over white/black backgrounds */
}

/* When hovering on links/buttons */
.custom-cursor.hovered {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 2px solid black;
  mix-blend-mode: normal;
}
.magic-exhibit {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #f9f9f7;
}

.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
}

.page-left, .page-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: center;
  transition: transform 2.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-left {
  left: 0;
}

.page-right {
  right: 0;
}

.magic-exhibit:hover .page-left {
  transform: scaleX(0);
}

.magic-exhibit:hover .page-right {
  transform: scaleX(0);
}

.light-reflection {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  z-index: 3;
  animation: moveLight 8s infinite linear;
}

@keyframes moveLight {
  from { transform: translateX(-100%) rotate(25deg); }
  to { transform: translateX(100%) rotate(25deg); }
}


.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Playfair Display', serif;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  z-index: 1;
}

.content-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25); /* soft glass look */
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.content-inner h1 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #d4c7b0 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  line-height: 1.2;
}

.magic-button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  background-color: #d4c7b0;
  color: #111;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s ease;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.magic-button:hover {
  background-color: #111;
  color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .content-inner h1 {
    font-size: 2rem;
  }

  .magic-button {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--accent);
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Hamburger Open Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: #111;
    display: flex; /* ADD THIS */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 1000; /* ADD THIS TOO TO BE SAFE */
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}

/* SCROLL */
.nav.scrolled .nav-links a {
  color: #fff;
}
.tit{
  text-align: center;
  font-size: 40px;
  transform: translateY(-20px);
  
}

.nav.scrolled .nav-links a:hover::after {
  background: #fff;
}
/* PAGE LOADER */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black); /* or just "black" */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader img {
  width: 120px; /* Adjust based on your logo size */
  opacity: 0;
  animation: fadeInOut 2.5s ease forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
/* For Webkit Browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #666;
}
#particles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tilt-card {
  width: 300px;
  height: 400px;
  background: #333;
  color: white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
  transform-style: preserve-3d;
}
#distortion-effect {
  width: 400px; /* or whatever size */
  height: 600px;
  position: relative;
}
.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1.5s ease forwards 0.5s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.call-us-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent-beige);
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.8rem;
  color: white;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(216,199,182,0.7);
  transition: all 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216,199,182,0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(216,199,182,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216,199,182,0);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-info {
  position: absolute;
  bottom: 20px;
  left:1px;
  color: white;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-info {
  opacity: 1;
}


.combo-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.combo-container h2 {
  font-size: 40px;
  color: white;
  font-weight: 600;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

/* Fade in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grid Container */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Combo Card Styling */
.combo-card {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.combo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.combo-card h3 {
  font-size: 24px;
  color: #333;
  margin: 15px 0;
}

.combo-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

/* Icon styling */
.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.combo-card:hover .icon-container {
  transform: rotate(360deg);
}

/* GENERAL SECTION STYLES */
.journey-section, .combo-section {
  position: relative;
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.journey-section {
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  color: #f0f0f0;
}

.combo-section {
  background: linear-gradient(180deg, #292828 0%, #000000 100%);
  color: #111;
}

/* CRAFTSMANSHIP JOURNEY */
.journey-section {
  background: #111; /* Elegant black background */
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.8));
  transform: translateX(-50%);
  z-index: -1;
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
}

.journey-section h2 {
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #eee;
  font-family: 'Playfair Display', serif; /* Elegant serif font */
  letter-spacing: 1px;
  line-height: 1.4;
  font-weight: 700; /* More weight for the header */
}

.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.journey-item {
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.journey-item[data-aos="fade-up"] {
  opacity: 1;
  transform: translateY(0);
}

.journey-item h3 {
  font-size: 2.2rem;
  font-family: 'Poppins', sans-serif; /* Clean modern font */
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.journey-item p {
  font-size: 1.4rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  opacity: 0.85;
}

.journey-item:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.journey-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

/* Timeline Design */
.journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #888, #444);
  transform: translateX(-50%);
  opacity: 0.5;
}

.journey-item:nth-child(odd)::after {
  background: #f0f0f0; /* Soft white for odd items */
}

.journey-item:nth-child(even)::after {
  background: #888; /* Medium grey for even items */
}

.journey-item:hover::after {
  transform: translateX(-50%) translateY(-50%) scale(1.2);
  transition: transform 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .journey-timeline {
    flex-direction: column;
    gap: 4rem;
  }

  .journey-item h3 {
    font-size: 2rem;
  }

  .journey-item p {
    font-size: 1.2rem;
  }
}

/* COMBOS GRID */
.combo-container {
  width: 100%;
  max-width: 1200px;
}

.combo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.combo-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.combo-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
}
.wave-container {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: #fff; /* Background white */
}

.wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100%;
  animation: waveMove 8s linear infinite;
}

.wave path {
  fill: linear-gradient(to right, #000, #666, #ccc); /* fallback, for better control use mask */
  fill: #000; /* fill color black, you can tweak */
}

/* Animation për lëvizje të waves */
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#faq {
  background-color: #fff;
  padding: 60px 20px;
}

h2 {
  text-align: center;
  font-size: 36px;
  color: #333;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 20px;
}

p {
  text-align: center;
  font-size: 18px;
  color: #555;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.accordion-item {
  border-bottom: 1px solid #e1e1e1;
}

.accordion-header {
  padding: 25px 30px;
  background-color: #333;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease;
  font-family: 'Playfair Display', serif;
}

.accordion-header:hover {
  background-color: #444;
}

.accordion-header.active {
  background-color: #111;
}

.accordion-header.active .accordion-toggle:before {
  content: "-";
}

.accordion-toggle:before {
  content: "+";
  font-size: 30px;
  font-weight: 700;
}

.accordion-body {
  padding: 20px 30px;
  background-color: #f8f8f8;
  color: #333;
  display: none;
  font-size: 16px;
  line-height: 1.6;
  border-radius: 0 0 10px 10px;
  transition: all 0.3s ease;
}

.accordion-body p {
  margin: 0;
}

/* AOS Animations */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styling */
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  .accordion-header {
    font-size: 20px;
  }

  .accordion-body {
    font-size: 14px;
  }
}


#tile-inspiration {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Playfair Display', serif;
}

h2 {
  font-size: 36px;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

p {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

.inspiration-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.inspiration-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.inspiration-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.inspiration-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.inspiration-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.overlay h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 16px;
  line-height: 1.5;
}

.inspiration-item:hover .overlay {
  opacity: 1;
}

@media (max-width: 1024px) {
  .inspiration-gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .inspiration-gallery {
    grid-template-columns: 1fr 1fr;
  }

  h2 {
    font-size: 30px;
  }

  .overlay h3 {
    font-size: 20px;
  }

  .overlay p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .inspiration-gallery {
    grid-template-columns: 1fr;
  }
  
  h2 {
    font-size: 26px;
  }

  .overlay h3 {
    font-size: 18px;
  }

  .overlay p {
    font-size: 14px;
  }
}
/* CSS */
@import url('https://fonts.googleapis.com/css2?family=Plazmafair:wght@400;700&display=swap');

.service-cards {
  background: #fafafa;
  padding: 80px 20px;
  font-family: 'Playfair Display', sans-serif;
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;

}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 40px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.service-heading {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.service-text {
  font-size: 16px;
  color: #7a7a7a;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-container {
    flex-direction: column;
    align-items: center;
  }

  .service-heading {
    font-size: 22px;
  }
}
/* LOCATION SECTION */
.location-section {
  background: #111;
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.location-container {
  max-width: 1000px;
  margin: 0 auto;
}

.location-section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: #eee;
  letter-spacing: 1px;
}

.location-section p {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 3rem;
  font-family: 'Open Sans', sans-serif;
}

.map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.map-wrapper:hover {
  transform: scale(1.01);
}
#backToTop {
  position: fixed;
  bottom: 100px; /* moved higher */
  right: 20px;
  z-index: 999;
  font-size: 1.5rem;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 0.8rem 1rem;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

/* show on scroll */
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover {
  background-color: #333;
  transform: scale(1.1);
}

/* Responsive tweak for smaller screens */
@media (max-width: 768px) {
  #backToTop {
    bottom: 100px;
    right: 15px;
    padding: 0.6rem 0.9rem;
  }
}

.why-us {
  background-color: #0e0e0e;
  color: #f1f1f1;
  padding: 6rem 2rem;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-us h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.why-sub {
  font-size: 1.2rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.why-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.05);
}

.why-icon {
  background: #222;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: #fff;
}

.why-icon i {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}
