/* style.css - Luxury Furniture Website */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --primary-black: #1a1a1a;
  --secondary-black: #2a2a2a;
  --luxury-gold: #c5a059;
  --luxury-gold-hover: #e0b86a;
  --pure-white: #ffffff;
  --luxury-beige: #f9f6f0;
  --text-gray: #666666;
  --border-color: #e5e5e5;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition-speed: 0.3s ease-in-out;
}

body {
  font-family: var(--font-body);
  color: var(--text-gray);
  background-color: var(--pure-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-black);
  font-weight: 600;
  margin-bottom: 1rem;
}

a {
  color: var(--luxury-gold);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--primary-black);
}

/* Custom Buttons */
.btn-luxury {
  background-color: var(--luxury-gold);
  color: var(--pure-white);
  padding: 15px 28px;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--luxury-gold);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-black);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.btn-luxury:hover {
  color: var(--pure-white) !important;
  border-color: var(--primary-black);
}
.wpcf7-submit.btn-luxury:hover {
  color: var(--primary-black) !important;
  
}
.btn-luxury:hover::before {
  width: 100%;
}

.btn-outline-luxury {
  background-color: transparent;
  color: var(--primary-black);
  padding: 15px 35px;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--primary-black);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.card-title{
    font-weight: 600;
    font-size: 1.3rem;
    line-height: normal;
    margin-bottom: 10px;
    display: block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card-title:hover{
    color: var(--luxury-gold);
}
.blog-card .btn-link{
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.blog-card .btn-link:hover{
  color: var(--luxury-gold) !important;
}
.btn-outline-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-black);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.btn-outline-luxury:hover {
  color: var(--pure-white);
}

.btn-outline-luxury:hover::before {
  width: 100%;
}

/* Navigation */
.navbar-luxury {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: padding var(--transition-speed);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-luxury.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-black) !important;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-link {
  color: var(--primary-black) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: 0 10px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--luxury-gold);
  transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--pure-white);
  padding-top: 80px;
  overflow: hidden;
}

.hero-text-wrapper {
  padding: 40px 80px 40px 0;
  position: relative;
  z-index: 2;
}

.hero-subtitle-modern {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary-black);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
.footer .navbar-brand {
  color: #faf9f9 !important;
}
.hero-subtitle-modern::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--primary-black);
  margin-right: 15px;
}

.hero-title-modern {
  font-size: 5.5rem;
  line-height: 1.05;
  color: var(--primary-black);
  margin-bottom: 30px;
  font-family: var(--font-heading);
  letter-spacing: -1px;
}

.hero-title-modern strong {
  display: block;
  color: var(--luxury-gold);
  font-style: italic;
  font-weight: 400 !important;
}

.hero-desc-modern {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 450px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-img-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.hero-img-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%);
  z-index: 2;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.social-vertical {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.social-vertical a {
  color: var(--primary-black);
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-vertical a:hover {
  color: var(--luxury-gold);
  transform: translateY(-3px);
}

.social-vertical::after {
  content: '';
  width: 1px;
  height: 60px;
  background-color: var(--border-color);
  margin: 10px auto 0;
}

/* Featured Categories */
.category-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  display: block;
}

.category-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card.large img {
  height: 500px;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  color: var(--pure-white);
  transition: padding 0.3s ease;
}

.category-card:hover .category-overlay {
  padding-bottom: 40px;
}

.category-title {
  color: var(--pure-white);
  margin: 0;
  font-size: 1.8rem;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.category-card:hover .category-title {
  transform: translateY(0);
}

/* Section Styling */
.section-padding {
  padding: 100px 0;
}

.bg-beige {
  background-color: var(--luxury-beige);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--luxury-gold);
}

/* About Section */
.about-images-wrapper {
  position: relative;
  padding-right: 50px;
  padding-bottom: 50px;
}

.about-img-1 {
  width: 80%;
  height: 450px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 350px;
  object-fit: cover;
  z-index: 2;
  box-shadow: -15px -15px 30px rgba(0,0,0,0.1);
  border: 10px solid var(--pure-white);
}

.about-experience {
  position: absolute;
  top: 40px;
  right: -20px;
  background-color: var(--luxury-gold);
  color: var(--pure-white);
  padding: 30px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.about-experience h3 {
  color: var(--pure-white);
  font-size: 3rem;
  margin-bottom: 0;
  line-height: 1;
}

.about-experience p {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed);
  margin-bottom: 30px;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card .card-img-top {
  border-radius: 0;
  height: 250px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 25px 25px 0 25px;
}
.wp-pagenavi{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
   
}
.wp-pagenavi span,.wp-pagenavi a{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 10px;
	
}
.wp-pagenavi a:last-child{
	margin-right: 0px;
}
.wp-pagenavi span.current{
	border: 1px solid #ad9271 !important;
	font-weight: 400 !important;
	color:#ad9271;
}

span.pages {
    display: none;
}
.blog-date {
  color: var(--luxury-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-black);
  color: var(--pure-white);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--pure-white);
}

/* Footer */
.footer {
  background-color: var(--secondary-black);
  color: var(--pure-white);
  padding: 80px 0 20px;
}

.footer h5 {
  color: var(--pure-white);
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--luxury-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  list-style: disc;
  display: flex;
  justify-content: start;
  gap: 0 25px;
  flex-wrap: wrap;
  list-style-position: inside;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #aaaaaa;
  transition: color var(--transition-speed);
}

.footer-links a:hover {
  color: var(--luxury-gold);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: var(--pure-white);
  margin-right: 10px;
  transition: all var(--transition-speed);
}

.social-icons a:hover {
  background-color: var(--luxury-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #aaaaaa;
  font-size: 0.9rem;
}

/* Blog Details */
.blog-header {
  padding: 150px 0 50px;
  background-color: var(--luxury-beige);
  text-align: center;
}

.blog-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.blog-featured-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  margin: 40px 0;
}

.blog-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.blog-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.blog-content blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  border-left: 4px solid var(--luxury-gold);
  padding-left: 20px;
  margin: 40px 0;
  color: var(--primary-black);
}

/* Contact Page */
.contact-info-box {
  background-color: var(--luxury-beige);
  padding: 40px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--luxury-gold);
  margin-right: 20px;
  margin-top: 5px;
}

.form-control {
  border-radius: 0;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
}

.form-control:focus {
  border-color: var(--luxury-gold);
  box-shadow: none;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-img-container {
    position: relative;
    width: 100%;
    height: 50vh;
    margin-top: 40px;
  }
  .hero-img-container::before {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%);
  }
  .social-vertical {
    display: none;
  }
  .hero-title-modern {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title-modern {
    font-size: 3rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .navbar-brand {
    font-size: 18px;
  }
  .hero-text-wrapper {
    padding: 20px 20px 20px 0;
}
.hero-img-container {
      position: absolute;
}
.hero-subtitle-modern,.hero-title-modern,.hero-desc-modern {
    color: #ffffff;
  }
.hero-subtitle-modern::before {
    background-color: #ffffff;
}
.hero-img-container::before {
    background: linear-gradient(90deg, rgb(45 43 43) 0%, rgb(15 15 15 / 53%) 20%);
}
.hero-modern .pt-5 {
    padding-top: 0 !important;
}
.hero-modern .min-vh-100 {
    min-height: 100% !important;
}
.hero-img-container {
  height: 100vh;
  margin-top: 0;
  left: 0;
  right: 0;
  top: 0;
}
.section-title h2 {
    font-size: 29px;
}
.about-img-1,.about-img-2 {
   height: 100%;
    
}
.cta-section h2,.section-padding h2{
  font-size: 30px !important;
}
.cta-section {
   padding: 0px 0;
}
}
