/* Corporate Events Template - Main Styles */

/* CSS Variables for Color Palette */
:root {
    --primary-1: #3a4e5f;
    --primary-2: #228fdb;
    --primary-3: #f54d48;
    --primary-4: #f2b725;
    --primary-5: #29b476;
    
    /* Light/Dark Shades */
    --primary-1-light: #2f3b48;
    --primary-1-dark: #111a1e;
    --primary-2-light: #77c8ef;
    --primary-2-dark: #3d93d9;
    --primary-3-light: #f79073;
    --primary-3-dark: #d15b44;
    --primary-4-light: #fae086;
    --primary-4-dark: #c86910;
    --primary-5-light: #4fe7a8;
    --primary-5-dark: #15a452;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6f7578;
    --dark-gray: #3c464d;
    --black: #000000;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 16px;
    --font-size-large: 18px;
    --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.56rem !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;
}

.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('../HAD_images/hero-bg.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-size: 3.62rem;
    margin-bottom: 1rem;
}

.hero-section h2 {
    color: var(--primary-4);
    font-size: 2rem;
    margin-bottom: 1.59rem;
}

.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.66rem;
    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.71rem;
}

.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(29, 140, 209, 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.53rem;
    }
    
    .hero-section h2 {
        font-size: 1.55rem;
    }
    
    :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.26rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    :root {
        --section-padding: 40px 0;
        --card-padding: 15px;
    }
}




/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
