@import './base.css';

@font-face {
    font-family: "LG Smart UI Regular";
    src:  url('./fonts/LGSmartUI-Regular.woff2') format('woff2'),
          url('./fonts/LGSmartUI-Regular.woff') format('woff');
}
@font-face {
    font-family: "LGEI Headline";
    src:  url('./fonts/LGEIHeadline-Bold.woff2') format('woff2'),
          url('./fonts/LGEIHeadline-Bold.woff') format('woff');
}
@font-face {
    font-family: "LG Smart UI Semi Bold";
    src:  url('./fonts/LGSmartUI-SemiBold.woff2') format('woff2'),
          url('./fonts/LGSmartUI-SemiBold.woff') format('woff');
}

body {
    background-color: #F0ECE4;
    font-family: "LG Smart UI Regular";
    font-size: 16px;
    line-height: 20px;
}

b {
    font-family: "LG Smart UI Semi Bold";
    font-weight: 600;
}

/* General container styling */
.container {
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 0;
    width: 100%;
    /*background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.introduction {
    padding: 80px 0 40px;
    position: relative;
    height: 720px;
    
}
.introduction .header-text {
    max-width: 960px;
    width: 100%;
    text-align: center;
    max-width: 770px;
    margin: 0 auto;
}
.introduction .header-text h2 {
    font-size: 56px;
    line-height: 60px;
    padding: 0 70px;
    margin-bottom: 16px;
}
.footer {
    padding: 48px 32px;
}

.footer .content-block {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

/* Headings */
h1, h2 {
    color: #333333;
    font-weight: bold;
    font-family: "LGEI Headline";
}
h4 {
    font-family: "LG Smart UI Regular";
    color: #000;
    font-size: 2.25rem;
    margin-bottom: 32px;
     
}
p {
    font-size: 16px;
    padding: 0;
    margin: 0 0 16px;
}
p.text-large {
    font-size: 20px;
    margin: 0 0 4px;
}

img {
    width: 100%;
    font-size: 0;
    text-align: top;
}
/* Form labels */
.form-label {
    font-weight: bold;
    color: #555555;
}

/* Form controls */
.form-control {
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 10px;
}

/* Invalid form controls */
.is-invalid {
    border-color: #dc3545;
}

/* Invalid feedback */
.invalid-feedback {
    font-size: 0.9rem;
    color: #dc3545;
}

/* Buttons */
button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Alerts */
.alert {
    font-size: 0.9rem;
    padding: 10px;
    border-radius: 4px;
}

/* Selected summary */
.selected-summary {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #dddddd;
}

/* Tabs */
.tabs .tab {
    margin-bottom: 10px;
}

/* Product grid */
.products .product {
    text-align: center;
}

.form-control.is-invalid, 
.was-validated .form-control:invalid {
    background-image: none !important;
}

@media (max-width: 767px) {
    .introduction {
        padding: 24px 16px;
        height: 550px;
    } 
    p.text-large {
        font-size: 0.875rem;
        margin-bottom: 8px;
    }
    .introduction .header-text h2 {
        font-size: 1.75rem;
        line-height: 32px;
        margin-bottom: 8px;
         padding: 0;
    }
    h4 {
        font-size: 1.500rem;
        line-height: 28px;
        max-width: 246px;
        margin: 0 auto 32px;
        text-align: center;
    }

    .OLED, .QNED, .NANO {
        background-size: 40px 40px;
        background-position-x: 16px;
        background-position-y: 10px;
    }
    
    .tv, .lifestyle, .sound-bars {
        background-size: 40px 40px;
        background-position: center 10px;
    }
}

@media (max-width: 320px) {
    
    .OLED, .QNED, .NANO {
        background-position-y: 5px;
    }
}