/* === General === */
body {
    /*background: url('../img/background.jpg') no-repeat center center fixed;*/
    background-size: cover;
    color: #f1f1f1;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    padding-top: 70px; /* space for fixed navbar */
}

a {
    color: #ffffff !important;
    text-decoration: none !important;
}

a:hover {
    color: #3ab2ff !important;
    text-decoration: none !important;
}

/* === Navbar === */
.navbar {
    background-color: rgba(0, 0, 0, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-logo {
     url('../img/logo/logo_u.png')
}
.navbar-brand img {
    margin-right: 8px;
}

/* === Hero Section (index.html) === */
.hero {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 80px;
    padding-left: 40px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.25rem;
}

/* === Footer === */
.footer {
    position: relative;
    width: 100%;
    bottom: 0;
    font-size: 0.9rem;
    color: #cccccc;
    background: transparent;
}

/* === Portfolio / Photos === */
.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.portfolio-img:hover {
    transform: scale(1.03);
}

.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    padding: 5px 0;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

/* === Cards (Releases) === */
.card {
    background-color: rgba(0, 0, 0, 0.75);
    border: none;
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.card-text {
    font-size: 0.9rem;
    color: #aaa;
}

/* === Forms (Contact Page) === */
.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-label {
    color: #ddd;
}

.btn-outline-light {
    border-color: #ccc;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}