/* Studio Marcela - Main CSS - Additional styles to match original site */

/* Let Bootstrap handle most styling, this file adds site-specific overrides */

/* Global Background */
body {
    background-color: #1e1e1e !important;
}

/* Navigation */
.navbar-inverse {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    margin-bottom: 0;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav > li > a {
    color: #9d9d9d;
    padding: 15px;
}

.navbar-nav > li > a:hover {
    color: #fff;
}

/* Carousel - styles are in carousel.css, but adding some overrides */
#main-slider {
    margin-bottom: 0;
}

.carousel-image {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-caption h1,
.carousel-caption h2 {
    margin: 0;
}

/* Triptih */
.triptih {
    background-color: #fff;
    padding: 20px 0;
    margin-bottom: 20px;
    text-align: center;
}

.triptih .col-xs-6,
.triptih .col-sm-3 {
    padding: 10px;
}

.triptih a {
    display: block;
    padding: 15px;
    background-color: #f8f8f8;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.triptih a:hover {
    background-color: #e8e8e8;
    text-decoration: none;
}

.triptih span {
    font-weight: bold;
    font-size: 14px;
}

/* Article List */
.articleList {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.listItemBg1 {
    background-color: #fff;
}

.listItemBg2 {
    background-color: #f9f9f9;
}

.articleTitle {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.articleTitle a {
    color: #333;
    text-decoration: none;
}

.articleTitle a:hover {
    color: #000;
    text-decoration: underline;
}

.listImage {
    margin-bottom: 15px;
}

.listImage img {
    width: 100%;
    height: auto;
}

.listDescription {
    color: #666;
    line-height: 1.8;
}

/* Detail Article */
.detArticle {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.detTitle {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.articleContent {
    line-height: 1.8;
    color: #666;
}

.articleContent h3 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.articleContent ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.articleContent li {
    margin-bottom: 8px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #337ab7;
    color: #fff;
}

.btn-primary:hover {
    background-color: #286090;
}

.error-message {
    color: #d9534f;
    font-size: 12px;
    margin-top: 5px;
}

/* News */
.news-list {
    margin-top: 20px;
}

.news-item {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #337ab7;
    border-radius: 4px;
}

.news-item h3 {
    margin-top: 0;
    color: #333;
}

.news-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #222;
    color: #9d9d9d;
    padding: 30px 0;
    margin-top: 50px;
}

.footer a {
    color: #9d9d9d;
    text-decoration: none;
}

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

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 8px 0;
    margin-bottom: 20px;
}

.breadcrumb > li + li:before {
    content: "/ ";
    padding: 0 5px;
    color: #ccc;
}

.breadcrumb > .active {
    color: #777;
}

/* Utilities */
.clear {
    clear: both;
}

.hidden-print {
    display: block;
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-caption {
        bottom: 10px;
        padding: 10px;
    }
    
    .detArticle {
        padding: 15px;
    }
    
    .articleTitle {
        font-size: 20px;
    }
    
    .detTitle {
        font-size: 24px;
    }
}

