/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

/* Hero section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh; /* Cała wysokość ekranu minus navbar */
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Login Button */
.hero .btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    background-color: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.hero .btn:hover {
    background-color: #e68900;
}
button:active {
    transform: scale(0.96);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) inset;
    transition: transform 0.05s ease;
}
