/* assets/css/peer-advisory-style.css */
:root {
    --primary-navy: #293857;
    --secondary-gold: #D4AF37;
    --light-gray: #F5F5F5;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --emerging-blue: #00A8E8;
    --scaling-purple: #662D91;
    --booming-green: #228B22;
    --powerhouse-dark-green: #0F5132;
    --summit-maroon: #8B1538;
    --weekend-blue: #87CEEB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
	color: #ebebeb;
}

/* Main wrapper styling */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/68066f85773e16287ff800fd.png') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin: 0;
   color:#fff;
    font-family: 'Playfair Display', serif;
}

/* Apply Section */
.apply-section {
   background:#ebebeb;
    padding: 5rem 0;
}

.apply-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.apply-description {
    font-size: 1.2rem;
    color: var(--primary-navy);
  
    margin: 0 auto;
    text-align: center;
}

/* Groups Section */
.groups-section {
    background:#ebebeb;
    padding: 3rem 0 5rem 0;
}

.group-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Group Logos */
.group-logo img {
    width:100%;
	border-radius: 8px;
}



/* Group Info */
.group-info {
    padding: 1rem 0 1rem 2rem;
}

.group-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.schedule-item {
    margin-bottom: 1rem;
}

.schedule-day {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.schedule-time {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

/* Weekend Group Image */
.group-image-container {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.weekend-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* CTA Button */
.btn-cta {
    background-color: var(--secondary-gold);
    color: var(--text-dark);
    padding: 15px 40px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    margin-top: 3rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .group-info {
        padding: 2rem 0 0 0;
        text-align: center;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .apply-title {
        font-size: 2rem;
    }
    
    .group-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .apply-title {
        font-size: 1.8rem;
    }
    
    .apply-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .group-card {
        padding: 1.5rem;
    }
    
    .group-logo {
        height: 200px;
        padding: 2rem 1rem;
    }
    
    .group-brand {
        font-size: 1.5rem;
    }
    
    .group-arrow,
    .group-curve {
        font-size: 2rem;
    }
    
    .apply-section,
    .groups-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .apply-title {
        font-size: 1.5rem;
    }
    
    .group-title {
        font-size: 1.3rem;
    }
    
    .schedule-day {
        font-size: 0.9rem;
    }
    
    .schedule-time {
        font-size: 0.8rem;
    }
    
    .group-logo {
        height: 180px;
    }
    
    .hero-section {
        height: 300px;
    }
}