@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
html,
body {
  color: rgb(var(--bs-tertiary-color-rgb));
  font-family: "Fira Code", monospace;
}

/* CUSTOMIZE THE CAROUSEL
  -------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}

/* MARKETING CONTENT
  -------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: 0.75rem;
  margin-left: 0.75rem;
}
/* rtl:end:ignore */

/* Featurettes
  ------------------------- */

.featurette-divider {
  margin: 2rem 0; /* Space out the Bootstrap <hr> more */
}

.featurette-divider-index {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
/* rtl:begin:remove */
.featurette-heading {
  letter-spacing: -0.05rem;
}

/* rtl:end:remove */

/* RESPONSIVE CSS
  -------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}

.montserrat-<uniquifier > {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* MY CUSTOM STYLES
  -------------------------------------------------- */

:root {
  --color-bg: #f7f7f7;
  --color-text: #212529;
  --color-primary: #303c2c;
  --color-secondary-text: #f7f7f7;
}

.main-background {
  min-height: 100vh;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
}

.navbar {
  min-height: 15vh;
  background-color: #303c2c !important;
  border-color: #303c2c !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.navbar-brand,
.navbar-nav .nav-link {
  color: var(--color-secondary-text);
}

.nav-item {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin-left: 40px;
  position: relative;
}

nav a:hover {
  color: #f7f7f7;
}

nav a::before {
  content: "";
  display: block;
  height: 5px;
  background-color: #f7f7f7;

  position: absolute;
  bottom: 0;
  width: 0%;

  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  transition: all 0.25s ease-in-out;
  text-transform: uppercase;
  font-style: italic;
  color: #f7f7f7 !important;
  transform: scale(1.08);
  text-shadow: 0 2px 8px #00000033;
  letter-spacing: 2px;
  font-weight: 600;
}

.navbar-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  max-height: 50px;
  max-width: 160px;
  padding: 0 16px;
}

.navbar-logo-wrapper img {
  height: 10vh;
  width: auto;
  margin-right: 10vh;
  max-height: 10vh;
  max-width: 60vw;
  object-fit: contain;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.btn-success {
  background-color: #171d16 !important;
  padding: 1rem 2.5rem !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  border-color: #171d16 !important;
  margin-right: 100px !important;
  transition:
  background 0.2s cubic-bezier(.4,2,.6,1),
  color 0.2s cubic-bezier(.4,2,.6,1),
  box-shadow 0.3s cubic-bezier(.4,2,.6,1),
  transform 0.2s cubic-bezier(.4,2,.6,1);
}

.btn-success:hover,
.btn-success:focus {
  background-color: #4caf50 !important;   
  border-color: #4caf50 !important;
  color: #fff !important;
  box-shadow: 0 8px 32px #4caf5044;
  transform: translateY(-2px) scale(1.04);
  text-shadow: 0 2px 8px #00000033;
}

.btn-secondary {
  background-color: #303c2c !important;
  border-color: #303c2c !important;
  color: #f7f7f7 !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600 !important;
  padding: 1rem 2.5rem !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 4px 16px #303c2c22;
  transition:
    background 0.2s cubic-bezier(.4,2,.6,1),
    color 0.2s cubic-bezier(.4,2,.6,1),
    box-shadow 0.3s cubic-bezier(.4,2,.6,1),
    transform 0.2s cubic-bezier(.4,2,.6,1);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #4caf50 !important; 
  border-color: #4caf50 !important;
  color: #fff !important;
  box-shadow: 0 8px 32px #4caf5044;
  transform: translateY(-2px) scale(1.04);
  text-shadow: 0 2px 8px #00000033;
}

.admin-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 450px;
  height: 128px;
  gap: 0.75rem;
  font-size: 2rem !important;
  padding-top: 2.3rem !important;
}

.admin-action-btn img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  margin-right: 0.5rem;
}

.col {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}

.no-extra-margin .col {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.fw-normal {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  color: var(--color-primary) !important;
  letter-spacing: normal !important; 
  text-transform: none !important; 
  text-shadow: none !important; 
}

.btn-success::before {
  display: none !important;
  content: non !important;
}

h2 {
  font-family: font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  color: var(--color-primary) !important;
  text-shadow: 0 2px 8px #303c2c22, 0 1px 0 #fff;
}

h1 {
  margin-top: 50px !important;
  font-family: font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  color: var(--color-primary) !important;
}

.carousel-heading {
  margin-top: 50px !important;
  font-family: font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  color: var(--color-secondary-text) !important;
  text-shadow: 0 2px 8px #000, 0 1px 0 #fff !important;
}

.carousel-text-shadow {
  text-shadow: 0 2px 8px #000, 0 1px 0 #fff !important;
}

.p-3 {
  background-color: var(--color-bg) !important;
  border-width: 2px !important;
  border-style: solid !important;
  border-color: #a1af9c !important;
  border-radius: 1.5rem;              
  box-shadow: 0 6px 32px #303c2c22;   
  transition: 
    box-shadow 0.3s cubic-bezier(.4,2,.6,1),
    transform 0.2s cubic-bezier(.4,2,.6,1);
  padding: 2rem 1.5rem !important;     
  margin-bottom: 2rem;               
  position: relative;
  overflow: hidden;
}

.display-1 {
  margin-bottom: 50px;
}

.twofa-card {
  width: 50%;
  margin: 0 auto;
  background-color: var(--color-bg) !important;
  border-width: 2px !important;
  border-style: solid !important;
  border-color: #a1af9c !important;
  border-radius: 1.5rem;              
  box-shadow: 0 6px 32px #303c2c22;   
  padding: 2rem 1.5rem !important;     
  margin-bottom: 2rem;               
  position: relative;
  overflow: hidden;
}


.p-3:hover {
  box-shadow: 0 12px 48px #303c2c44;  
  transform: translateY(-6px) scale(1.03); 
  border-color: #4caf50 !important;   
}

.p-3::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #a1af9c 0%, #4caf50 100%);
  opacity: 0.2;
  border-radius: 0 0 1.5rem 1.5rem;
}


.image_animation {
  background-color: var(--color-bg) !important;
  border-width: 2px !important;
  border-style: solid !important;
  border-color: #a1af9c !important;
  border-radius: 1.5rem;
  padding: 0 !important;              
  box-shadow: 0 6px 32px #303c2c22;   
  transition: 
    box-shadow 0.3s cubic-bezier(.4,2,.6,1),
    transform 0.2s cubic-bezier(.4,2,.6,1);
  padding: 2rem 1.5rem !important;     
  margin-bottom: 2rem;               
  position: relative;
  overflow: hidden;
}

.image_animation:hover {
  box-shadow: 0 12px 48px #303c2c44;  
  transform: translateY(-6px) scale(1.03); 
  border-color: #4caf50 !important;   
}

.image_animation::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #a1af9c 0%, #4caf50 100%);
  opacity: 0.2;
  border-radius: 0 0 1.5rem 1.5rem;
}

.featurette-image {
  padding: 0 !important;
}

.instagram-card {
  height: 64vh;
  max-height: 64vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

input.form-control,
select.form-control {
  background-color: var(--color-bg) !important;
  color: var(--color-text) !important;
  border: 2px solid #a1af9c !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 4px 16px #303c2c22;
  font-size: 1.1rem;
  padding: 0.75rem 1.25rem !important;
  transition:
    box-shadow 0.3s cubic-bezier(.4,2,.6,1),
    border-color 0.2s cubic-bezier(.4,2,.6,1),
    background 0.2s cubic-bezier(.4,2,.6,1),
    color 0.2s cubic-bezier(.4,2,.6,1);
}

textarea.form-control {
  background-color: var(--color-bg) !important;
  color: var(--color-text) !important;
  border: 2px solid #a1af9c !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 4px 16px #303c2c22;
  font-size: 1.1rem;
  padding: 1rem 1.5rem !important;
  transition:
    box-shadow 0.3s cubic-bezier(.4,2,.6,1),
    border-color 0.2s cubic-bezier(.4,2,.6,1),
    background 0.2s cubic-bezier(.4,2,.6,1),
    color 0.2s cubic-bezier(.4,2,.6,1);
  resize: vertical;
  min-height: 120px;
}

input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus {
  border-color: #4caf50 !important;
  box-shadow: 0 8px 32px #4caf5044;
  background-color: #fff !important;
  color: #212529 !important;
  outline: none;
}


