/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  /* Color Variables */
  --primary: #8B5D33;
  --primary-dark: #6A4520;
  --primary-light: #C9A87B;
  --secondary: #2A3B45;
  --accent: #D68C45;
  --light: #F8F5F1;
  --dark: #232323;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Section Styles */
.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}

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

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-divider {
  width: 70px;
  height: 3px;
  background-color: var(--primary);
  margin: 15px auto;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--gray);
}

.bg-light {
  background-color: var(--light) !important;
}

/* Button Styles */
.btn {
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-text {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.btn-text i {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.btn-text:hover {
  color: var(--primary-dark);
}

.btn-text:hover i {
  transform: translateX(5px);
}

/* Footer */
.footer {
  background-color: var(--secondary);
  color: var(--light);
  padding: 70px 0 0;
}

.footer h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  color: var(--white);
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-info p {
  margin-bottom: 20px;
  color: #ccc;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #ccc;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-newsletter p {
  margin-bottom: 20px;
  color: #ccc;
}

.footer-newsletter form {
  position: relative;
}

.footer-newsletter input[type="email"] {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: var(--white);
  border-radius: 4px 0 0 4px;
}

.footer-newsletter input[type="submit"] {
  background-color: var(--primary);
  border: 0;
  padding: 12px 15px;
  color: var(--white);
  transition: all 0.3s ease;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.footer-newsletter input[type="submit"]:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99;
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.back-to-top i {
  font-size: 24px;
  line-height: 0;
}

/* AOS Animation */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  .btn {
    padding: 10px 20px;
  }
}


/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('https://images.pexels.com/photos/3935321/pexels-photo-3935321.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
    height: auto;
    padding: 100px 0;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content {
    text-align: center;
  }
}

/* About Section Styles */
.about-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.about-content p {
  margin-bottom: 20px;
  color: var(--gray);
}

.mission-box {
  background-color: var(--light);
  border-left: 4px solid var(--primary);
  padding: 25px;
  border-radius: 0 8px 8px 0;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-box h4 {
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.mission-box h4 i {
  color: var(--accent);
}

.mission-box p {
  margin-bottom: 0;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 8px;
  padding: 15px 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  font-family: var(--font-heading);
}

.experience-badge .text {
  font-size: 0.9rem;
  margin-top: 5px;
  display: block;
}

@media (max-width: 992px) {
  .about-content h3 {
    font-size: 1.8rem;
  }
  .experience-badge {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
  }
  .experience-badge .number {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .about-content h3 {
    font-size: 1.6rem;
  }
  .about-image {
    margin-top: 30px;
  }
}

/* Contact Section Styles */
.contact-info {
  padding-right: 30px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.contact-info > p {
  margin-bottom: 30px;
  color: var(--gray);
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background-color: var(--light);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--gray);
  margin-bottom: 0;
}

.contact-form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form .form-label {
  color: var(--secondary);
  font-weight: 500;
}

.contact-form .form-control {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-light);
  background-color: var(--white);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
  .contact-info h3 {
    font-size: 1.8rem;
  }
  .contact-info {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .contact-info h3 {
    font-size: 1.6rem;
  }
  .contact-form-container {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .contact-item i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .contact-form-container {
    padding: 20px;
  }
}

/* Gallery Section Styles */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.btn-filter {
  padding: 8px 20px;
  border-radius: 30px;
  background-color: transparent;
  border: 1px solid var(--light-gray);
  color: var(--gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.gallery-container {
  margin-top: 20px;
}

.gallery-item {
  margin-bottom: 24px;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 8px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.hide {
  display: none;
}

/* Lightbox Customization */
.lb-data .lb-caption {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.lb-data .lb-number {
  color: var(--light);
}

@media (max-width: 992px) {
  .gallery-item img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .gallery-item img {
    height: 160px;
  }
  
  .btn-filter {
    padding: 6px 15px;
    font-size: 0.85rem;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  /*background-image: url('https://images.pexels.com/photos/3935321/pexels-photo-3935321.jpeg');*/
  background-image: url('../img/1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
    height: auto;
    padding: 100px 0;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content {
    text-align: center;
  }
}

/* Works Section Styles */
.work-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.work-image {
  position: relative;
  overflow: hidden;
}

.work-image img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.work-content {
  padding: 25px;
}

.work-content h4 {
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 1.4rem;
}

.work-content p {
  color: var(--gray);
  margin-bottom: 20px;
  min-height: 75px;
}

/* Testimonial Styles */
.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: 20px 40px;
}

.testimonial-quote {
  margin-bottom: 25px;
}

.testimonial-quote i {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
  display: inline-block;
}

.testimonial-quote p {
  font-style: italic;
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 1.8;
}

.testimonial-rating {
  margin-top: 20px;
}

.testimonial-rating i {
  color: #FFD700;
  margin: 0 2px;
}

.testimonial-author h5 {
  color: var(--secondary);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.testimonial-author p {
  color: var(--gray);
  margin: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 992px) {
  .work-content h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    margin: 10px;
    padding: 20px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  .work-image img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .work-content p {
    min-height: auto;
  }
}