/**
* Template Name: Regna
* Template URL: https://bootstrapmade.com/regna-bootstrap-onepage-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@font-face {
  font-family: 'Cordia';
  src: url('./fonts/Cordia-New.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Cormorant';
  src: url('./fonts/Cormorant-Garamond.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  text-transform: uppercase;
}

@font-face {
  font-family: 'LaLuxes';
  src: url('./fonts/LaLuxes.otf') format('opentype');
  font-weight: 100 900;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Pinyon Script';
  src: url('./fonts/PinyonScript-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Tangerine Bold';
  src: url('./fonts/Tangerine-Bold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  /* Custom colors */
  /* --c-dirty-white: #f4f8f3; */
  --c-dirty-white: #f6f4f0;
  --c-white: #ffffff;
  --c-light-grey: #dbdbdb;
  --c-grey: #444242;
  --c-light-black: #252525;
  --c-black: #000000;


  --background-color: #F5F5F5; /* Background color for the entire website, including individual sections */
  --default-color: #9f9690; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #141414; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #9f9690; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #F5F5F5; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #F5F5F5; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #9f9690; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #9f9690; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Font Families */
:root {
  --ff-title: "LaLuxes";
  --ff-text: "Cordia";
  --ff-name: "Pinyon Script";
  --ff-button: "Cordia";
}

/* Font Sizes */
:root {
  --fs-90: 90px;
  --fs-80: 80px;
  --fs-65: 65px;
  --fs-60: 60px;
  --fs-46: 46px;
  --fs-40: 40px;
  --fs-30: 30px;
  --fs-28: 28px;
  --fs-24: 24px;
  --fs-20: 20px;
  --fs-16: 16px;
  --fs-14: 14px;
}

.row>* {
  padding-right: calc(1.5rem * 2);
  padding-left: calc(1.5rem * 2);
}

#hero .row>* {
  padding-right: calc(1.5rem * 0.2) !important;
  padding-left: calc(1.5rem * 0.2) !important;
}

@media (min-width: 769px) {
  #portfolio .row>* {
    padding-right: calc(1.5rem * 0.5) !important;
    padding-left: calc(1.5rem * 0.5) !important;
  }
}

.dark-background {
  --background-color: var(--c-black);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: var(--c-grey);
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--ff-text);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--ff-title);
}

h3.body-title {
  font-family: var(--ff-title);
  font-size: var(--fs-28);

  @media (max-width: 768px) {
    font-size: var(--fs-24);
  }
}

h4.body-title {
  font-family: var(--ff-title);
  font-size: var(--fs-24);

  @media (max-width: 768px) {
    font-size: var(--fs-20);
  }
}

p.body-description {
  font-family: var(--ff-text);
  font-size: var(--fs-24);
  line-height: var(--fs-24);
  color: var(--c-black);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.separator-and {
  font-family: "Tangerine Bold";
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo .sitename {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
  font-family: var(--ff-name);
  opacity: 0;
}

.header .logo .sitename .separator-and {
  font-size: 20px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .logo .sitename {
  opacity: 1;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #0B0B0B;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: var(--fs-14);
  text-align: center;
  padding: 30px 0;
  position: relative;

  .body-title {
    font-family: "Cormorant";
  }
}

.footer .container {
  @media (max-width: 768px) {
    max-width: 70%;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--c-light-grey);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--c-grey) transparent var(--c-grey) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 81px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .name-couple-subtitle {
  font-size: var(--fs-30);
  font-family: var(--ff-title);
  letter-spacing: 3px;
  margin-bottom: 0.1rem;
}

.hero .name-couple {
  font-size: var(--fs-90);
  font-family: var(--ff-name);
}

.hero .name-couple .separator-and {
  font-size: var(--fs-65);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .scroll-down {
  cursor: none;
  position: absolute;
  bottom: -250px;
  display: block;
  text-align: center;
  font-size: var(--fs-20);
  width: 30px;
  height: 30px;
  border-bottom: 4px solid var(--c-dirty-white);
  border-right: 4px solid var(--c-dirty-white);
  z-index: 9;
  left: calc(50% - 15px);
  animation: fade_move_down 2s ease-in-out infinite;
}

@keyframes fade_move_down {
  0% {
    opacity: 0; /* Element is transparent */
    transform: translateY(-20px) rotate(45deg); /* Starts 20px above its final position */
  }
  100% {
    opacity: 1; /* Element is fully visible */
    transform: translateY(0px) rotate(45deg); /* Ends at its original position */
  }
}

@media (max-width: 768px) {
  .hero .name-couple {
    font-size: var(--fs-60);
    font-family: var(--ff-name);
  }

  .hero .name-couple .separator-and {
    font-size: var(--fs-45);
  }

  .hero .name-couple-subtitle {
    font-size: var(--fs-24);
  }
}

/*--------------------------------------------------------------
# Countdown Section
--------------------------------------------------------------*/
.countdown {
  background-color: var(--c-grey);
  text-align: center;
  padding: 40px 0;
}

.countdown-welcome {
  font-size: var(--fs-24);
  font-family: var(--ff-title);
  color: var(--c-dirty-white);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.countdown-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 40px;
}

.countdown-number {
  font-size: var(--fs-40);
  font-family: "Montserrat";
  color: var(--c-white);
  line-height: 1;
  width: 80px;
  text-align: center;
  font-weight: 400;
}

.countdown-separator {
  font-size: var(--fs-40);
  font-family: "Roboto";
  color: var(--c-white);
  line-height: 1;
  margin: 0 5px;
}

.countdown-labels {
  display: flex;
  justify-content: center;
  gap: 95px;
}

.countdown-label {
  font-size: var(--fs-20);
  font-family: var(--ff-text);
  color: var(--c-white);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .countdown-welcome {
    font-size: var(--fs-18);
  }

  .countdown-number {
    font-size: var(--fs-30);
    min-width: var(--fs-16);
    width: var(--fs-40);
  }
  
  .countdown-separator {
    font-size: var(--fs-30);
  }
  
  .countdown-labels {
    gap: 56px;
  }
  
  .countdown-label {
    font-size: var(--fs-16);
  }
}

/*--------------------------------------------------------------
# Date and Time Section
--------------------------------------------------------------*/

section.color-section {
  background-color: var(--c-dirty-white);
}

.color-section .datetime-content {
  margin-top: 24px;
}

.color-section .datetime-item.instagram .body-title {
  font-family: "Cormorant";
}

.color-section .body-description {
  font-family: var(--ff-text);
  color: var(--c-black);
  font-size: 24px;
  line-height: 24px;
  font-weight: 300;
  margin: 20px 0 30px;
}

.color-section .datetime-content .datetime-names {
  font-family: var(--ff-name);
  color: var(--c-black);
  font-size: var(--fs-46);
  line-height: 50px;
  margin: 20px 0 30px;
  text-transform: capitalize;
}

.color-section .body-button {
  font-family: var(--ff-button);
  color: var(--c-white);
  background-color: var(--c-grey);
  border-radius: 6px;
  padding: 8px 20px;
  border: 1px solid var(--color-primario);
  text-transform: uppercase;
  font-size: var(--fs-20);

  @media (max-width: 768px) {
    font-size: var(--fs-18);
  }
}

.color-section.dark-section {
  background-color: var(--c-light-black);
}

.color-section.dark-section h3,
.color-section.dark-section .body-description {
  color: var(--c-dirty-white);
}

.color-section.light-grey-section {
  background-color: var(--c-light-grey);
}

.color-section.light-grey-section h3,
.color-section.light-grey-section .body-description {
  color: var(--c-black);
}

.color-section.grey-section {
  background-color: var(--c-grey);
}

.color-section.grey-section h3,
.color-section.grey-section .body-description {
  color: var(--c-dirty-white);
}

.section.dress-code-section .body-description {
  margin: 20px 0 0;

  @media (max-width: 768px) {
    margin: 10px 0 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);

  @media (max-width: 768px) {
    padding: 90px 0;
  }
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--ff-button);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
section.portfolio {
  background-color: var(--c-light-grey);
}

.portfolio .section-title h3 {
  color: var(--c-black);
  font-family: var(--ff-title);
}

.portfolio .section-title {
  padding-bottom: 24px;
}

.portfolio .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-family: var(--ff-text);
  color: var(--c-grey);
  font-size: var(--fs-20);
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 768px) {
  .portfolio .section-title {
    margin-bottom: 18px;
  }

  .portfolio .portfolio-item {
    padding: 0px 3px;
    margin: 3px 0;
  }

  .portfolio .portfolio-filters {
    padding: 0 0 30px 0;
  }

  .portfolio .portfolio-filters li {
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--ff-title);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--ff-button);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Bank Info Modal Styles
--------------------------------------------------------------*/
.modal .modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal .modal-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid var(--c-light-grey);
  border-radius: 15px 15px 0 0;
  padding: 20px 20px 20px 30px;
}

.modal .modal-title {
  font-family: var(--ff-title);
  font-size: var(--fs-20);
  font-weight: 600;
  color: var(--c-black);
  margin: 0;

  @media (max-width: 768px) {
    font-size: var(--fs-18);
    font-weight: 400;
  }
}

.modal .modal-body {
  padding: 24px 32px;
  background-color: #fff;
  border-radius: 10px 30px 30px;
}

.bank-section-title {
  font-family: var(--ff-title);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-black);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--c-grey);
}

.bank-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bank-details-list li {
  font-family: var(--ff-text);
  font-size: var(--fs-24);
  color: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bank-details-list li:last-child {
  border-bottom: none;
}

.bank-details-list strong {
  color: #2c3e50;
  font-weight: 600;
  margin-right: 0.5rem;
}

.bank-details-list-alias {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  #bankInfoModal .modal-body {
    padding: 1.5rem;
  }
  
  .bank-details-list {
    display:flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .bank-details-list li {
    flex-direction: column;
    line-height: var(--fs-24);
  }
  
  .bank-details-list strong {
    min-width: auto;
    margin: 0;
    color: var(--c-grey);
  }
}

.modal.bank-modal {
  overflow-y: hidden;
}

.modal .modal-form .modal-form-divider-name {
  font-family: var(--ff-name);
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
}

.modal .modal-form .modal-form-divider {
  height: 1px;
  background-color: var(--c-light-grey);
  margin: 30px 0;
  padding: 0px 20px;
}

.modal .modal-form .modal-form-divider:last-child {
  display: none;
}

.modal .modal-form .modal-form-input-label {
  font-family: var(--ff-text);
}

.modal .modal-form .modal-form-input:focus {
  border-color: var(--c-grey);
  box-shadow: 0 0 0 .25rem rgba(115, 115, 115, 0.25);
}

.modal .modal-form .form-check-input:checked {
  background-color: var(--c-grey);
  border-color: var(--c-grey);
}

.modal .modal-form .modal-form-button-container {
  display: flex;
  justify-content: center;
}

.modal .modal-form .btn.btn-primary.modal-form-button {
  width: 40%;
  background-color: var(--c-grey);
  border-color: var(--c-grey);
  font-family: var(--ff-text);
  border-radius: 6px;
  padding: 8px 20px;
  
  @media (max-width: 576px) {
    width: 100%;
  }
}

/* Fix for Bootstrap modal padding issue */
body.modal-open {
  padding-right: 0 !important;
}

/* No capitalize class */
.no-capitalize {
  text-transform: none !important;
}

/* Animación de éxito para el modal de música */
.success-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

.success-check {
  animation: checkBounce 0.6s ease-in-out;
}

.success-check i {
  font-size: 2rem;
  color: var(--c-grey);
  animation: checkPulse 1s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes checkBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes checkPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fin Animación de éxito para el modal de música */


@media (max-width: 768px) {
  .show-desktop {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .show-mobile {
    display: none !important;
  }
}

#musicModal .modal-body {
  min-height: 148px;
}
