/*UNIVERSAL CODE */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}



/* ===== NAVBAR 


==================================================================== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;


 width: 100%;
  
  color: black;

  
  box-sizing: border-box; 
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo {
   font-size: 26px;
    font-weight: 600;
 
 
}
.logo span {
  color: #1e3a8a;
}
.center {
    display: flex;
    gap: 40px;
    margin: auto;
  
  
}
.center p{
    margin: 0;
    cursor: pointer;
    color: #333;
    text-decoration: none;
}

.center .nav-link{
    margin: 0;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
}

.center .nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #cfcfcf;
    transition: width 0.25s ease;
}

/* hover */
.center .nav-link:hover::after{
    width: 100%;
}

/* active page */
.center .nav-link.active::after{
    width: 100%;
}



/* Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.share-btn,
.contact-btn {
    padding: 9px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap();
    transition: 0.2s ease;
   
}

.share-btn {
    background: #f1f1f1;
    
}

.contact-btn {
    background: #1e3a8a;
    color: white;
}
.nav-links {
  list-style: none;
  display: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #111;
  text-decoration: none;
  padding: 6px 12px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: gray;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid #222;
    transition: all 0.4s ease;
    box-sizing: border-box;
  }

  .nav-links li {
    width: 100%;
    padding: 12px 20px;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }

  /* When toggled open */
  .nav-links.show {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
}

/* Extra tuning for very small phones */
@media (max-width: 480px) {
  .site-nav {
    padding: 12px 20px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav-links li {
    padding: 15px 20px;
  }

  .menu-toggle {
    font-size: 1.6rem;
  }
}
.property {
  margin-left: 50px;
}
.details {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.details p {
  margin-top: -5px;
}
.dot-text::before{
  content: "• ";
  color: #888; /* grey dot */
  margin-right: 4px;
}
/* HERO */
.tour-hero {
  width: 100%;
  max-width: 1200px;
  
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

#panoramaContainer {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 420px;
  background: #000;
  margin-top: 15px;
  border-radius: 15px;
}
.pano-badge {
    position: absolute;
    top: 15px;
    right: 15px;

    background: #ffffff;
    color: #000000;

    padding: 6px 14px;
    font-size: 14px;
    border-radius: 5px;

    font-size: 17px;
    font-weight: 600;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}
.tour-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 16px;




  color: white;
  border: 2px solid white;

  cursor: pointer;
  background-color: none;
 
  transition: 0.35s;
}
.tour-btn:hover {
  background: white;
  color: black;
}
.play-circle {
  width: 52px;
  height: 52px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.triangle {
  width: 0;
  height: 0;
  border-left: 16px solid black;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 3px;
}
.tour-btn:hover .play-circle {
  background: black;
}

.tour-btn:hover .triangle {
  border-left: 16px solid white;
}

.play-text {
  font-weight: 650;
  letter-spacing: 0.4px;
  color: #ffffff;
  font-size: 18px;
  margin-top: 10px;
}
/* NAV BUTTONS */
.tour-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1000px;
  margin-left: 33px;
  padding: 0 20px;
}

.tour-nav button {
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  background: #1f2933;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.tour-nav button:hover {
  background: #111827;
}

#startTourBtn {
  background: none;
}

.instructions p {
  color: #333;
  margin: 10px;
}
/*********************HOME SNAPSHOT*****************/

.floor-img {
    width: 300px;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.floor-img:hover {
    transform: scale(1.05);
}
#popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* lighter dim */
    backdrop-filter: blur(6px); /* 🔥 nice blur effect */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
#popup-img {
    width: 60%;
    max-width: 800px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
hr {
    width: 60%;              /* shorter */
    height: 1.5px;             /* thickness */
    background-color: #ccc;  /* grey color */
    border: none;            /* remove default border */
    margin: 20px;       /* center it */
    border-radius: 5px;      /* smooth edges */
}
.interactive {
  margin-left: 50px;
  margin-top: 240px;
  display: flex;
  gap:40;
}
.gallery h3{
  margin-left: 40px;
}
/* FLOORPLAN */
.photos{
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-left: 40px;
}
.gallery h3 {
  margin-top: 10px;
}
.photos img{
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    object-fit: cover;
}
.tour-overview-card{
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   max-width: 300px;
    font-family: sans-serif;
    margin-left: 1125px;
    margin-top: -665px;
    min-height: 300px;
}

.tour-overview-card h3{
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.tour-overview-card ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-overview-card li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}
.tour-overview-card li img {
    width: 30px;
    height: 30px;
    object-fit: contain; /* keeps proportions clean */
}
.tour-overview-card .icon{
    font-size: 18px;
}
.contact1  {
  margin-top: 20px;
   margin-left: 1180px;
   width: 250px;
   border-radius: 10px;
   height: 40px;
   background-color: #1e3a8a;
   color: #fff;
   font-size: 16px;
   
}
.download {
    margin-top: 10px;
   margin-left: 1180px;
   width: 250px;
   border-radius: 10px;
   height: 40px;
   background-color: #fff;
   color: #000;
   font-size: 16px;
}
/* GALLERY */

.plan-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #111827;
}
.plan-placeholder {
  height: 260px;
  border-radius: 14px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 14px;
}
.plan-placeholder.blueprint {
  background: #eef2ff; /* subtle blueprint vibe */
}

.project-sections{
    display: flex;
    justify-content: space-between;
   
    padding: 70px 6%;
    background: white;
}



/* gallery */
.gallery{
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-direction: column;
}

.gallery img{
    width: 32%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
  
}




/* right form side */
.contact-box{
    flex: 1;
}

.contact-box h2{
    margin-bottom: 20px;
}

.contact-box form{
    display: flex;
    flex-direction: column;
}

.contact-box label{
    margin: 10px 0 5px;
    font-weight: 500;
}

.contact-box input,
.contact-box textarea{
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.contact-box button{
    margin-top: 15px;
    padding: 14px;
    border: none;
    background: black;
    color: white;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}


/***********PROJECT OVERVIEW*********/

.all {
    display: flex;
    align-items: center;
    gap: 8px; /* space between text and arrow */
    cursor: pointer;
}

#arrow {
    font-size: 18px;
}

.room-thumbnails {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 0 40px;
    flex-wrap: wrap;
   
   
}


.room-thumb {
    width: 180px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.room-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}
.room-thumb span {
    display: block;
    padding: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}
.room-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.room-thumb.active {
    border: 2px solid #1e3a8a;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.room-thumb.active span {
    color: #1e3a8a;
    font-weight: 600;
}

/*INFOR CARD*/
.info-card {
    width: 350px; /* big card */
    max-width: 90%;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: gray;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 50px auto;
    margin-left: 1070px;
    margin-top: -250px;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect */
.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Text styling */
.info-card p {
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Get Started button */
.info-card button {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: #1e3a8a;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.info-card button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transform: scale(1.05);
}