/* ========================================
   FITZONE GYM - STYLESHEET PRINCIPALE
   ======================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar-inverse {
    background-color: #1a1a1a;
    border: none;
    border-bottom: 3px solid #ff4655;
    margin-bottom: 0;
}

.navbar-brand {
    color: #ff4655 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    padding: 15px 20px;
}

.navbar-brand:hover {
    color: #ff6b77 !important;
}

.navbar-inverse .navbar-nav > li > a {
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    background-color: #ff4655;
    color: #ffffff;
}

.navbar-inverse .navbar-nav > .dropdown > a .caret {
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
}

.dropdown-menu {
    background-color: #2a2a2a;
    border: 1px solid #ff4655;
}

.dropdown-menu > li > a {
    color: #ffffff;
}

.dropdown-menu > li > a:hover {
    background-color: #ff4655;
    color: #ffffff;
}

/* ========================================
   CAROUSEL
   ======================================== */

.carousel {
    margin-bottom: 40px;
}

.carousel-inner > .item {
    
    background-color: #2a2a2a;
}

.carousel-placeholder {
    width: 100%;
    height: 2000px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px dashed #ff4655;
}

.carousel-placeholder-text {
    font-size: 24px;
    color: #666;
    font-weight: 600;
}

.carousel-caption {
    background: rgba(255, 70, 85, 0.9);
    padding: 20px;
    border-radius: 10px;
}

.carousel-caption h1 {
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
}

.carousel-control {
    background: none;
}

.carousel-control .glyphicon {
    color: #ff4655;
    font-size: 40px;
}

img {
    vertical-align: middle;
    max-width: 5000px;
    max-height: 1900px;
    
}

/* ========================================
   CARDS
   ======================================== */

.container-fluid-card {
    padding: 60px 20px;
    background-color: #0a0a0a;
}

.card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #ff4655;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 450px;
    box-shadow: 0 4px 15px rgba(255, 70, 85, 0.2);
    overflow: hidden;
    padding: 0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 70, 85, 0.4);
    border-color: #ff6b77;
}

.card-img-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff4655 0%, #ff6b77 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #2a2a2a;
}

.card-img-placeholder span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.card-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 13px 13px 0 0;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 20px;
}

.card hr {
    border-color: #ff4655;
    margin: 20px;
}

.card h1 {
    color: #ff4655;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========================================
   BUTTONS
   ======================================== */

.bottone {
    background: linear-gradient(135deg, #ff4655 0%, #ff6b77 100%);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bottone:hover {
    background: linear-gradient(135deg, #ff6b77 0%, #ff4655 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 70, 85, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background-color: #1a1a1a;
    padding: 40px 0 20px;
    border-top: 3px solid #ff4655;
    margin-top: 60px;
}

.container-fluid-footer {
    padding: 0 40px;
}

.row-footer {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.row-footer .col-md-4 {
    margin-bottom: 30px;
}

.logo{
    
    max-height: 150px;
}

.logo-footer-placeholder span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

footer p {
    color: #cccccc;
    margin: 5px 0;
}

footer h1 {
    color: #ff4655;
    font-size: 22px;
    margin-bottom: 20px;
}

footer ul {
    list-style-type: none;
    padding-left: 0;
}

footer ul li {
    margin: 10px 0;
}

footer ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #ff4655;
}

.payment-placeholder {
    width: 300px;
    height: 80px;
    background-color: #2a2a2a;
    border: 2px dashed #ff4655;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.payment-placeholder span {
    color: #666;
    font-weight: 600;
}

footer hr {
    border-color: #ff4655;
    margin-top: 30px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .carousel-inner > .item {
        height: 300px;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }

    .card {
        min-height: auto;
    }
    
    .navbar-brand {
        font-size: 18px;
    }
}