/* Corporate Events Template - Main Styles */

/* CSS Variables for Color Palette */
:root {
    --primary-1: #3a5469;
    --primary-2: #2e8ac6;
    --primary-3: #f76e40;
    --primary-4: #ff7800;
    --primary-5: #1db859;
    
    /* Light/Dark Shades */
    --primary-1-light: #32425d;
    --primary-1-dark: #0d161b;
    --primary-2-light: #78c6fa;
    --primary-2-dark: #339bbe;
    --primary-3-light: #ea8975;
    --primary-3-dark: #c93f23;
    --primary-4-light: #efbf63;
    --primary-4-dark: #e38919;
    --primary-5-light: #52d47f;
    --primary-5-dark: #1d954a;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #57646e;
    --dark-gray: #272c34;
    --black: #000000;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 19px;
    --font-size-large: 21px;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.75rem;
    --font-size-h4: 1.5rem;
    
    /* Spacing */
    --section-padding: 80px 0;
    --card-padding: 30px;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-1);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-1), var(--primary-2)) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.60rem !important;
    font-weight: bold;
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-4) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../COF_images/hero-bg.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-size: 3.52rem;
    margin-bottom: 1rem;
}

.hero-section h2 {
    color: var(--primary-4);
    font-size: 2rem;
    margin-bottom: 1.71rem;
}

.hero-section p {
    color: var(--light-gray);
    font-size: var(--font-size-large);
}

.hero-image {
    position: relative;
    z-index: 2;
}

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.bg-light {
    background: linear-gradient(135deg, var(--light-gray), var(--white)) !important;
}

/* Card Styles */
.feature-card, .service-card, .pricing-card, .team-member, .review-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: var(--card-padding);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover, .service-card:hover, .pricing-card:hover, .team-member:hover, .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    color: var(--primary-2);
}

/* Service Cards */
.service-card img {
    border-radius: var(--border-radius);
    margin-bottom: 1.75rem;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-content h4 {
    color: var(--primary-1);
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.56rem;
}

.service-content ul li {
    padding: 0.25rem 0;
    color: var(--medium-gray);
}

.service-content ul li::before {
    content: '✓';
    color: var(--primary-5);
    font-weight: bold;
    margin-right: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-3);
    text-align: center;
}

/* Pricing Cards */
.pricing-card.featured {
    border: 3px solid var(--primary-4);
    transform: scale(1.05);
}

.pricing-card h4 {
    text-align: center;
    color: var(--primary-1);
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--primary-5);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Team Cards */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h4 {
    margin-bottom: 0.75rem;
}

.team-member p {
    color: var(--primary-2);
    font-weight: 500;
}

/* Feature Items */
.feature-item {
    padding: 2rem 1rem;
}

.feature-item i {
    color: var(--primary-3);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
}

.form-control {
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1rem;
    font-size: var(--font-size-base);
}

.form-control:focus {
    border-color: var(--primary-2);
    box-shadow: 0 0 0 0.2rem rgba(57, 156, 206, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-2), var(--primary-1));
    border: none;
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-1), var(--dark-gray));
    color: var(--white);
    padding: 3rem 0 1rem;
}

footer h5 {
    color: var(--primary-4);
    margin-bottom: 1rem;
}

footer a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-4);
}

/* Breadcrumb */
.breadcrumb-nav {
    padding: 100px 0 20px;
    background: var(--light-gray);
}

.breadcrumb-image {
    width: 50px;
    height: 30px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.61rem;
    }
    
    .hero-section h2 {
        font-size: 1.56rem;
    }
    
    :root {
        --section-padding: 60px 0;
        --card-padding: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.36rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    :root {
        --section-padding: 40px 0;
        --card-padding: 15px;
    }
}




/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
