/* General */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header {
    padding: 80px 0;
}

header h1 {
    font-size: 48px;
}

header p.lead {
    font-size: 24px;
}

.navbar-nav li {
    padding-right: 20px;
}

.card {
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

section {
    padding: 60px 0;
}

/* Portfolio Section */
section#portfolio {
    background-color: #f8f9fa;
}

section#portfolio .lead {
    font-size: 1.1rem;
    font-weight: 300;
}

section#contact {
    background-color: #fff;
}

footer {
    padding: 20px 0;
}

.toast {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    border-radius: 4px;
    background-color: rgba(20, 20, 20, 0.9);
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 10px;
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast-header strong {
    font-size: 18px;
}

.close {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.close:hover {
    opacity: 0.8;
}

.hover-img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* Carousel */
.carousel-slide {
    position: relative;
}

.carousel-inner {
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    opacity: 0.7;
    transform: translateY(-50%);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.embed-responsive .embed-responsive-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

  .card-text .more {
    display: none;
  }

  .card:hover .card-text .more {
    display: inline;
  }

  .read-more-link {
    display: none;
  }

.card {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.card:hover {
  z-index: 2;
  transform: translate(-2.5%, -2.5%);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}
.container .row {
	max-height: 400px;
}