
/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #fff;
    transition: background-color 0.3s ease;
}

a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Navbar */
.navbar {
    background: linear-gradient(to right, #000, #333);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar .navbar-brand {
    font-weight: bold;
    font-size: 1.8em;
    color: #fff;
}

.navbar .navbar-nav .nav-link {
    font-size: 1.2em;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover {
    color: #ffcc00;
}

.navbar-toggler-icon {
    background-color: #ffcc00;
}

/* Hero Section */
header {
    background: linear-gradient(to top, #000, #444);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

header h1 {
    font-size: 3.5em;
    font-weight: 700;
}

header p {
    font-size: 1.5em;
}

header .btn {
    background-color: #ffcc00;
    border: none;
    padding: 15px 40px;
    font-size: 1.1em;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

header .btn:hover {
    background-color: #e6b800;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* About Section */
#about {
    padding: 80px 0;
    background-color: #1a1a1a;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

#about h2 {
    color: #ffcc00;
    font-size: 2.5em;
    margin-bottom: 30px;
}

#about p {
    font-size: 1.1em;
    line-height: 1.5;
}

/* Services Section */
#services {
    padding: 80px 0;
    background-color: #000;
    animation: fadeIn 1s ease-in-out;
}

.card {
    border: none;
    background: #222;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.card-title {
    color: #ffcc00;
    font-size: 1.3em;
    font-weight: 600;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-body p {
    color: #bbb;
    font-size: 1.1em;
}

/* Booking Section */
#booking {
    background-color: #222;
    padding: 80px 0;
    animation: fadeIn 1s ease-in-out;
}

#booking input, #booking select {
    background-color: #333;
    border: 1px solid #ffcc00;
    color: #fff;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 10px;
    font-size: 1.1em;
}

#booking input:focus, #booking select:focus {
    background-color: #444;
    border-color: #ffcc00;
}

#booking .btn {
    background-color: #ffcc00;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

#booking .btn:hover {
    background-color: #e6b800;
}

/* FAQ Section */
#faq {
    background-color: #333;
    padding: 80px 0;
    animation: fadeIn 1s ease-in-out;
}

.accordion-button {
    background-color: #444;
    color: #fff;
    border: 1px solid #ffcc00;
    font-size: 1.1em;
}

.accordion-button:hover {
    background-color: #555;
}

.accordion-item {
    background-color: #444;
}

.accordion-header {
    color: #ffcc00;
}

/* Map Section */
#map {
    padding: 80px 0;
    background-color: #1a1a1a;
    animation: fadeIn 1s ease-in-out;
}

#map-container {
    width: 100%;
    height: 400px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0;
    color: #fff;
    text-align: center;
    font-size: 1.1em;
}

footer a {
    color: #ffcc00;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }
    
    .card-body p {
        font-size: 1em;
    }
    
    .card-title {
        font-size: 1.1em;
    }
}

.footer-gradient {
    background: linear-gradient(to bottom, #000000, #404040); /* Czarny przechodzący w szary */
    color: #ffffff;
    padding: 10px 0;
}


/* Scroll-to-top */
.scroll-to-top {
    display: none; /* Domyślnie ukryty */
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ffcc00;
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s, transform 0.3s, width 0.2s, height 0.2s;
    outline: none; /* Wyłącz obramowanie focus */
}

.scroll-to-top:hover {
    background-color: #ffcc00;
    color: #000;
    transform: scale(1.1); /* Powiększenie przy najechaniu */
}

.scroll-to-top:active {
    transform: scale(0.9); /* Zmniejszenie po kliknięciu */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Delikatniejszy cień */
}

/* Force active state on touch devices */
.scroll-to-top:active, 
.scroll-to-top:focus-visible {
    transform: scale(0.9);
    background-color: #ffe066; /* Subtelny kolor zmiany */
}

/* Styl dla mniejszych ekranów */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 60px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 35px;
        height: 35px;
        font-size: 14px;
        bottom: 50px;
    }
}

.gradient-bottom {
    background: linear-gradient(to bottom, #000 95%, #444 100%);
}

.gradient-black-blackxD {
    background: linear-gradient(to bottom, #000 95%, #444 100%);
}

a.text-warning:hover {
    color: #ffc107;
    text-decoration: underline;
}

.contact-info p {
    display: flex;
    align-items: center; /* Wyśrodkowanie ikon i tekstu w pionie */
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px; /* Odstęp między ikoną a tekstem */
    font-size: 1.2rem; /* Dostosowanie wielkości ikon */
}

.contact-info a {
    text-decoration: none; /* Usunięcie podkreślenia z linków */
    color: #ffc107; /* Żółty kolor */
}

.contact-info a:hover {
    color: #fff; /* Biały kolor przy najechaniu */
    text-decoration: underline; /* Dodanie podkreślenia na hover */
}

.service i {
    font-size: 2.5rem; /* Wielkość ikony */
    margin-bottom: 10px; /* Odstęp od nagłówka */
    color: #ffc107; /* Żółty kolor, żeby pasowało */
}

