﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.header {
    background-color: white;
    color: black;
    padding: 2rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom-color: dodgerblue;
    border-bottom-style: solid;
    border-bottom-width: 2px
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 15px;
    bottom: 20px;
}

.content-section {
    padding: 3rem 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .carousel-img {
        height: 250px;
    }
}

@media (min-width: 769px) {
    .carousel-img {
        height: 350px;
    }
}

.screen-protector {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
}
