/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.md-content {
  max-width: 900px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: #d4a574;
}

/* Buttons */
.cta-button,
.submit-button,
.package-btn {
  display: inline-block;
  background-color: #d4a574;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover,
.submit-button:hover,
.package-btn:hover {
  background-color: #c19660;
  transform: translateY(-2px);
}

/* Header */
.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.logo-image {
  width: 139px;
  height: 50px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: #d4a574;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #d4a574;
}

.contact-link {
  background-color: #d4a574;
  color: white !important;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background-color: #c19660;
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-nav-menu {
  list-style: none;
  padding: 20px;
}

.mobile-nav-menu li {
  margin-bottom: 15px;
}

.mobile-nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 100px 20px 50px;
  background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
}

.hero-content {
  flex: 1;
  max-width: 600px;
  margin-right: 50px;
}

.hero h1 {
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
  padding: 150px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Sections */
.welcome-section,
.about-content,
.features-section,
.values-section,
.portfolio-section,
.pricing-packages,
.blog-section {
  margin: 80px 0;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.text-content {
  flex: 1;
}

.image-content {
  flex: 1;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.features-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature,
.value {
  text-align: center;
  padding: 30px;
  background: #f8f4f0;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature:hover,
.value:hover {
  transform: translateY(-5px);
}

/* Portfolio */
.portfolio-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.category-btn {
  background: transparent;
  border: 2px solid #d4a574;
  color: #d4a574;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
  background-color: #d4a574;
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/5;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

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

/* Pricing */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.package {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.package.featured {
  border-color: #d4a574;
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d4a574;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.package.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.price {
  font-family: "Playfair Display", serif;
  margin: 20px 0;
}

.currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: 600;
  color: #d4a574;
}

.package-features ul {
  list-style: none;
  margin: 30px 0;
}

.package-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child {
  border-bottom: none;
}

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.addon {
  background: #f8f4f0;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.addon-price {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #d4a574;
  font-weight: 600;
  margin: 10px 0;
}

/* What's Included */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.included-item {
  padding: 30px;
  background: white;
  border-left: 4px solid #d4a574;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.blog-post {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.post-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
.post-content {
  padding: 30px;
}
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}

.post-meta span {
  background: #f8f4f0;
  padding: 5px 15px;
  border-radius: 15px;
}

.post-content h2 {
  margin-bottom: 15px;
}

.post-content h2 a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.post-content h2 a:hover {
  color: #d4a574;
}

.read-more {
  color: #d4a574;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section {
  padding: 80px 0;
  background: #f8f4f0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h3 {
  color: #d4a574;
  margin-bottom: 10px;
}

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

.social-link {
  color: #d4a574;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #c19660;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: white;
  cursor: pointer;
  /* Remove default arrow in some browsers */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Add custom arrow */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 45px;
}

.form-group select:focus {
  outline: none;
  border-color: #d4a574;
}


.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4a574;
}

/* Messages */
.message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #d4a574;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.testimonial {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 4rem;
  color: #d4a574;
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  margin-top: 20px;
}

.testimonial cite {
  color: #d4a574;
  font-weight: 600;
  font-style: normal;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .cta-button {
  background-color: white;
  color: #d4a574;
}

.cta-section .cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Newsletter */
.newsletter-section {
  background: #f8f4f0;
  padding: 60px 0;
  text-align: center;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 30px auto 0;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form button {
  background-color: #d4a574;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #c19660;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  color: #d4a574;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4a574;
}

.footer-logo img {
  width: 220px;
  height: 278px;
  margin-bottom: 15px;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.privacy-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

.privacy-links a:hover {
  color: #d4a574;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.pagination-link {
  padding: 10px 15px;
  background: white;
  color: #666;
  text-decoration: none;
  border: 2px solid #f0f0f0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pagination-link:hover,
.pagination-link.active {
  background-color: #d4a574;
  color: white;
  border-color: #d4a574;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 50px;
  }

  .hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package.featured {
    transform: none;
  }

  .package.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .features-grid,
  .values-grid,
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

/* Print styles */
@media print {
  .site-header,
  .mobile-menu,
  .cta-section,
  .newsletter-section,
  .site-footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}


/* Global Link Styles */
a {
  color: #d4a574;
  transition: color 0.3s ease;
}

a:hover {
  color: #c19660;
  text-decoration: underline;
}
