


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f8f8;
}

.dashboard-btn {
  background-color: #d00;
  color: white;
  padding: 8px 14px;
  margin-left: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.dashboard-btn:hover {
  background-color: #a00;
}


.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20px;
  background-color: #000;
  padding: 35px 30px;;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;               /* Stick to top */
  z-index: 1000;        /* Ensure it stays above content */
}

.nav-left .logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.nav-center, .nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
  left: 25px;
  color: #fff
}

.nav-center a, .nav-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

.nav-center a img, .nav-right a img {
  width: 20px;
  height: 20px;
}

.nav-center a:hover, .nav-right a:hover {
  color: #d00;
  transform: scale(1.05);
}

/* Menu button */
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: white;
  font-weight: bold;
}

.menu{
    font-weight: bold;
    font-size:  20px;
    color: white;
}

.menu-btn img {
  width: 25px;
  height: 25px;
}

/* Side panel */
.side-panel {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #fff;
  border-left: 3px solid #d00;
  padding: 15px;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

.side-panel.active {
  right: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.panel-header h3 {
  font-weight: bold;
}

.panel-header button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #d00;
  cursor: pointer;
}

/* Panel links */
.side-panel a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  padding: 6px 0;
  border-radius: 4px;
  transition: 0.3s;
}

.side-panel a img {
  width: 20px;
  height: 20px;
}

.side-panel a:hover {
  color: #d00;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive: hide center on small screens */
@media (max-width: 850px) {
  .nav-center {
    display: none;
  }
}












/* ===== VINTAGE HERO SECTION (SCOPED) ===== */
.vintage-hero-section {
    background-color: #f7f7f7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vintage-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
    background-size: 2px 2px;
    opacity: 0.15;
    mix-blend-mode: multiply;
}

.vintage-hero-container {
    max-width: 900px;
    padding: 40px;
    text-align: center;
    z-index: 2;
    color: #171717;
}

.vintage-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 
        1px 1px 0 rgba(255, 255, 255, 0.4), 
        -1px -1px 0 rgba(0, 0, 0, 0.2),
        0 0 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vintage-brand-name:hover {
    transform: translateY(1px);
    text-shadow: 
        0 0 0 rgba(255, 255, 255, 0.4), 
        0 0 0 rgba(0, 0, 0, 0.2),
        0 0 10px rgba(0, 0, 0, 0.1);
}

.vintage-logo-slogan-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.vintage-logo-image {
    display: block;
    width: 400px;
    height: 400px;
    object-fit: contain;
    padding: 15px;
    background-color: transparent;
    border: 3px solid #171717;
    border-radius: 50%;
    margin-bottom: 40px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.vintage-logo-image:hover {
    border-color: #c72c2c;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.2);
}

.vintage-slogan {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    margin: 20px 0 0 0;
    padding-top: 20px;
}

.vintage-slogan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #c72c2c;
}

.vintage-slogan .highlight {
    color: #c72c2c;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    padding: 0 5px;
}

/* Mobile Optimization for Vintage Hero */
@media (max-width: 600px) {
    .vintage-hero-container {
        padding: 20px;
    }
    .vintage-brand-name {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    .vintage-logo-image {
        width: 100px;
        height: 100px;
    }
}













/* ===== Services Section ===== */
.services-section {
  background-color: #0b0b0b;
  color: #fff;
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  overflow: hidden;
}

/* Fade-in animation */
.services-content {
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.services-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Heading ===== */
.services-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

/* ===== Paragraph ===== */
.services-content p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.9;
  max-width: 850px;
  margin: 0 auto 3rem;
  color: #f2f2f2;
}

/* ===== Image Row ===== */
.services-images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: nowrap;
  gap: 12px;;
}

.services-images img {
  display: block;
  height: auto;
  width: auto;
  max-height: 420px;        /* limits tall portraits */
  max-width: 40.33%;        /* ensures all three fit */
  object-fit: contain;
  border: 12px solid #fff;
  border-radius: 0px;
  cursor: pointer;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Remove gaps completely between borders */
.services-images img + img {
  margin-left: -6px;
}

/* Hover zoom */
.services-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(245, 245, 245, 0.3);
  z-index: 2;
}

/* Click enlarge (focus mode) */
.services-images img.enlarged {
  transform: scale(1.15);
  z-index: 5;
  box-shadow: 0 25px 60px rgba(255, 255, 255, 0.6);
}

/* ===== Button ===== */
.services-buttons {
  display: flex;
  justify-content: center;
  
}

.btn-dark {
  background: transparent;
  color: #fff;
  border: 2px solid #ffffff;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
  margin: 0;
}

.btn-dark:hover {
  background: #ff0015;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 950px) {
  .services-images {
    flex-direction: column;
    align-items: center;
  }

  .services-images img {
    width: 100%;
    max-width: 90%;
    max-height: none;
    margin-left: 0 !important;
  }

  .btn-dark {
    width: 90%;
  }
}
















/* ===== Products Section ===== */
.products-section {
  background-color: #fdfaf6; /* Cream-white */
  padding: 75px 7%;
  display: flex;
  justify-content: center;
  align-items: center; /* Center container vertically */
  min-height: 100vh;
}

/* Container */
.product-container {
  display: flex;
  align-items: center; /* Center left & right content vertically */
  gap: 130px;
  max-width: 1200px;
  width: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

/* Image */
.product-image img {
  width: 120%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  border: 15px solid #fff;
  border-radius: 0;
}

/* Text */
.product-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center text vertically relative to image */
}

.product-text h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Normal readable font */
  font-size: 5rem;     /* Adjusted size for balance */
  font-weight: 900;    /* Bold */
  margin-bottom: 15px; /* Space below heading */
  color: #000;
  text-align: left;
}


.product-text p {
  font-size: rem;
  line-height: 1.65;       /* slightly more spacing for readability */
  color: #333;
  margin-bottom: 15px;     /* space before button */
  max-width: 600px;        /* longer lines than before */
  text-align: left;
  text-indent: 1.2em;      /* subtle paragraph indent */
  word-wrap: break-word;   /* prevent overflow */
}



/* Button */
.shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px; /* smaller padding for normal width */
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  max-width: fit-content; /* ensures button only as wide as content */
}

.shop-btn:hover {
  background-color: #c12b2b;
}

/* Icon */
.shop-icon {
  width: 24px; /* smaller icon to reduce button width */
  height: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .product-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .product-image img {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .product-text p {
    max-width: 100%;
  }

  .shop-btn {
    align-self: flex-start;
  }
}










.locations-section {
  background-color: #0b0b0b;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.locations-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.locations-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.locations-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.locations-text h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
}

.locations-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
} 

.locations-text p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #ccc;
  max-width: 600px;
  text-align: left;
  margin-bottom: 20px;
  text-indent: 1.2em;
}

.view-locations-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
  max-width: fit-content;
}

.view-locations-btn:hover {
  background-color: #c12b2b;
  color: #fff;
}

.location-icon {
  width: 24px;
  height: 24px;
}

.locations-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.locations-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border: 16px solid #fff;
  border-radius: 0px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .locations-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .locations-text {
    align-items: center;
  }

  .locations-text p {
    max-width: 100%;
  }

  .view-locations-btn {
    align-self: center;
  }
}













/* ===== About Section ===== */
.about-section {
  background-color: #fdfaf6; /* Cream-white */
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  align-items: stretch;
  gap: 200px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.about-container.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 550px; /* Increase max width */
}

.about-image img {
  width: 120%;
  max-width: 650px; /* Make the image larger */
  height: auto;
  border: 15px solid #fff; /* Thick border */
  border-radius: 8px;
  object-fit: cover;
}


/* Text */
.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #000;
  position: relative;
  text-align: left;
}

.about-text h1::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #e63946; /* subtle red line */
  transition: width 0.3s ease;
}

.about-text h1:hover::after {
  width: 100px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
  text-indent: 1.2em; /* magazine style */
  max-width: 600px;
  word-wrap: break-word;
}

/* Buttons */
.about-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.about-btn {
  padding: 12px 25px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #c12b2b; /* red hover */
  color: #fff;
}

/* Media icons */
.about-media {
  display: flex;
  gap: 15px;
}

.about-media img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.5);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.about-media img:hover {
  filter: none;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    align-items: center;
  }

  .about-text p, .about-text h1 {
    max-width: 100%;
  }

  .about-buttons {
    justify-content: center;
  }

  .about-media {
    justify-content: center;
  }
}

.services-link {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center; /* center horizontally */
  gap: 15px; /* space between buttons */
  margin-top: 20px;
}

.services-link a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fff; /* white buttons */
  color: #000; /* black text */
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  border: 2px solid #000; /* subtle border for definition */
  transition: all 0.3s ease;
  text-align: center;
  min-width: 150px; /* consistent width */
}

.services-link a:hover {
  background-color: #e63946; /* subtle red hover */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}



.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 8%;
  font-family: 'Segoe UI', sans-serif;
  border-top: 3px solid #e63946;
}

/* Constrain width and center content for large screens */
.site-footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Optional column wrappers to ensure predictable sizing */
.site-footer .footer-col {
  flex: 1 1 250px; /* grows, but can shrink to 250px */
  min-width: 220px; /* prevents overly narrow columns */
}

.site-footer .footer-content p {
  margin: 0 0 14px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer .footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.15s ease;
}

.site-footer .footer-links a:hover {
  color: #e63946;
  transform: translateX(2px);
}

.site-footer .footer-social {
  display: flex;
  gap: 14px;
  flex-direction: column;
}

.site-footer .footer-social a {
  color: #fff;
  line-height: 1; /* tighter icon line-height to reduce jumpiness */
  transition: color 0.25s ease, transform 0.15s ease;
}

.site-footer .footer-social a:hover {
  color: #e63946;
  transform: scale(1.08);
}

.footer-bottom {
  text-align: center;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #aaa;
}

/* Tablet: stack columns, center text, improve spacing */
@media (max-width: 900px) {
  .site-footer {
    padding: 32px 6%;
  }

  .site-footer .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 24px;
  }

  .site-footer .footer-col {
    width: 100%;
    max-width: 600px; /* comfortable measure for readability */
  }

  .site-footer .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .site-footer .footer-social {
    justify-content: center;
  }
}

/* Mobile: tighter padding, larger tap targets, single column links */
@media (max-width: 600px) {
  .site-footer {
    padding: 28px 5%;
  }

  .site-footer .footer-content p {
    font-size: 1rem; /* slightly larger for legibility */
  }

  .site-footer .footer-links a {
    padding: 8px 6px; /* bigger hit area */
  }

  .footer-bottom {
    margin-top: 22px;
    padding-top: 14px;
    font-size: 0.85rem;
  }
}



/* ===== Services Page Styling ===== */
.services-page {
  background-color: #fdfaf6;
  padding: 100px 10%;
  font-family: 'Poppins', sans-serif;
  color: #000;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h1 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 1.1rem;
  color: #555;
}

.category-section {
  margin-bottom: 60px;
}

.category-title {
  font-size: 2rem;
  font-weight: 800;
  border-left: 6px solid #e63946;
  padding-left: 15px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px 30px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-info {
  display: flex;
  flex-direction: column;
}

.service-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.service-duration {
  font-size: 0.9rem;
  color: #777;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e63946;
}

.back-home {
  text-align: center;
  margin-top: 40px;
}

.back-home a {
  text-decoration: none;
}
















