﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.bg-light-mirro {
    background-color: #f4f9ff;
}

/* Stil special pentru Navbar Mirro */
.navbar-mirro {
    background-color: rgba(255, 255, 255, 0.95); /* Ușor transparent */
    backdrop-filter: blur(10px); /* Efect de sticlă mată */
    transition: all 0.4s ease;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: #007bff !important;
    display: flex;
    align-items: center;
}

    .navbar-brand i {
        font-size: 1.8rem;
        margin-right: 8px;
        color: #0dcaf0; /* Culoarea Info - "Sparkle" */
    }

.nav-link {
    font-weight: 600;
    color: #444 !important;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

    /* Efect de linie sub link-uri la hover */
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #0dcaf0;
        transition: width 0.3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* Butonul special de "Cere Ofertă" */
.btn-reserve {
    background: linear-gradient(45deg, #007bff, #0dcaf0);
    color: white !important;
    border: none;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(13, 202, 240, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .btn-reserve:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 202, 240, 0.4);
    }

:root {
    --mirro-blue: #0056b3;
    --mirro-info: #0dcaf0;
    --mirro-gold: #ffc107;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.text-mirro-blue {
    color: var(--mirro-blue);
}

.bg-mirro-blue {
    background-color: var(--mirro-blue);
}

.btn-mirro {
    background-color: var(--mirro-blue);
    color: white;
    border-radius: 50px; /* Butoane rotunjite ca în pliant */
    font-weight: 600;
}

.btn {
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }