/* Windows Phone Theme Styles */
body.wp-theme {
    font-family: "Segoe UI", "Segoe WP", sans-serif;
    background: #000000;
    color: #ffffff;
}

/* Navbar styles */
.wp-theme .navbar-wrapper {
    margin-top: 20px;
    margin-bottom: 0;
}

.wp-theme .navbar-wrapper .navbar {
    background: #000000;
}

.wp-theme .navbar .navbar-inner {
    background: #000000;
    border: none;
    box-shadow: none;
    padding-left: 20px;
}

.wp-theme .navbar .nav > li > a {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 300;
    padding: 15px 25px;
}

.wp-theme .navbar .brand {
    color: #ffffff;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Marketing section styles */
.wp-theme .marketing {
    margin-top: 30px;
    padding: 0;
}

.wp-theme .marketing .span4 {
    background: #00a4ef;
    margin: 0;
    padding: 0;
    position: relative;
    height: 220px;
    overflow: hidden;
    border: 4px solid #000;
    text-align: left;
}

.wp-theme .marketing .span4:nth-child(2) { background: #7fba00; }
.wp-theme .marketing .span4:nth-child(3) { background: #f25022; }
.wp-theme .marketing .span4:nth-child(4) { background: #ffb900; }

.wp-theme .marketing .span4 h2 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.wp-theme .marketing .span4 p {
    color: #ffffff;
    padding: 0 20px;
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    width: 45%;
}

.wp-theme .marketing .span4 img.img-circle {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 90px;
    height: 90px;
    border-radius: 0;
    z-index: 1;
    opacity: 0.9;
}

/* Button styles */
.wp-theme .btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    padding: 8px 16px;
    margin: 20px;
    transition: all 0.3s ease;
}

.wp-theme .marketing .span4 .btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    width: 30%;
}

.wp-theme .btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.wp-theme .btn-success,
.wp-theme .btn-primary,
.wp-theme .btn-inverse,
.wp-theme .btn-large {
    background: transparent;
    border: 2px solid white;
}

.wp-theme .btn-success:hover,
.wp-theme .btn-primary:hover,
.wp-theme .btn-inverse:hover,
.wp-theme .btn-large:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Carousel styles */
.wp-theme .carousel {
    margin-bottom: 0;
    background: #000000;
}

.wp-theme .carousel .item {
    height: 300px;
    background: #000000;
}

.wp-theme .carousel img {
    height: 300px;
}

.wp-theme .carousel-caption {
    background: none;
    padding: 20px;
    margin-top: 60px;
    text-align: left;
}

.wp-theme .carousel-caption h1 {
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffffff;
}

.wp-theme .carousel-caption .lead {
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Other elements */
.wp-theme .hero-unit {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 0;
    padding: 30px;
    margin: 30px 0;
    color: #ffffff;
}

.wp-theme .featurette-heading {
    color: #ffffff;
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 30px 0;
}

.wp-theme .lead {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
}

.wp-theme hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Theme switcher */
.wp-theme .theme-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.wp-theme .theme-switcher .btn-group {
    background: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 0;
}

.wp-theme .theme-switcher .btn {
    margin: 0 5px;
    font-size: 14px;
    padding: 6px 12px;
}

/* Hover effects */
.wp-theme .marketing .span4 {
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.wp-theme .marketing .span4:hover {
    transform: scale(1.02);
    background-color: rgba(255, 255, 255, 0.1);
} 