* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
 
}

/* HEADER */
.header {
  background: #000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid #eee;
}

/* LOGO CIRCLE */
.logo-circle {
	margin-top:10px;
	margin-bottom:10px;
	
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  gap: 0px;
}

/* Peach Base */
.peach {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Leaves */
.peach .leaf {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(-20deg);
  width: 4px;
  height: 6px;
  background: green;
  border-radius: 2px;
}

/* Peach Colors */
.peach-black {
  background: #000;
}

.peach-peach {
  background: #e65d33;
}

/* Hover Vibration */
.logo-circle:hover .peach {
  animation: vibrate 0.3s infinite;
}

/* Vibration keyframes */
@keyframes vibrate {
  0% { transform: translate(0px, 0px) rotate(0deg); }
  25% { transform: translate(1px, -1px) rotate(5deg); }
  50% { transform: translate(-1px, 1px) rotate(-5deg); }
  75% { transform: translate(1px, 1px) rotate(3deg); }
  100% { transform: translate(0px, -1px) rotate(-3deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-circle {
	  
    width: 40px;
    height: 40px;
    gap: 4px;
  }

  .peach {
    width: 12px;
    height: 12px;
  }

  .peach .leaf {
    width: 3px;
    height: 5px;
    top: -3px;
  }
}


.main-nav {
  flex: 1;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  position: relative;
}

.menu a {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #fca288; /* peach hover */
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 140px;
  list-style: none;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.dropdown-menu li {
  padding: 8px 16px;
}

.dropdown-menu a {
  font-size: 11px;
  color: #000;
}

.dropdown-menu a:hover {
  color: peachpuff;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 120%;
}
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    display: none;
  }

  .dropdown-menu.show {
    display: block;
    visibility: visible;
  }
}

/* HAMBURGER */
.hamburger {
  width: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
}

.hamburger span {
  height: 2px;
  background: #fca288;
  width: 100%;
}

/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: #000;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.4s ease;
  
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.side-menu a:hover {
  color: #f4a896;
}
/* ACTIVE */
.side-menu.active {
  right: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}
/* DARK FOOTER */
.footer-dark {
  background: #000;
  padding: 20px 20px 30px;
  overflow: hidden;
}

/* Gradient heading */
.footer-heading {
  text-align: center;
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  background: #000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gallery */
.footer-gallery {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, 160px);
  gap: 12px;
  animation: slideGallery 30s linear infinite;
}

/* Images */
.gallery-track img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.gallery-track img:hover {
  filter: grayscale(0%);
}

/* Sliding animation */
@keyframes slideGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Footer bottom */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-heading {
    font-size: 20px;
  }

  .gallery-track {
    grid-template-rows: repeat(2, 140px);
  }

  .gallery-track img {
    width: 180px;
    height: 140px;
  }
}
/* HERO LOUNGE SECTION */
.hero-lounge {
  width: 100%;
  min-height: 130vh;
  
  
   /* Background image */
  
  
  
  
  
 background-image: url("../bg3.jpeg");
 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}

/* Side Text */
.hero-text {
  color: #000;
  max-width: 220px;
}

.hero-text h3 {
  font-size: 28px;
  letter-spacing: 3px;
}

.hero-text p {
  font-size: 14px;
  margin-top: 6px;
  opacity: 0.8;
}

.tv-frame {
  width: 520px;
  height: 300px;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.tv-slider {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.tv-slider img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.tv-slider img.active {
  opacity: 1;
  transform: translateX(0);
}

.tv-slider img.next {
  opacity: 1;
  transform: translateX(100%);
}

/* FOOTER IMAGE OVERLAY */
.footer-images img {
  filter: grayscale(100%) brightness(0.5);
  transition: filter 0.4s ease;
}

/* Optional hover effect */
.footer-images img:hover {
  filter: grayscale(100%) brightness(0.8);
}

/* HIGHLIGHT BANNER */
.footer-highlight {
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  background: linear-gradient(90deg, #f4a896, #ffffff, #f4a896);
  margin-bottom: 20px;
}

.footer-highlight span {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: 6px;
  color: #000;
  text-transform: uppercase;
  display: inline-block;
  animation: bannerBlink 4s infinite;
}

/* Blink animation */
@keyframes bannerBlink {
  0%   { opacity: 1; }
  40%  { opacity: 1; }
  50%  { opacity: 0; }
  75%  { opacity: 0; }
  100% { opacity: 1; }
}



































.portfolio {
  position: relative;
  padding: 60px 6vw;
  overflow: hidden;
  background: #e9e9eb;
}

/* SLIDER TRACK */
.portfolio-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* CARD SIZE — 4 VISIBLE */
.portfolio-card {
  flex: 0 0 calc(25% - 22px);
  background: #e9e9eb;
}

/* IMAGE EFFECT */
.portfolio-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.portfolio-card:hover img {
  filter: grayscale(0%);
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.card-content p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.card-content a {
  font-size: 12px;
  text-decoration: none;
  color: #000;
}

/* ARROWS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: #000;
  color: #e9e9eb;
  cursor: pointer;
  z-index: 10;
}

.slider-btn:hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: #000;
  color: #fca288;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.left { left: 10px; }
.slider-btn.right { right: 10px; }



@media (max-width: 1024px) {
  .portfolio-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .portfolio-card {
    flex: 0 0 100%;
  }

  .portfolio-card img {
    height: 320px;
  }
}











/* =========================
   BEGINNING SECTION
========================= */
.ff-beginning {
	
  background: #e9e9eb;
  padding: 30px 20px;
}

.ff-beginning-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.ff-beginning-text {
  flex: 1;
}

.ff-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #999;
  display: block;
  margin-bottom: 10px;
}

.ff-beginning-text h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #111;
}

.ff-beginning-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.ff-btn-outline {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.ff-btn-outline:hover {
  background: #111;
  color: #fff;
}

.ff-beginning-image {
  flex: 1;
  text-align: right;
}

.ff-beginning-image img {
  max-width: 100%;
  height: auto;
}

/* =========================
   VIDEO SECTION
========================= */
.ff-video-section {
  height: 300px;
  background: url("YOUR-VIDEO-BG.jpg") center/cover no-repeat;
  position: relative;
}

.ff-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ff-video-overlay span {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
}

.ff-play-btn {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.ff-play-btn:hover {
  background: #fff;
  color: #000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .ff-beginning-inner {
    flex-direction: column;
    text-align: center;
  }

  .ff-beginning-image {
    text-align: center;
  }

  .ff-video-section {
    height: 220px;
  }
}








/* =========================
   CONTACT PAGE
========================= */
.ff-contact-page {
  background: #e9e9eb;
  padding: 80px 20px;
  color: #333;
}

.ff-contact-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.ff-contact-header h2 {
  font-size: 32px;
  margin-bottom: 6px;
}

.ff-contact-header .ff-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #999;
}

.ff-description {
  font-size: 14px;
  color: #777;
  margin-top: 20px;
  line-height: 1.6;
}

/* =========================
   INFO
========================= */
.ff-contact-info {
  max-width: 50%;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.ff-info-item {
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.ff-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}

/* =========================
   FORM
========================= */
.ff-contact-form {
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 20px;
}

.ff-form-left,
.ff-form-right {
  flex: 1;
}

.ff-contact-form input,
.ff-contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  margin-bottom: 15px;
  font-size: 14px;
}

.ff-contact-form textarea {
  height: 140px;
  resize: none;
}

.ff-contact-form button {
  float: right;
  padding: 8px 26px;
  border: 1px solid #333;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.button-cat {
  float: right;
  padding: 8px 26px;
  border: 1px solid #333;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.ff-contact-form button:hover {
  border: 1px solid #fca288;
  color: #fca288;
}
.button-cat:hover {
  border: 1px solid #fca288;
  color: #fca288;
}

/* =========================
   FOOTER
========================= */
.ff-contact-footer {
  background: #000;
  padding: 30px 20px;
  text-align: center;
  color: #aaa;
}

.ff-footer-icon {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}


.ff-socials span:hover {
  margin: 0 8px;
  cursor: pointer;
  color: #fca288;
}

.ff-socials span {
  margin: 0 8px;
  cursor: pointer;
}

.ff-contact-footer p {
  margin-top: 15px;
  font-size: 13px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .ff-contact-info,
  .ff-contact-form {
    flex-direction: column;
  }

  .ff-contact-form button {
    float: none;
    width: 100%;
  }
}




.image-container {
    position: relative;
    display: inline-block;
  }

  .image-container img {
    display: block;
    width: 100%;
    
  }

  .heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .heart-icon:hover {
    color: #fca288;
  }
