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

body {
  font-family: "Quicksand", sans-serif;
  color: #333;
  line-height: 1.6;
  background-image: url("../Content/background/Surita Background.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

/* Header Styles */
.header {
  background-color: #c74d5d;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.logo-icon {
  width: 30px;
  height: 45px;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
}

.logo-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 300;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  background: transparent;
  text-align: center;
  position: relative;
}

/* Add texture overlay effect */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(0, 0, 0, 0.03) 1px,
      transparent 1px
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.hero-logo-icon {
  width: 60px;
  height: 90px;
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-text h1 {
  font-size: 72px;
  color: #c74d5d;
  font-weight: 400;
  letter-spacing: 2px;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.hero-logo-subtitle {
  font-size: 32px;
  color: #c74d5d;
  letter-spacing: 8px;
  font-weight: 300;
}

.hero-logo-image {
  max-width: 500px;
  width: 100%;
  height: auto;
}

/* Featured Section */
.featured {
  background-color: #c74d5d;
  padding: 80px 20px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.featured-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.featured-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-btn {
  display: inline-block;
  padding: 15px 50px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s;
  background-color: transparent;
}

.featured-btn:hover {
  background-color: white;
  color: #c74d5d;
}

/* About Section */
.about {
  background: transparent;
  padding: 80px 20px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  max-width: 1150px;
  margin: 0 auto;
  min-height: 400px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-text {
  background-color: #c74d5d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  gap: 40px;
}

.about-btn {
  display: inline-block;
  padding: 15px 50px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-size: 22px;
  transition: all 0.3s;
  background-color: transparent;
}

.about-btn:hover {
  background-color: white;
  color: #c74d5d;
}

.about-tagline {
  color: white;
  font-size: 24px;
  text-align: center;
  font-style: italic;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page Title Section */
.page-title-section {
  background: transparent;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.page-title-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(0, 0, 0, 0.03) 1px,
      transparent 1px
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.page-title {
  font-size: 64px;
  color: #666;
  font-weight: 400;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 3px solid #666;
}

/* Catalogue Section */
.catalogue-section {
  background: transparent;
  padding: 40px 20px;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  max-width: 1500px;
  margin: 0 auto;
  background-color: #c74d5d;
  padding: 50px 40px;
}

.catalogue-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.catalogue-image {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.catalogue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalogue-btn {
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  transition: all 0.3s;
  background-color: transparent;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.catalogue-btn:hover {
  background-color: white;
  color: #c74d5d;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(199, 77, 93, 0.3);
}

/* Artwork Section */
.artwork-section {
  background: transparent;
  padding: 40px 20px;
}

.artwork-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #c74d5d;
  padding: 50px 40px;
}

.artwork-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.artwork-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
}

.artwork-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artwork-btn {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Quicksand", sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.artwork-btn:hover {
  background-color: white;
  color: #c74d5d;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(199, 77, 93, 0.3);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.modal-content {
  position: relative;
  background-color: white;
  margin: 50px auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #666;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #c74d5d;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.modal-image {
  width: 100%;
}

.modal-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-details h2 {
  color: #c74d5d;
  font-size: 32px;
  margin: 0;
  font-weight: 600;
}

.detail-item {
  margin: 0;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.detail-item strong {
  color: #333;
  font-weight: 600;
}

.detail-description {
  margin: 10px 0 0 0;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.enquire-btn {
  margin-top: 20px;
  padding: 15px 40px;
  background-color: #c74d5d;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.enquire-btn:hover {
  background-color: #a83d4d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 77, 93, 0.3);
}

/* Enquiry Form Modal */
.enquiry-modal {
  z-index: 1100;
}

.enquiry-content {
  max-width: 600px;
  padding: 40px;
}

.enquiry-title {
  color: #c74d5d;
  font-size: 28px;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.enquiry-artwork-name {
  font-size: 16px;
  color: #666;
  margin: 0 0 30px 0;
  font-weight: 600;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Quicksand", sans-serif;
  transition: border-color 0.3s;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  padding: 15px 40px;
  background-color: #c74d5d;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background-color: #a83d4d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 77, 93, 0.3);
}

@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }

  .close-btn {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }

  .modal-details h2 {
    font-size: 24px;
  }

  .enquiry-content {
    padding: 30px 20px;
  }

  .enquiry-title {
    font-size: 24px;
  }
}

/* Page Gap */
.page-gap {
  background: transparent;
  padding: 60px 20px;
  position: relative;
}

.page-gap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(0, 0, 0, 0.03) 1px,
      transparent 1px
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Footer Section */
.footer {
  background-color: #c74d5d;
  padding: 60px 20px 30px;
  color: white;
}

.footer .container {
  max-width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 40px;
  position: relative;
  min-height: 200px;
}

/* Newsletter Signup */
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-self: start;
  padding-left: 20px;
}

.newsletter-label {
  font-size: 18px;
  color: white;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 25px;
  overflow: hidden;
  max-width: 400px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
  font-size: 16px;
}

.newsletter-form button {
  background-color: #c74d5d;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

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

/* Footer Info */
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a {
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.footer-title {
  font-size: 28px;
  font-weight: 400;
  margin: 10px 0;
}

.footer-email {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.footer-email:hover {
  text-decoration: underline;
}

/* Footer Copyright */
.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 40px;
}

.footer-copyright p {
  font-size: 14px;
  opacity: 0.9;
}

.footer-copyright a {
  color: white;
  text-decoration: none;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

/* Commission Page Styles */
.commission-intro {
  background: transparent;
  padding: 40px 20px;
  text-align: center;
}

.commission-subtitle {
  font-size: 36px;
  color: #333;
  font-weight: 400;
  margin: 0 0 20px 0;
}

.commission-description {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

.pricing-header {
  background-color: #c74d5d;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.pricing-title {
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 30px 0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.pricing-info {
  font-size: 18px;
  margin: 8px 0;
  line-height: 1.6;
}

.pricing-details {
  background: transparent;
  padding: 60px 20px;
}

.pricing-note {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin: 0 0 50px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.pricing-column.pen-column {
  align-items: center;
}

.pricing-image {
  width: 100%;
  max-width: 280px;
}

.pricing-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-list {
  text-align: center;
}

.pricing-category {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

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

.pricing-list li {
  font-size: 16px;
  color: #666;
  margin: 10px 0;
  line-height: 1.8;
}

.commission-terms {
  background-color: #c74d5d;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.commission-terms p {
  font-size: 18px;
  line-height: 1.8;
  margin: 20px 0;
}

.terms-spacing {
  margin: 30px 0 !important;
}

.commission-request {
  background: transparent;
  padding: 60px 20px;
}

.request-title {
  font-size: 48px;
  color: #666;
  font-weight: 400;
  text-align: center;
  margin: 0 0 10px 0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.request-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin: 0 0 50px 0;
}

.request-form-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-left-column {
  display: flex;
  flex-direction: column;
}

.form-right-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}

.commission-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.textarea-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.textarea-form .form-group {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.textarea-form textarea {
  flex: 1;
  min-height: 380px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.commission-form .form-group {
  flex: 1;
}

.commission-form label {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 400;
}

.commission-form input,
.commission-form select,
.commission-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: "Quicksand", sans-serif;
  background-color: white;
  transition: border-color 0.3s;
}

.commission-form input:focus,
.commission-form select:focus,
.commission-form textarea:focus {
  outline: none;
  border-color: #c74d5d;
}

.commission-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

.commission-form textarea {
  resize: vertical;
  min-height: 150px;
}

.commission-form .submit-btn {
  width: 100%;
  max-width: 300px;
  margin: 20px auto 0;
  padding: 18px 50px;
  background-color: #c74d5d;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.commission-form .submit-btn:hover {
  background-color: #a83d4d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 77, 93, 0.3);
}

.form-message {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lets-create {
  font-size: 32px;
  color: #333;
  font-weight: 400;
  text-align: center;
}

/* Newsletter Page Styles */
.newsletter-entries {
  background: transparent;
  padding: 40px 20px 80px;
}

.newsletter-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  min-height: 200px;
  max-width: 100%;
}

.newsletter-entry.left-image {
  grid-template-areas: "image content";
}

.newsletter-entry.right-image {
  grid-template-areas: "content image";
}

.newsletter-entry.left-image .newsletter-image {
  grid-area: image;
}

.newsletter-entry.left-image .newsletter-content {
  grid-area: content;
  background-color: #c74d5d;
}

.newsletter-entry.right-image .newsletter-content {
  grid-area: content;
  background-color: #c74d5d;
}

.newsletter-entry.right-image .newsletter-image {
  grid-area: image;
}

.newsletter-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-content {
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  color: white;
}

.newsletter-date {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  opacity: 0.95;
}

.newsletter-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.newsletter-description {
  font-size: 16px;
  line-height: 1.8;
  margin: 10px 0;
  opacity: 0.95;
}

.newsletter-btn {
  display: inline-block;
  padding: 15px 45px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s;
  background-color: transparent;
  align-self: flex-start;
  margin-top: 10px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-btn:hover {
  background-color: white;
  color: #c74d5d;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(199, 77, 93, 0.3);
}

/* Newsletter Modal Styles */
.newsletter-modal-content {
  max-width: 90%;
  width: 1400px;
  padding: 0;
}

.newsletter-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.newsletter-modal-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.newsletter-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-modal-text {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: white;
  overflow-y: auto;
  max-height: 80vh;
}

.newsletter-modal-title {
  font-size: 32px;
  color: #c74d5d;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.newsletter-modal-date {
  font-size: 16px;
  color: #999;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.newsletter-modal-content-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-modal-content-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* Blog Page Styles */

.blog-post-container {
  background-color: #fff;
  max-width: 1100px;
  margin: 30px auto 40px;
  padding: 30px 40px;
  border-radius: 15px;
}

/* Blog Header: Title + Intro Row */
.blog-header {
  padding: 40px 20px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-main-title {
  font-size: 34px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.3;
  text-align: center;
}

.blog-intro-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.blog-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.blog-intro-image {
  width: 300px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.blog-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Steps 1-3: Three Column Grid */
.blog-steps-grid {
  padding: 40px 20px;
}

.blog-steps-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.blog-step-card {
  background-color: #c74d5d;
  border-radius: 15px;
  padding: 30px 25px;
  color: white;
}

.blog-step-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-step-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
  opacity: 0.95;
}

.blog-step-card:nth-child(2) {
  background-color: #888;
}

.blog-step-card:nth-child(3) {
  background-color: #aaa;
}

/* Step 4: Centered Text */
.blog-step4 {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.blog-step4 h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.blog-step4 p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

/* Bottom Section: Image - Text - Image */
.blog-bottom {
  padding: 40px 20px;
}

.blog-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.blog-bottom-image {
  border-radius: 15px;
  overflow: hidden;
}

.blog-bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.blog-bottom-text {
  text-align: center;
  padding: 20px;
}

.blog-bottom-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
}

/* Blog Gift Message Section */
.blog-gift-message {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.blog-gift-message .container {
  max-width: 800px;
}

.gift-text {
  font-size: 22px;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.gift-link {
  display: inline-block;
  padding: 15px 40px;
  background-color: #c74d5d;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 4px;
  transition: all 0.3s;
}

.gift-link:hover {
  background-color: #a83d4b;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(199, 77, 93, 0.3);
}

/* Blog Modal Styles */
.blog-modal-content {
  max-width: 90%;
  width: 1400px;
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
}

.blog-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.blog-modal-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.blog-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-modal-text {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: white;
  overflow-y: auto;
  max-height: 80vh;
}

.blog-modal-title {
  font-size: 32px;
  color: #c74d5d;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.blog-modal-date {
  font-size: 16px;
  color: #999;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.blog-modal-content-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-modal-content-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* About Page Styles */
.about-page-content {
  background-color: #c74d5d;
  padding: 0;
  margin: 0 0 150px 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
  margin: 0;
  align-items: stretch;
}

.about-text-content {
  padding: 80px 80px 80px 150px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: white;
  justify-content: center;
}

.about-text-content p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

.about-image-content {
  position: relative;
  overflow: hidden;
  max-height: 600px;
}

.about-image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Contact Page Styles */
.contact-page-content {
  background-color: #c74d5d;
  padding: 80px 0;
  margin: 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  align-items: start;
}

.contact-left-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-logo-box {
  background-color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
}

.contact-logo-icon {
  width: 80px;
  height: 120px;
}

.contact-logo-image {
  width: auto;
  height: 400px;
}

.contact-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.contact-logo-text h2 {
  font-size: 48px;
  color: #c74d5d;
  font-weight: 400;
  margin: 0;
  line-height: 1;
}

.contact-logo-subtitle {
  font-size: 20px;
  color: #c74d5d;
  letter-spacing: 8px;
  font-weight: 400;
}

.contact-details {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.contact-detail-item {
  font-size: 18px;
  margin: 0;
  line-height: 1.6;
}

.contact-detail-item a {
  color: white;
  text-decoration: none;
}

.contact-detail-item a:hover {
  text-decoration: underline;
}

.contact-right-content {
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-group label {
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.contact-form-group input,
.contact-form-group textarea {
  padding: 15px;
  border: none;
  border-radius: 4px;
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  background-color: white;
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  padding: 15px 50px;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Quicksand", sans-serif;
  align-self: flex-start;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-submit-btn:hover {
  background-color: white;
  color: #c74d5d;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(199, 77, 93, 0.3);
}

.contact-gap-section {
  min-height: 150px;
  background: transparent;
  position: relative;
}

.contact-gap-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(0, 0, 0, 0.03) 1px,
      transparent 1px
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background-color: #c74d5d;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .header .container {
    justify-content: space-between;
  }

  .hero-logo-text h1 {
    font-size: 56px;
  }

  .hero-logo-subtitle {
    font-size: 24px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .page-title {
    font-size: 48px;
  }

  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .artwork-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 30px;
  }

  .about {
    padding: 60px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .about-image {
    min-height: 400px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    min-height: auto;
  }

  .newsletter-signup {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    margin: 0 auto;
  }

  .footer-info {
    position: static;
    transform: none;
  }

  .commission-intro {
    padding: 30px 20px;
  }

  .commission-description {
    font-size: 16px;
  }

  .pricing-header {
    padding: 50px 20px;
  }

  .pricing-details {
    padding: 50px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .pricing-column {
    gap: 25px;
  }

  .pricing-image {
    max-width: 250px;
  }

  .pricing-category {
    font-size: 17px;
  }

  .pricing-list li {
    font-size: 15px;
  }

  .commission-terms {
    padding: 50px 20px;
  }

  .commission-terms p {
    font-size: 16px;
  }

  .request-form-container {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
  }

  .form-left-column {
    display: contents;
  }

  .form-left-column .commission-form {
    display: contents;
  }

  .form-left-column .form-row {
    order: 1;
    width: 100%;
  }

  .form-left-column .form-group {
    width: 100%;
  }

  .form-left-column .form-group input,
  .form-left-column .form-group select {
    width: 100%;
  }

  .form-left-column .submit-btn {
    order: 3;
    width: 100%;
  }

  .form-right-column {
    order: 2;
    width: 100%;
  }

  .textarea-form {
    width: 100%;
  }

  .textarea-form textarea {
    min-height: 200px;
    width: 100%;
  }

  .commission-subtitle {
    font-size: 28px;
  }

  .pricing-title,
  .request-title {
    font-size: 36px;
  }

  .lets-create {
    font-size: 26px;
  }

  .newsletter-entry {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  .newsletter-entry.left-image {
    grid-template-areas: "image" "content" !important;
  }

  .newsletter-entry.right-image {
    grid-template-areas: "image" "content" !important;
  }

  .newsletter-content {
    padding: 40px 30px;
  }

  .newsletter-title {
    font-size: 26px;
  }

  .newsletter-description {
    font-size: 15px;
  }

  .newsletter-btn {
    font-size: 16px;
    padding: 12px 35px;
  }

  .newsletter-modal-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .newsletter-modal-text {
    padding: 40px 30px;
    max-height: 60vh;
  }

  .newsletter-modal-title {
    font-size: 26px;
  }

  .newsletter-modal-content-text p {
    font-size: 15px;
  }

  /* Blog Responsive Styles */
  .blog-main-title {
    font-size: 26px;
  }

  .blog-intro-row {
    grid-template-columns: 1fr;
  }

  .blog-intro-image {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .blog-steps-row {
    grid-template-columns: 1fr;
  }

  .blog-step4 h2 {
    font-size: 22px;
  }

  .blog-bottom-row {
    grid-template-columns: 1fr;
  }

  .blog-bottom-text {
    order: -1;
  }

  .gift-text {
    font-size: 18px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-text-content {
    padding: 60px 40px;
  }

  .about-image-content {
    min-height: 400px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 40px;
  }

  .contact-page-content {
    padding: 60px 0;
  }

  .contact-logo-box {
    padding: 50px 30px;
  }

  .contact-logo-image {
    width: 250px;
    height: auto;
  }

  .contact-logo-text h2 {
    font-size: 40px;
  }

  .contact-gap-section {
    min-height: 100px;
  }

  .enquiry-content {
    padding: 30px;
  }

  .enquiry-title {
    font-size: 24px;
  }

  .enquire-btn {
    font-size: 16px;
    padding: 12px 35px;
  }
}

@media (max-width: 600px) {
  .header .container {
    gap: 15px;
  }

  .nav {
    width: 200px;
    top: 60px;
    height: calc(100vh - 60px);
  }

  .hero-logo-text h1 {
    font-size: 40px;
  }

  .hero-logo-subtitle {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .featured-image {
    width: 200px;
    height: 200px;
  }

  .page-title {
    font-size: 36px;
  }

  .commission-intro {
    padding: 25px 15px;
  }

  .commission-subtitle {
    font-size: 28px;
  }

  .commission-description {
    font-size: 15px;
  }

  .pricing-header {
    padding: 40px 15px;
  }

  .pricing-title {
    font-size: 32px;
  }

  .pricing-info {
    font-size: 16px;
  }

  .pricing-details {
    padding: 40px 15px;
  }

  .pricing-note {
    font-size: 16px;
  }

  .pricing-grid {
    gap: 40px;
  }

  .pricing-column {
    gap: 20px;
  }

  .pricing-image {
    max-width: 200px;
  }

  .pricing-category {
    font-size: 16px;
  }

  .pricing-list li {
    font-size: 14px;
  }

  .commission-terms {
    padding: 40px 15px;
  }

  .commission-terms p {
    font-size: 15px;
  }

  .request-form-container {
    gap: 30px;
  }

  .catalogue-btn {
    font-size: 18px;
    padding: 12px 35px;
  }

  .artwork-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .artwork-btn {
    font-size: 16px;
    padding: 10px 30px;
  }

  .featured-btn,
  .about-btn {
    font-size: 18px;
    padding: 12px 40px;
  }

  .about {
    padding: 40px 15px;
  }

  .about-tagline {
    font-size: 20px;
  }

  .about-text-content {
    padding: 40px 20px;
  }

  .about-text-content p {
    font-size: 16px;
  }

  .about-image-content {
    min-height: 300px;
  }

  .contact-container {
    padding: 0 20px;
    gap: 40px;
  }

  .contact-page-content {
    padding: 40px 0;
  }

  .contact-logo-box {
    padding: 40px 20px;
  }

  .contact-logo-image {
    width: 180px;
    height: auto;
  }

  .contact-logo-text h2 {
    font-size: 32px;
  }

  .contact-logo-subtitle {
    font-size: 16px;
    letter-spacing: 6px;
  }

  .contact-details h3 {
    font-size: 20px;
  }

  .contact-detail-item {
    font-size: 16px;
  }

  .contact-form-group label {
    font-size: 16px;
  }

  .contact-submit-btn {
    font-size: 18px;
    padding: 12px 40px;
  }

  .contact-gap-section {
    min-height: 80px;
  }

  .enquiry-content {
    padding: 25px 20px;
    max-width: 90%;
  }

  .enquiry-title {
    font-size: 22px;
  }

  .enquiry-artwork-name {
    font-size: 14px;
  }

  .enquire-btn {
    font-size: 16px;
    padding: 12px 30px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 13px;
    padding: 10px;
  }
}

/* ========== MODAL STYLES ========== */
.response-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.response-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 1000px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slideDown 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.modal-content.success {
  border-top: 5px solid #4caf50;
}

.modal-content.error {
  border-top: 5px solid #f44336;
}

.modal-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.modal-content.success .modal-icon {
  color: #4caf50;
}

.modal-content.error .modal-icon {
  color: #f44336;
}

.modal-message {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
  font-weight: 400;
}

.modal-close-btn {
  background-color: #c74d5d;
  color: white;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
  font-family: "Quicksand", sans-serif;
  transition: background-color 0.3s;
}

.modal-close-btn:hover {
  background-color: #a63d4d;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Loading spinner for form submissions */
.form-loading {
  pointer-events: none;
  opacity: 0.6;
}

.form-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #c74d5d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ========== HOMEPAGE ANIMATIONS ========== */

/* Hero Section Animations */
.hero-logo {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-logo.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hero logo icon animation */
.hero-logo-icon {
  animation: drawLogo 2s ease-in-out;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

.hero-logo.animate-in .hero-logo-icon {
  animation: drawLogo 1.5s ease-in-out forwards;
}

@keyframes drawLogo {
  from {
    stroke-dashoffset: 500;
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* Hero text fade in */
.hero-logo-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out 0.5s;
}

.hero-logo.animate-in .hero-logo-text {
  opacity: 1;
  transform: translateY(0);
}

/* Featured Section - Always Visible */
.featured {
  opacity: 1;
}

.featured-item {
  opacity: 1;
}

/* Featured Image Hover Effect */
.featured-image {
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}

.featured-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(199, 77, 93, 0.3),
    rgba(199, 77, 93, 0)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: 50%;
}

.featured-item:hover .featured-image::before {
  opacity: 1;
}

.featured-image img {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

.featured-item:hover .featured-image img {
  transform: scale(1.08);
}

/* Button Animations */
.featured-btn,
.about-btn,
.catalogue-btn,
.artwork-btn,
.newsletter-btn,
.contact-submit-btn,
.enquire-btn,
.submit-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-btn:hover,
.about-btn:hover,
.catalogue-btn:hover,
.artwork-btn:hover,
.newsletter-btn:hover,
.contact-submit-btn:hover,
.enquire-btn:hover,
.submit-btn:hover {
  box-shadow: 0 6px 25px rgba(199, 77, 93, 0.3);
  transform: translateY(-3px);
}

.featured-btn:active,
.about-btn:active,
.catalogue-btn:active,
.artwork-btn:active,
.newsletter-btn:active,
.contact-submit-btn:active,
.enquire-btn:active,
.submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 15px rgba(199, 77, 93, 0.2);
}

/* Ripple effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Button glow effect */
.featured-btn::before,
.about-btn::before,
.catalogue-btn::before,
.artwork-btn::before,
.newsletter-btn::before,
.contact-submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.featured-btn:hover::before,
.about-btn:hover::before,
.catalogue-btn:hover::before,
.artwork-btn:hover::before,
.newsletter-btn:hover::before,
.contact-submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

/* About Section Animation */
.about {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

/* Only hide for animation if animations are enabled */
.animations-enabled .about {
  opacity: 0;
  transform: translateY(30px);
}

.about.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.about-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(199, 77, 93, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about:hover .about-image::after {
  opacity: 1;
}

.about-image img {
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Footer Animation */
.footer {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

/* Only hide for animation if animations are enabled */
.animations-enabled .footer {
  opacity: 0;
  transform: translateY(20px);
}

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

/* Social icons animation */
.social-icons a {
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
}

.social-icons a:hover img {
  filter: brightness(1.2);
}

/* Newsletter form animations */
.newsletter-form input {
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(199, 77, 93, 0.2);
}

.newsletter-form button {
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateX(3px) scale(1.1);
  background-color: rgba(199, 77, 93, 0.1);
}

/* Scroll indicator animation (optional) */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Smooth page load - removed to prevent blank page on slow JS load */

/* Parallax effect smoothing */
.hero {
  will-change: transform, opacity;
  transition: opacity 0.3s ease;
}

/* ========== INTERACTIVE ELEMENTS ========== */

/* Page Transitions */
body {
  opacity: 1;
  transition: opacity 0.3s ease;
}

body.page-exit {
  opacity: 0;
}

body.page-loaded {
  animation: pageLoadFade 0.5s ease-in;
}

@keyframes pageLoadFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children > *.stagger-in {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Button Styles */
button,
.btn,
input[type="submit"],
.featured-btn,
.about-btn,
.enquire-btn,
.submit-btn,
.contact-submit-btn,
.modal-close-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  transform-origin: center;
}

/* Button hover lift */
button:hover:not(:disabled),
.btn:hover,
input[type="submit"]:hover,
.featured-btn:hover,
.about-btn:hover,
.enquire-btn:hover,
.submit-btn:hover,
.contact-submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(199, 77, 93, 0.3);
}

/* Button active state */
button:active:not(:disabled),
.btn:active,
input[type="submit"]:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 10px rgba(199, 77, 93, 0.2);
}

/* Button ripple effect */
.button-ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: button-ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes button-ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Button loading state */
.btn-loading {
  pointer-events: none;
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form Input Animations */
.form-group,
.contact-form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select,
.contact-form-group input,
.contact-form-group textarea {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid #ddd;
}

/* Input focus effect */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: #c74d5d;
  box-shadow: 0 4px 15px rgba(199, 77, 93, 0.15);
  transform: translateY(-2px);
  outline: none;
}

/* Input focused state */
.input-focused label {
  color: #c74d5d;
  transform: translateY(-2px);
}

/* Input ripple effect */
.input-ripple {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c74d5d, transparent);
  animation: input-ripple-animation 0.6s ease-out;
}

@keyframes input-ripple-animation {
  from {
    transform: scaleX(0);
    opacity: 1;
  }
  to {
    transform: scaleX(1);
    opacity: 0;
  }
}

/* Input has value */
.input-has-value label {
  font-weight: 500;
}

/* Enhanced Select Dropdown */
select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C74D5D' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  appearance: none;
}

select:hover {
  border-color: #c74d5d;
}

/* Newsletter form enhanced */
.newsletter-form {
  position: relative;
}

.newsletter-form input {
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  padding-left: 20px;
  box-shadow: 0 4px 15px rgba(199, 77, 93, 0.2);
}

.newsletter-form button {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.newsletter-form button:hover {
  transform: translateX(3px) scale(1.15);
  background-color: rgba(199, 77, 93, 0.2);
}

.newsletter-form button:active {
  transform: translateX(1px) scale(1.05);
}

/* Modal transitions - Only for enquiry modals */
.enquiry-modal {
  transition: opacity 0.3s ease;
}

/* Only apply scale animation to enquiry modals */
.enquiry-modal .modal-content,
.enquiry-modal .enquiry-content {
  animation: modal-scale-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-scale-in {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Response modal (for forms) keeps its animation */
.response-modal .modal-content {
  animation: modal-scale-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Artwork thumbnail hover effects */
.artwork-item {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.artwork-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.artwork-item:active {
  transform: translateY(-4px);
}

/* Image zoom on hover */
.artwork-item img {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Social icons enhanced */
.social-icons a {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icons a:hover {
  transform: translateY(-8px) scale(1.15) rotate(5deg);
}

.social-icons a:active {
  transform: translateY(-4px) scale(1.05);
}

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

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c74d5d;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a63d4d;
}

/* Selection color */
::selection {
  background-color: #c74d5d;
  color: white;
}

::-moz-selection {
  background-color: #c74d5d;
  color: white;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid #c74d5d;
  outline-offset: 2px;
}

/* Loading screen (optional) */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #c74d5d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Smooth transitions for all interactive elements */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
