﻿
@import url('styles.css');


body {
    color: white;
    background: url('../img/background.png') no-repeat center center fixed;
    background-size: cover;
    background-color: #1a1a1a;
}


.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}


.logo {
    position: absolute; 
    bottom: 4px; 
    left: 50%; 
    transform: translateX(-50%); 
    max-width: 400px; 
    max-height: 200px; 
    filter: invert(100%); 
}




.title-container {
    position: absolute;
    left: 50%; 
    top: 53%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    width: 100%;
    text-align: center;
}


h1 {
    font-size: 6rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    text-align: center; 
    margin-bottom: 50px; 
}


.subtitle {
    font-size: 2rem; 
    text-align: left; 
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); 
    margin-bottom: 20px;
}


.subtitle-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}


.bus-ticket-btn {
    position: absolute;
    bottom: 30px; 
    right: 30px;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    border: 3px solid black;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 20;
    border-radius: 5px;
}


.bus-ticket-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    color: black;
    transform: scale(1.05);
}


.bus-ticket-btn:active {
    transform: scale(0.98);
}


@media (max-width: 768px) {
    .logo {
        max-width: 280px;
        max-height: 140px;
    }
    
    
    
    .title-container {
        left: 10px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .bus-ticket-btn {
        padding: 10px 20px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}


@media (max-width: 480px) {
    .logo {
        max-width: 200px;
        max-height: 100px;
    }
    
     h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}
