/* Custom CSS */

/* Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
  font-family: "Roboto", sans-serif;
}

/* Primary Color */
:root {
  --primary-color: #FF6DCD;
}

/* Secondary Color */
:root {
  --secondary-color: #FFDDF3;
}

/* Darker Color */
:root {
  --dark-color: #CE3E9E;
}

/* Background Primary */
.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Background Secondary */
.bg-secondary {
  background-color: var(--secondary-color) !important;
}

/* Background Darker */
.bg-dark {
  background-color: #CE3E9E !important;
}

/* Primary Button (Replace bootstrap btn-primary) */
.btn-primary {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  border: #FF6DCD !important;
}

/* Secondary Button (Replace bootstrap btn-secondary) */
.btn-secondary {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  border: var(--primary-color) !important;
}

/* White Button (Replace bootstrap btn-light) */
.btn-light {
  background-color: #fff !important;
  color: var(--primary-color) !important;
  border: var(--primary-color) !important;
}

.btn-yellow {
  background-color: #FFD700 !important;
  color: var(--dark-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-yellow {
  color: #FFD700 !important;
}

.text-dark {
  color: #CE3E9E !important;
}

.jumbotron {
  background-image: url('../images/bg-jumbotron.png');
  background-size: cover;
  color: #fff;
  text-align: center;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-fluid {
  padding: 50px 50px;
}

.card {
  border: 5px solid #FFD700;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-girlboss {
  border: 5px solid #FF6DCD;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* change all btn border radius */

.btn {
  border-radius: 30px !important;
}

.card-img-top {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.girlboss {
  background-image: url('../images/bg-girlboss.png');
  background-size: cover;
}

.img-girlboss {
  border-radius: 30px;
  background-color: #FFDDF3;
}

.about-us {
  background-image: url('../images/about-us.png');
  background-size: cover;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-about {
  border: 0;
  width: 75%;
}

.card-about .card-header {
  background-color: #FF6DCD;
  color: #FFF;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  font-size: 2em;
  font-style: italic;
  border: 0;
}

.card-about .card-body {
  background-color: #FFF;
  color: #FF6DCD;
  font-weight: 500;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}

.centered-iframe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #CE3E9E;
  padding-bottom: 50px;
}

blockquote.instagram-media {
  margin: auto;
}

.rounded-circle {
  border-radius: 50%;
  border: 8px solid #FF6DCD;
}