
.carousel-container {
    margin-top: 200px;
    min-height: 600px; 
    padding-top: 50px; 
    padding-bottom: 50px; 
}

.carousel-item img {
    height: 300px;
    object-fit: cover;
}

.carousel-column {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-me {
    margin-top: 100px;
    min-height: 600px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.porto-theo {
    min-height: 600px;
    padding-top: 350px;
    padding-bottom: 50px;
}

.contact {
    margin-top: 100px;
    min-height: 600px;
    padding-top: 50px;
    padding-bottom: 50px;
}

body {
    font-family: 'Lato', sans-serif;
}

.navbar {
    background: linear-gradient(to right, #1c1c1c, #333);
    border-bottom: 2px solid #444;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff !important;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #f1c40f !important;
}

.nav-link {
    font-weight: 500;
    color: #ddd !important;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
    background-color: #555;
    border-radius: 5px;
}

.btn-outline-success {
    color: #fff;
    border-color: #f1c40f;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #f1c40f;
    border-color: #f1c40f;
    color: #333;
}

.form-control {
    border-radius: 25px;
}

.navbar-nav-scroll {
    max-height: 100px;
    overflow-y: auto;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-brand img {
    margin-right: 10px;
}

.card:hover {
    transform: translateY(+10px);
    transition: transform 0.3s ease-in-out;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-img-top:hover {
    transform: scale(1.1);
    z-index: 10;
    object-position: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}