@charset "UTF-8";
/*!
 * Project Name: Kumar Plumeria | 3.5, 3.5 BHK+Staff and 4.5 BHK+Staff , Bagalur | Main Landing Page
 * Author: Tamil Selva
 * Version: 0.0.1
 * Description: Custom SCSS for layout, styling, and responsive design.
 * Created: 09 Aug 2025
 * Updated: 11 Aug 2025
 */
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "cinzel", serif;
}

p,
ul,
ol,
li,
a,
span,
button {
  font-family: "outfit", sans-serif;
}

textarea {
  resize: none;
}

/* Typography */
html {
  scroll-behavior: smooth;
}

/* Root Variables */
:root {
  --primary-color: #d7a53c;
  --secondary-color: #ebc980;
  --tertiary-color: #c59d5f;
  --white-color: #fff;
  --black-color: #000;
}

/* Root Variables */
/* Custom scroll bar */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background-color: black;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

/* Custom scroll bar */
::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Custom cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.2s ease, height 0.2s ease;
  z-index: 2000;
  mix-blend-mode: difference;
}

/* When hovering links/buttons */
.cursor.hover {
  width: 40px;
  height: 40px;
  background: rgba(240, 192, 64, 0.2);
  border-color: #f0c040;
}

/* Custom cursor */
/* Navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1400px;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  z-index: 1000;
  transition: background 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(42, 42, 42, 0.726);
}
.navbar .nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navbar .nav-left .logo {
  height: 65px;
  width: auto;
  border-right: 1px solid #f0c040;
  padding-right: 20px;
}
.navbar .nav-left .nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}
.navbar .nav-left .nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
  font-weight: 200;
}
.navbar .nav-left .nav-links li a:hover {
  color: var(--secondary-color);
}
.navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar .nav-right .phone {
  font-size: 16px;
  font-weight: 300;
}
.navbar .nav-right .btn {
  background: #f0c040;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: semibold;
  font-size: 17px;
  transition: background 0.3s ease;
}
.navbar .nav-right .btn:hover {
  background: #e0a820;
}
.navbar .nav-right .hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.navbar .nav-right .hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.navbar .nav-right .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar .nav-right .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar .nav-right .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.navbar.scrolled {
  background: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .navbar .nav-left {
    flex: 1; /* pushes right side */
  }
  .navbar .nav-left .nav-links {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: rgba(36, 36, 36, 0.95);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  .navbar .nav-left .nav-links.open {
    max-height: 300px;
    padding: 15px 0;
  }
  .navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .navbar .nav-right .btn {
    display: inline-block; /* show button again */
    order: 1; /* before hamburger */
  }
  .navbar .nav-right .hamburger {
    display: flex; /* ✅ make it visible */
    order: 2; /* after button */
  }
}
.slider {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  /* show desktop by default */
  /* swap on mobile */
}
.slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slider .slide.active {
  opacity: 1;
}
.slider .desktop {
  display: block;
}
.slider .mobile {
  display: none;
}
@media (max-width: 768px) {
  .slider .desktop {
    display: none;
  }
  .slider .mobile {
    display: block;
  }
}

.about-section {
  padding: 100px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}
.about-section .about-container {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-section .about-container .about-image {
  flex: 1;
  position: relative;
}
.about-section .about-container .about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  /* Top-right cut corner effect */
  clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%);
}
.about-section .about-container .about-content {
  flex: 1;
}
.about-section .about-container .about-content .round-text {
  width: 80px;
  overflow: hidden;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  color: #929292;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.about-section .about-container .about-content .round-text span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 8s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.about-section .about-container .about-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 300;
  color: var(--primary-color);
  margin-top: 20px;
}
.about-section .about-container .about-content p {
  margin-bottom: 15px;
  line-height: 1.9;
  color: #929292;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-container .about-image img {
    clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 0 100%);
  }
}
.project-overview {
  background: var(--black-color);
  color: #fff;
  padding: 80px 5%;
  /* Bottom steps row */
}
.project-overview .container {
  max-width: 1200px;
  margin: 0 auto;
}
.project-overview .overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}
@media (max-width: 992px) {
  .project-overview .overview-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.project-overview .overview-image img {
  width: 100%;
  border-radius: 20px;
}
.project-overview .overview-content .tag {
  width: 80px;
  overflow: hidden;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  color: #929292;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.project-overview .overview-content .tag span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 8s linear infinite;
}
.project-overview .overview-content h1 {
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 300;
  color: var(--tertiary-color);
  margin-top: 20px;
}
.project-overview .overview-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 300;
  color: var(--primary-color);
  margin-top: 20px;
}
@media (max-width: 768px) {
  .project-overview .overview-content h2 {
    font-size: 26px;
  }
}
.project-overview .overview-content p {
  margin-bottom: 15px;
  line-height: 1.9;
  color: #929292;
  font-size: 16px;
}
.project-overview .overview-content .advantages {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.project-overview .overview-content .advantages li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  color: #929292;
}
.project-overview .overview-content .advantages li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}
.project-overview .overview-content .btn {
  background: var(--primary-color);
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
  font-weight: 300;
}
.project-overview .overview-content .btn:hover {
  background: #aa7f1b;
}
.project-overview .overview-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.project-overview .overview-stats .stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.project-overview .overview-stats .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}
.project-overview .overview-stats .stat h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-color);
}
.project-overview .overview-stats .stat p {
  font-size: 14px;
  margin-top: 5px;
  color: #bbb;
}
@media (max-width: 768px) {
  .project-overview .overview-stats {
    flex-direction: column;
    gap: 20px;
  }
  .project-overview .overview-stats .stat:not(:last-child)::after {
    display: none;
  }
}

.proximity {
  background: var(--black-color);
  padding: 80px 5%;
  font-family: "Poppins", sans-serif;
}
.proximity h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--primary-color);
  font-weight: 300;
}
.proximity h2 span {
  font-size: 18px;
  font-weight: 400;
  color: #777;
}
.proximity .time-group {
  margin-bottom: 50px;
}
.proximity .time-group h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
.proximity .time-group h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateY(-50%);
}
.proximity .time-group .places {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.proximity .time-group .places span {
  padding: 10px 15px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  font-size: 14px;
  transition: all 0.3s ease;
  color: #bdbdbd;
}
.proximity .time-group .places span:hover {
  background: var(--primary-color);
  color: #111;
  transform: translateY(-3px);
}

.contact-section {
  background: #000;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.contact-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #d4af37;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}
.contact-section .subtitle-div {
  max-width: 800px;
  margin: 0 auto;
}
.contact-section .subtitle-div .subtitle {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 40px;
}
.contact-section .contact-form {
  max-width: 650px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.contact-section .contact-form .form-group input,
.contact-section .contact-form .form-group textarea,
.contact-section .contact-form .form-group select {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  font-size: 16px;
  font-weight: semibold;
  color: #747474;
  outline: none;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}
.contact-section .contact-form .form-group input::-moz-placeholder, .contact-section .contact-form .form-group textarea::-moz-placeholder, .contact-section .contact-form .form-group select::-moz-placeholder {
  color: #bbb;
}
.contact-section .contact-form .form-group input::placeholder,
.contact-section .contact-form .form-group textarea::placeholder,
.contact-section .contact-form .form-group select::placeholder {
  color: #bbb;
}
.contact-section .contact-form .form-group input:focus,
.contact-section .contact-form .form-group textarea:focus,
.contact-section .contact-form .form-group select:focus {
  border-color: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}
.contact-section .contact-form .btn-submit {
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-section .contact-form .btn-submit:hover {
  background: linear-gradient(135deg, #b8860b, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.footer {
  background: #000;
  color: #fff;
  padding: 35px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}
.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footer-container .rera {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 10px;
}
.footer .footer-container .rera span {
  color: #d4af37;
  font-weight: 600;
}
.footer .footer-container .copy {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}
.footer .footer-container .dev {
  font-size: 13px;
  color: #888;
}
.footer .footer-container .dev a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer .footer-container .dev a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.8);
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s ease;
}

/* Modal Content */
.modal-content {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 40px;
  width: 95%;
  max-width: 520px;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  animation: slideUp 0.5s ease;
}
.modal-content h2 {
  font-size: 26px;
  margin-bottom: 5px;
  color: #d4af37;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
}
.modal-content .subtitle {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 25px;
  font-style: italic;
}
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal-content form input,
.modal-content form textarea,
.modal-content form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  font-size: 15px;
  background: rgba(30, 30, 30, 0.9);
  color: #fff;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.modal-content form input::-moz-placeholder, .modal-content form textarea::-moz-placeholder, .modal-content form select::-moz-placeholder {
  color: #bbb;
}
.modal-content form input::placeholder,
.modal-content form textarea::placeholder,
.modal-content form select::placeholder {
  color: #bbb;
}
.modal-content form input:focus,
.modal-content form textarea:focus,
.modal-content form select:focus {
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
  outline: none;
}
.modal-content form textarea {
  resize: none;
  min-height: 120px;
}
.modal-content form .submit-btn {
  background: linear-gradient(135deg, #d4af37, #f6e27a);
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
.modal-content form .submit-btn:hover {
  background: #000;
  color: #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #d4af37;
  cursor: pointer;
  transition: 0.3s;
}
.close-btn:hover {
  color: #fff;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: #000;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
  z-index: 9999;
}

.scroll-top:hover {
  background: #e0a820;
  transform: scale(1.1);
}

/* Visible state */
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.gallery-section {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--black-color);
}
.gallery-section h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 300;
}
.gallery-section .btn-group {
  margin-bottom: 30px;
}
.gallery-section .btn-group button {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 20px;
  transition: 0.3s;
}
.gallery-section .btn-group button.active {
  background: #e0a820;
}
.gallery-section .btn-group button:hover {
  background: var(--secondary-color);
}
.gallery-section .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.gallery-section .gallery img {
  width: 450px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
.gallery-section .gallery img:hover {
  transform: scale(1.05);
}
.gallery-section .gallery.hidden {
  display: none;
}

.amenities {
  padding: 3rem 2rem;
  background-color: black;
}
.amenities h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-weight: 300;
}
.amenities .amenities-group {
  margin-bottom: 3rem;
}
.amenities .amenities-group h3 {
  font-size: 1.5rem;
  color: #b0b0b0;
  text-align: center;
  font-weight: 200;
  border-bottom: 1px solid #4e4e4e;
  margin: 60px 0;
}
.amenities .amenities-group .amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
.amenities .amenities-group .amenities-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.amenities .amenities-group .amenities-list li img {
  width: 50px;
  height: 50px;
  margin-bottom: 0.5rem;
}
.amenities .amenities-group .amenities-list li span {
  font-size: 0.95rem;
  color: #767676;
}/*# sourceMappingURL=style.css.map */