:root {
    --bg-dark: #0f0f0f;
    --card-bg: #1a1a1a;
    --orange: #ff7f00; /* Arancione vivace */
    --orange-hover: #e67300;
}

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.text-orange { color: var(--orange); }

/* Navbar */
.navbar {
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar-brand span.text-orange { font-size: 1.2em; }

/* Hero Section: Foto Split a Tutta Altezza */
.hero-section {
    height: 100vh; /* Tutta l'altezza dello schermo */
    overflow: hidden;
}

.hero-photo-container {
    height: 100%;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ritaglia l'immagine senza distorcerla */
    object-position: center top; /* Centra il ritaglio */
}

/* Bottoni Arancioni Custom */
.btn-orange {
    background-color: var(--orange);
    color: white;
    border-radius: 50px;
    padding: 10px 35px;
    font-weight: 600;
    border: none;
    transition: all 0.2s;
}

.btn-orange:hover {
    background-color: var(--orange-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 127, 0, 0.3);
}

.btn-outline-orange {
    color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
}

/* Project Cards */
.project-card {
    background-color: var(--card-bg) !important;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.02) !important;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 127, 0, 0.2) !important;
}

.project-icon i { opacity: 0.9; }

.badge {
    background-color: rgba(255, 255, 255, 0.05) !important;
    font-weight: 300;
    margin-right: 5px;
    color: #bbb;
}

/* Footer & Social */
.social-links a {
    color: #bbb;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.social-links a:hover {
    color: var(--orange);
    transform: scale(1.1);
}