/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f5f6fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo styles */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text, .logo-text-accent {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.logo-text-accent {
    color: var(--secondary-color);
    margin-left: 3px;
}

.footer-logo .logo-text,
.footer-logo .logo-text-accent {
    color: var(--white);
}

/* Update existing logo styles */
.logo {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero section */
.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)),
                url('images/hero-bg.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
    animation: fadeInUp 1s ease 0.4s;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Services section */
.services-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lg-certified {
    position: relative;
    overflow: visible;
}

.lg-brand {
    font-weight: 800;
    font-size: 0.9rem;
    color: #A50034; /* LG's brand red color */
    letter-spacing: -0.5px;
}

.lg-brand-large {
    font-weight: 800;
    font-size: 3rem;
    color: #A50034;
    letter-spacing: -1px;
    line-height: 1;
}

.certification-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 1;
    border: 2px solid #A50034;
}

.lg-logo {
    width: 30px;
    height: auto;
}

.certified-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-color);
}

.official-service-banner {
    margin-top: 4rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #A50034;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.lg-logo-large {
    width: 120px;
    height: auto;
}

.banner-text {
    text-align: left;
}

.banner-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.banner-text p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* About section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-text {
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: var(--secondary-color);
    margin-right: 1rem;
}

/* Contact section */
.contact-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-container {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-item p {
    line-height: 1.4;
}

.info-item i.fa-location-dot {
    margin-top: 3px;
}

.schedule-item {
    align-items: flex-start;
}

.schedule-item i {
    margin-top: 4px;
}

.schedule-details {
    flex: 1;
}

.schedule-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.schedule-list {
    list-style: none;
    margin-bottom: 1rem;
}

.schedule-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.days {
    font-weight: 600;
    color: var(--primary-color);
}

.summer-schedule {
    font-size: 0.9rem;
    padding: 0.5rem;
    background-color: var(--light-gray);
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    justify-content: space-between;
}

.footer-logo img {
    height: 40px;
}

.footer-links h4 {
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 5px 0;
        transition: var(--transition);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .lg-brand-large {
        font-size: 2.5rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .banner-text {
        text-align: center;
    }

    .map-container {
        height: 350px;
    }

    .map-container iframe {
        height: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-links a {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-section h2 {
        font-size: 2rem;
    }

    .schedule-list li {
        font-size: 0.85rem;
    }
    
    .summer-schedule {
        font-size: 0.85rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .certification-badge {
        top: -5px;
        right: -5px;
    }

    .certified-text {
        font-size: 0.6rem;
    }

    .banner-text h3 {
        font-size: 1.2rem;
    }

    .banner-text p {
        font-size: 0.9rem;
    }

    .lg-brand {
        font-size: 0.8rem;
    }

    .lg-brand-large {
        font-size: 2rem;
    }
} 
