/*
Theme Name: YWCC Capstone
Description: A WordPress theme for promoting the YWCC Capstone program to industry sponsors
Version: 1.0
License: GPL v2 or later
*/

/* Import base styles from the original template */
@import url('css/bootstrap.min.css');
@import url('css/font-awesome.css');
@import url('css/animate.css');
@import url('css/flexslider.css');

/* Custom Theme Styles */
:root {
    --primary-color: #C22731;
    --secondary-color: #2FADDE;
    --dark-gray: #222222;
    --light-gray: #f8f8f8;
}

/* Override template colors with YWCC branding */
.navbar-default .navbar-brand {
    color: var(--primary-color);
}

header .nav a:hover {
    color: var(--primary-color) !important;
}

.btn-theme {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-theme:hover {
    background-color: #a01e26;
    color: #fff;
}

/* Sponsorship Tiers Styling */
.sponsorship-tier {
    border: 2px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background: #fff;
}

.sponsorship-tier:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sponsorship-tier.featured {
    border-color: var(--primary-color);
    position: relative;
}

.sponsorship-tier.featured::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Project Showcase Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card-content {
    padding: 20px;
}

.project-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tech-tag {
    background: var(--light-gray);
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 15px;
}

/* Sponsor Dashboard */
.sponsor-dashboard {
    background: var(--light-gray);
    padding: 40px;
    margin-top: 40px;
}

.dashboard-metric {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.dashboard-metric h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Event Calendar */
.event-calendar {
    background: #fff;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.event-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 15px;
}

/* Testimonial Styling */
.testimonial-box {
    background: #fff;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

/* Call to Action Sections */
.cta-sponsor {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-sponsor h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-sponsor .btn {
    background: #fff;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsorship-tier {
        margin-bottom: 20px;
    }
}


.benefit-box {
    text-align: center;
    padding: 30px;
    height: 100%;
}

.benefit-box i {
    margin-bottom: 20px;
}

.sponsor-features {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
}

.sponsor-features ul {
    list-style: none;
    padding-left: 0;
}

.sponsor-features li {
    padding: 8px 0;
}

.sponsor-features i {
    color: #4CAF50;
    margin-right: 10px;
}

.no-sidebar .sidebar {
    display: none;
}
.no-sidebar .content-area {
    width: 100%;
}