/*------------------------------------------------------------------
[Master Stylesheet]

Project:	Artxglobal
Version:	1.0
Last change:	19/06/17 
Assigned to:	Lithemes
Primary use:	Fashion Week & Beauty Events Business  
-------------------------------------------------------------------*/
@import "bootstrap.css";
@import "font-awesome.min.css";
@import "slick.css";
@import "slick-theme.css";
@import "animate.css";
@import "responsiveslides.css";
@import "jquery.fancybox.css";
@import "formValidation.css";
@import "menu.css";
@import "masonry-docs.css";
@import "preloader.css";
@import "layout.css";
@import "settings.css";
@import "layers.css";
@import "navigation.css";
@import "style.css";
@import "media-queries.css";

.sponsors-logos {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.logos-grid {
    margin: 0 -15px;
}

.logos-grid .card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #cecece;
}

.logos-grid .card:hover {
    transform: translateY(-5px);
}

.card-img-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #cecece;
}

.card-img-top {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.card-body {
    padding: 1.25rem;
    text-align: center;
    background-color: #cecece;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.card-text {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .card-img-container {
        height: 150px;
    }
    
    .logos-grid .card {
        margin-bottom: 20px;
    }
}

/* Footer Styles */
.footer-section {
    background-color: #cecece;
    padding: 60px 0 20px;
    color: #333;
}

.footer-section h5 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #333;
}

.social-links {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #666;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-section h5 {
        margin-top: 20px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.team-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.team-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.team-card .role {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.team-card p {
    color: #34495e;
    line-height: 1.6;
    font-size: 1rem;
}

/* Highlights Section Styles */
.highlights-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.highlight-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.highlight-card h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.highlight-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.highlight-card p {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight-card ul {
    list-style-type: none;
    padding-left: 0;
}

.highlight-card ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
}

.highlight-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.highlight-card ul li:hover::before {
    transform: translateX(5px);
}

/* Sponsor Section Styles */
.sponsors-logos {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.sponsors-logos h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.sponsors-logos h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.sponsor-card:hover::before {
    transform: scaleX(1);
}

.sponsor-card img {
    max-width: 80%;
    height: auto;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.sponsor-card:hover img {
    transform: scale(1.05);
}

.sponsor-card h4 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .team-section,
    .highlights-section,
    .sponsors-logos {
        padding: 60px 0;
    }
    
    .team-card,
    .highlight-card,
    .sponsor-card {
        padding: 25px;
    }
    
    .sponsors-logos h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}
