/**
 * Main stylesheet
 * บริษัท อุดมสุขเวิลด์ จำกัด
 */

/* Variables */
:root {
    --primary: #F26522; /* Orange from the logo */
    --primary-hover: #d65518;
    --dark: #212529;
    --dark-lighter: #2c3136;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
}

/* General Styles */
body {
    font-family: 'Prompt', 'Sukhumvit Set', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

.bg-dark-lighter {
    background-color: var(--dark-lighter);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* Make proper space for fixed header */
body {
    padding-top: 84px;
}

/* Section Padding */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 992px) {
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Title Line */
.title-line {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    min-height: 600px;
    position: relative;
}

.hero-overlay {
    z-index: 1;
}

.hero .container {
    z-index: 2;
}

/* Vision Section */
.vision-quote {
    position: relative;
    padding: 3rem;
}

.quote-marks {
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    opacity: 0.5;
}

.quote-left {
    top: 20px;
    left: 20px;
}

.quote-right {
    bottom: 20px;
    right: 20px;
}

/* Hover Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Mission Items */
.mission-card {
    transition: all 0.3s ease;
}

.mission-card:hover {
    background-color: var(--dark) !important;
    color: var(--white) !important;
}

.mission-card:hover h3,
.mission-card:hover p {
    color: var(--white) !important;
}

/* Business Cards */
.business-card {
    transition: all 0.3s ease;
}

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

.business-icon img {
    transition: transform 0.3s ease;
}

.business-card:hover .business-icon img {
    transform: scale(1.1);
}

/* Contact Form */
.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(242, 101, 34, 0.25);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .vision-quote {
        padding: 2rem;
    }
    
    .quote-marks {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .vision-quote {
        padding: 1.5rem;
    }
    
    .quote-marks {
        font-size: 2rem;
    }
}