html {
  scroll-behavior: smooth;
}


h1,h2 ,h3,strong{
  font-family: "Belleza", Sans-serif !important;
}
p,span,a{
    font-family: "Karla", Sans-serif;
  }

body {
  background-color: #f5f0e8;
  color: #6e4b2b;
  font-family: "Georgia", serif;
}

.navbar {
  padding: 0;
  background-color: rgba(250, 244, 237, 1) !important;
}

.navbar-nav {
  gap: 15px;
}

.navbar-nav .nav-link {
  color: #6e4b2b !important;
}

.logo {
  font-size: 3.5rem;
  font-weight: bold;
  color: #6e4b2b;
}

.logo-sub {
  font-size: 1rem;
  color: #6e4b2b;
}

.main-title {
  font-size: 2.8rem;
  color: #6e4b2b;
  font-family: "Belleza", Sans-serif;
}

.content-p{
      font-family: "Karla", Sans-serif;
}
.subtitle {
  font-style: italic;
  color: #6e4b2b;
}
.hero-title-block {
  font-family: "Satisfy", Sans-serif !important;
  font-size: 45px;
  font-weight: 500;
}
.custom-divider {
    display: flex;
    align-items: center;
    width: 60%;
    margin: auto;
    justify-content: center;
    margin-bottom: 20px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: #ccc;
  width: 50%;
}

.divider-icon {
  width: 40px;
  height: 40px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-icon svg {
  width: 100%;
  height: 100%;
  color: #6e4b2b;
}

/* Exact Audio Demo Box Style - Same as your screenshot */
.audio-box {
  overflow: hidden;
  /* Important for bottom bar */
  margin-bottom: 35px;
  max-width: 600px;
  margin-right: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid #6e4b2b;
}

.audio-box p {
  text-align: center;
  padding: 30px 20px 20px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #6e4b2b;
  margin: 0;
}

.audio-box audio {
  width: 100%;
  /* Lighter beige for player area */
}

/* Make the play button round and brown */
audio::-webkit-media-controls-play-button {
  background-color: #6e4b2b;
  border-radius: 50%;
}

/* Style the timeline/progress bar */
audio::-webkit-media-controls-timeline {
  background-color: white;
  border-radius: 25px;
  height: 8px;
}

/* Bottom Download Bar - Brown */
.download-bar {
  background-color: #6e4b2b;
  /* Dark brown */
  color: white;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  font-size: 1.1rem;
}

.download-bar a {
  color: white;
  text-decoration: none;
}

.download-bar a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: center;
}

/* Social Icons - Larger and nicely spaced */
.social-icons a {
  color: #8b5a3c;
  margin: 0 20px;
  border: 1px solid;
  border-radius: 100px;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: #6b4a3a;
  transform: translateY(-4px);
}

.hero-img img {
  max-width: 100%;
  padding: 60px 60px 0 0;
}

.hero-img {
  background-image: url(images/Veronica-Rotar-e1736374608693.png);
  background-position: 100% 0px;
  background-repeat: no-repeat;
  background-size: 80% 100%;
  position: relative;
  width: 100%;
}

.header-section {
  padding-top: 30px;
}

.quote {
  width: 95%;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.quote h2 {
    font-family: "Belleza", Sans-serif;
    font-size: 40px;
    font-weight: 500;
    font-style: italic;
    line-height: 50px;
    color: #6b4a2f;
}

/* Button Container */
.theme-btn {
  position: relative;
  display: inline-block;
  padding: 12px 35px;
  font-size: 1rem;
  font-weight: bold;
  color: #6b4a2f;
  /* brownish text */
  background-color: #fff;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;
}

/* Hover effect for text & background */
.theme-btn:hover {
  color: #6b4a2f;
  background-color: #6b4a2f;
}

/* Rotating border */
.theme-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#6b4a2f, #6b4a2f),
    linear-gradient(#6b4a2f, #6b4a2f), linear-gradient(#6b4a2f, #6b4a2f),
    linear-gradient(#6b4a2f, #6b4a2f);
  border-radius: 12px;
  z-index: -2;
  animation: rotate-border 2.5s linear infinite;
}

/* Inner background to cover overflowing before */
.theme-btn::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: #fff;
  border-radius: 9px;
  z-index: -1;
}

/* Rotation animation */
@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Section Styling */
.about-section {
  background-color: #f7f1ea;
}

/* Title */
.about-title {
  color: #6b4a2f;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Image */
.about-image-wrapper {
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.05);
}

/* Content Box */
.about-content {
  background-color: #6b4a2f;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
  font-size: 4rem;
  line-height: 1.4;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.story-section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  color: #6a3e1f;
  margin-bottom: 40px;
  line-height: 1.4;
  margin-bottom: 0;
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0 0 0 40px;
  border-left: 2px solid #543018;
  position: relative;
  margin-top: 40px;
}

/* LI */
.feature-list li {
  position: relative;
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

/* HORIZONTAL CONNECTOR LINE */
.feature-list li::before {
  content: "";
  position: absolute;
  left: -40px;
  /* touches UL border */
  top: 20px;
  /* vertically aligns to icon center */
  width: 40px;
  height: 2px;
  background: #543018;
}

/* ICON BOX */
.icon {
  width: 38px;
  height: 38px;
  border: 2px solid #543018;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #543018;
  font-size: 16px;
  background: #f7f1ea;
  flex-shrink: 0;
  border-radius: 12px;
  padding: 20px;
}

/* TEXT */
.feature-list h5 {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #6a3e1f;
}

.feature-list p {
  margin: 0;
  font-size: 14px;
  color: #6a3e1f;
  max-width: 480px;
}

/* BUTTON */
.resume-btn {
  background: #6a3e1f;
  color: #fff;
  padding: 10px 25px;
  border-radius: 3px;
  font-size: 14px;
  text-decoration: none;
}

.resume-btn:hover {
  background: #543018;
  color: #fff;
}

/* IMAGE SIDE */
.image-box {
  position: relative;
  background: #6a3e1f;
  padding: 40px;
  max-width: 420px;
  margin-left: auto;
}

.image-box img {
  width: 100%;
  display: block;
}

/* VERTICAL TEXT */
.vertical-text {
  position: absolute;
  top: 50%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
}

#services-section {
  display: flex;
  flex-direction: row-reverse;
}

.hero-img-2 img {
  max-width: 100%;
  padding: 60px 0px 0 60px;
}

.hero-img-2 {
  background-image: url(images/Veronica-Rotar-e1736374608693.png);
  background-position: 0% 0px !important;
  background-repeat: no-repeat;
  background-size: 80% 100%;
  position: relative;
  width: 100%;
}

.hero-img-3 img {
  max-width: 100%;
  padding: 60px 60px 0 0;
}

.hero-img-3 {
  background-image: url(images/Veronica-Rotar-e1736374608693.png);
  background-position: 100% 0px;
  background-repeat: no-repeat;
  background-size: 80% 100%;
  position: relative;
  width: 100%;
}

/* TEXT CONTENT */
.small-title {
  color: #6a3e1f;
  font-size: 45px;
  margin-bottom: 10px;
font-family: "Belleza", Sans-serif;
    font-weight: 400;}

.service-list {
  font-size: 16px;
  color: #6a3e1f;
  max-width: 500px;
}

.section-heading {
  margin-top: 25px;
  font-size: 45px;
font-family: "Belleza", Sans-serif;

  color: #6a3e1f;
}

.section-text {
  font-size: 16px;
  color: #6a3e1f;
  max-width: 520px;
}

.sub-heading {
  margin-top: 30px;
  font-size: 18px;
  color: #6a3e1f;
}

/* STUDIO BOXES */
.studio-box {
  border: 1px solid #6a3e1f;
  padding: 15px;
  height: 100%;
  text-align: left;
  font-size: 13px;
  color: #6a3e1f;
}

.studio-box i {
  color: #6a3e1f;
  font-size: 18px;
  margin-bottom: 5px;
  display: block;
}

.studio-box strong {
  display: block;
  color: #6a3e1f;
  font-size: 14px;
}

.studio-box span {
  display: block;
  font-size: 12px;
}

/* SECTION */
.audio-section {
  background: #fbf3e9;
}

/* TITLE */
.section-title {
  font-size: 36px;
  color: #7a4f2a;
}

.divider-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 25%;
  margin: auto;
}

.divider-line {
  flex: 1;
  height: 2px;
  background-color: #6e4b2b;
  /* color of the divider */
}

.divider-icon {
  width: 30px;
  /* adjust size */
  height: 30px;
  fill: #6e4b2b;
  /* same color as the divider */
}

/* CARD */
.audio-card {
  background: #6e4b2b;
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.audio-img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 18px;
  border-radius: 14px;
  display: block;
}

/* TEXT */
.audio-card h5 {
  font-size: 16px;
  margin-bottom: 4px;
}

.audio-card p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* PLAYER */
.audio-player {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  /* keeps player at bottom */
}

.play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #7a532e;
  font-size: 16px;
  cursor: pointer;
}

/* PROGRESS BAR */
.progress {
  flex: 1;
  height: 6px;
  background: #d6c2a8;
  border-radius: 4px;
}

.progress {
  position: relative;
  cursor: pointer;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 4px;
}

/* TIME */
.time {
  font-size: 12px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .about-image {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .about-content {
    padding: 20px;
  }

  .section-title {
    font-size: 25px;
    margin-bottom: 0px !important;
  }

  .divider-flex {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .hero-img,
  .hero-img-2,
  .hero-img-3 {
    height: auto !important;
    margin-top: 70px;
    min-height: auto;
  }

  .audio-box {
    margin-left: auto;
  }
}

.contact-section {
  background: #6e4b2b;
  color: #fff;
  padding: 70px 0;
}

.contact-section h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}

/* Form styles */
.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0;
  color: #fff;
  padding-left: 0;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: #fff;
  background: transparent;
  color: #fff;
}

.btn-send {
  background: #fff6ec;
  color: #000;
  padding: 10px 40px;
  border-radius: 0;
  border: none;
}

/* Image area */
.contact-img {
  position: relative;
}

.contact-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.vertical-text {
  position: absolute;
  left: -50px;
  bottom: 30px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 20px;
  font-style: italic;
  color: #fff;
}

a {
  text-decoration: none;
}

/* Image Slider - Fixed Height & Width + Gap */
.image-slider {
  margin: 0 auto;
}

.image-slider .slick-slide {
  padding: 0 15px;
  box-sizing: border-box;
}

/* Container for each image - fixed aspect ratio */
.image-slider .slide-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

/* The actual image - fills the square perfectly */
.image-slider .slide-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slick-prev:before,
.slick-next:before {
  font-size: 48px;
  color: white;
  opacity: 1;
}

.slick-prev {
  left: 10px;
  z-index: 9999;
}

.slick-next {
  right: 35px;
}

/* Testimonials Slider */
.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}

.testimonial-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 20px 10px;
  display: flex !important;
}

.testimonials {
  position: relative;
  background: linear-gradient(to right, #ffffff 60%, #8b5a3c 40%);
}

.testimonials::after {
  content: "Testimonials";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  background-color: #8b5a3c;
  color: white;
  font-size: 1.8rem;
  font-style: italic;
  padding: 20px 30px;
  border-radius: 20px 0 0 20px;
  writing-mode: vertical-rl;
  height: 200px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.quote {
  text-align: center;
  color: #4a3f35;
  flex: 1;
}

.quote p {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
}

.client {
  font-size: 1.1rem;
}

.client strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.client span {
  color: #8b7b6a;
}

/* Slick Dots - Bottom center */
.testimonials-slider .slick-dots {
  bottom: -50px;
}

.testimonials-slider .slick-dots li button:before {
  font-size: 12px;
  color: #8b5a3c;
  opacity: 0.6;
}

.testimonials-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #8b5a3c;
}

/* Newsletter Section */
.newsletter-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.newsletter-title {
  font-size: 2.2rem;
  color: #4a3f35;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  width: 380px;
  max-width: 100%;
  padding: 15px 20px;
  font-size: 1.1rem;
  border: 2px solid #8b5a3c;
  border-radius: 8px;
  background-color: transparent;
  color: #4a3f35;
}

.newsletter-input::placeholder {
  color: #a5988a;
  opacity: 1;
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(139, 90, 60, 0.15);
  background-color: #fff;
}

.newsletter-btn {
  background-color: #8b5a3c;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #6b4530;
}

/* Footer */
.footer {
  background-color: #e8d9c5;
  color: #4a3f35;
}

.footer-email {
  font-size: 1.1rem;
  color: #4a3f35;
}

.footer-logo {
  width:150px;
  object-fit: cover;
}

.footer-copyright {
  font-size: 0.95rem;
  color: #6b5a4a;
  margin-top: 10px;
}

.footer-social i {
  font-size: 1.3rem;
  color: #8b5a3c;
  transition: all 0.3s ease;
}

.footer-social i:hover {
  color: #4a3f35;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
  }

  .newsletter-btn {
    width: 100%;
  }

  .newsletter-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .testimonials::after {
    display: none;
  }

  .hero-img-2,
  .hero-img,
  .hero-img-3 {
    background-size: 80% 80%;
  }

  .feature-list {
    margin-top: 30px;
  }

  .about-content {
    margin-top: 40px;
  }

  .quote {
    padding: 0;
  }
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.ue_neon_btn_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.ue_neon_btn {
  position: relative;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: normal;
  color: rgb(110, 75, 43);
  text-decoration: none;
  border-radius: 4px;
  background: transparent;
  overflow: hidden;
  z-index: 1;
}

.ue_neon_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  /* border thickness */
  background: conic-gradient(
    from var(--angle),
    transparent 50deg,
    #cf9055,
    transparent,
    transparent
  );
  border-radius: 8px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  /* Safari support */
  animation: rotate 4s linear infinite;
  z-index: -1;
}

.ue_neon_btn::after {
  content: "";
  position: absolute;
  inset: -10px;
  /* glow spread */
  background: conic-gradient(
    from var(--angle),
    transparent 50deg,
    #cf9055,
    transparent,
    transparent
  );
  filter: blur(25px);
  opacity: 0.8;
  animation: rotate 4s linear infinite;
  z-index: -2;
}

@keyframes rotate {
  to {
    --angle: 360deg;
  }
}

.hero-link {
  padding: 35px 60px !important;
}
.hero-link:hover{
  background-color: #6b4530 !important;
  color: #fff !important;
}


