/* styles.css */

/* Modern color palette for adult pant company */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #34495e;
  --accent-color: #7f8c8d;
  --background-color: #ecf0f1;
  --text-color: #2c3e50;
  --gold-color: #d09910;
  --silver-color: #b4b4b4;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: rgba(236, 240, 241, 0.6);
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px;
    box-sizing: border-box;
    background-image: url('images/SKO.svg');
    background-repeat: repeat;
    background-size: 20px 20px;
    background-blend-mode: overlay;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-left {
    flex: 1;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo-header-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: -1rem;
}

.logo svg {
    width: 30px;
    height: auto;
}

.main-header {
    font-size: 1rem;
    margin: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.main-header span {
    display: inline-flex;
    align-items: baseline;
}

.main-header .highlight {
    font-size: 1.7rem;
    line-height: 1;
}

.main-header .normal {
    font-size: 1.5rem;
    line-height: 1;
}

.header-buttons {
    display: flex;
    gap: 0.5rem;
}

.header-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem;
}

.header-button:hover {
    color: var(--accent-color);
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 60px;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2em;
    text-align: center;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
    transition: color 0.3s ease;
}

.product {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.color-options {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.color-option {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.color-option:hover {
    transform: scale(1.1);
}

footer {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

h2::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

h2:hover::after {
    width: 100%;
}

h3, h4 {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

h3::after, h4::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

h3:hover::after, h4:hover::after {
    width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.main-header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    overflow: visible;
    height: auto;
    line-height: 1.2;
    padding: 10px 0;
    color: var(--silver-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.main-header .highlight {
    color: var(--gold-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    display: inline-block;
    position: relative;
    font-size: 1.7rem;
    vertical-align: bottom;
}

.main-header .normal {
    color: var(--silver-color);
    display: inline-block;
    position: relative;
}

.cta-button {
    text-align: center;
    margin: 30px 0;
}

.cta-button a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF6B6B;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button a:hover {
    background-color: #FF4F4F;
}

nav ul {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
