/* --- Global Styles and Reset --- */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333; /* Dark gray text for readability */
    background-color: #FFF; /* White background */
}

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

h1, h2, h3 {
    font-family: 'Helvetica Neue', sans-serif;
    color: #000; 
    margin-top: 0;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: #CC0000; /* Red links */
    transition: color 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #000;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 3px solid #000; /* Black underline for headings */
    display: inline-block;
    color: #CC0000; /* Red title color */
    font-weight: 900;
}

hr {
    border: 0;
    height: 2px;
    background-color: #000; /* Solid black separator */
    opacity: 0.1; /* Subtle */
    margin: 50px 0;
}

/* --- Header & Navigation --- */
.header {
    background-color: #fff; /* White Header */
    color: #000;
    padding: 10px 0 0;
    border-bottom: 5px solid #CC0000; /* Strong Red accent */
}

.header .container {
    display: flex;
    flex-direction: column; /* Stack logo and nav vertically on all screens */
    align-items: center;
    padding: 10px 0 0;
}

/* Logo Styling */
.logo-container {
    height: 70px; /* Increased height for prominence */
    margin-bottom: 10px;
}

.site-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header nav {
    margin-bottom: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
}

.header nav a {
    color: #000;
    margin: 0 15px;
    padding: 10px 10px;
    transition: color 0.3s, background-color 0.3s;
    font-weight: bold;
    text-transform: uppercase;
}

.header nav a:hover {
    color: #000;
    background-color: #FFF; /* White highlight on hover */
    text-decoration: none;
}

.cta-nav {
    background-color: #CC0000; /* Red button in nav */
    padding: 8px 15px;
    border-radius: 3px;
    color: #FFF !important;
}

.cta-nav:hover {
    background-color: #FFF;
    color: #CC0000 !important;
}

/* --- Hero Banner Section --- */
.hero-banner {
    background: url('custom_socks_nesteks.jpg') no-repeat center center/cover; 
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFF;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Slightly darker overlay */
}

.banner-content {
    position: relative; 
    z-index: 10;
}

.hero-banner h2 {
    color: #FFF;
    font-size: 3.5em;
    margin-bottom: 10px;
    font-weight: 900; /* Extra bold */
    text-shadow: 0 0 10px #000, 0 0 20px #CC0000; /* Punchy text shadow */
}

.hero-banner p {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 300;
}

/* --- General Button Styling --- */
.button {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 3px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    border: 3px solid; /* Solid border for all buttons */
}

/* --- Banner CTA Button --- */
.cta-banner {
    background-color: #CC0000; 
    color: #FFF;
    border-color: #CC0000;
}

.cta-banner:hover {
    background-color: #000; /* Black hover */
    color: #FFF;
    border-color: #000;
    text-decoration: none;
}

/* --- About Us Section --- */
.about-us {
    padding: 60px 0;
    text-align: center;
}

.about-us p {
    font-size: 1.15em;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    padding: 0 20px;
}

/* --- E-Catalogue Section --- */
.catalogue-section {
    background-color: #F7F7F7; /* Lighter background */
    padding: 60px 0;
    text-align: center;
}

.download-button {
    background-color: #000; /* Black button */
    color: #FFF;
    border-color: #000;
    font-size: 1.1em;
}

.download-button:hover {
    background-color: #CC0000; /* Red hover */
    color: #FFF;
    border-color: #CC0000;
    text-decoration: none;
}

/* --- Contact Section --- */
.contact-info {
    padding: 60px 0;
    text-align: center;
}

/* Contact Form Styling */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #FFF;
    border: 3px solid #000; /* Strong Black border */
    border-radius: 5px;
    text-align: left;
}

.contact-form-container h3 {
    text-align: center;
    color: #000;
    font-size: 1.8em;
    margin-bottom: 25px;
    border-bottom: 1px solid #CCC;
    padding-bottom: 10px;
}

.contact-form input[type="text"], 
.contact-form input[type="email"], 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #CCC;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #CC0000; /* Red focus highlight */
    outline: none;
}

.form-submit-button {
    width: 100%;
    text-align: center;
    background-color: #000; /* Black button */
    color: #FFF;
    border-color: #000;
}

.form-submit-button:hover {
    background-color: #CC0000; /* Red hover */
    color: #FFF;
    border-color: #CC0000;
    text-decoration: none;
}

/* Contact Details Styling */
.contact-details {
    display: flex;
    justify-content: center; /* Center details */
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    text-align: center;
}

.contact-item {
    margin: 15px 0;
    min-width: 280px;
    text-align: center;
}

.contact-item p {
    margin: 10px 0;
    font-size: 1.1em;
}

.contact-item a {
    font-weight: bold;
}

.google-map {
    margin-top: 40px;
    border: 5px solid #CC0000; /* Thick Red border */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* --- Footer --- */
.footer {
    background-color: #000; /* Black footer */
    color: #FFF;
    text-align: center;
    padding: 25px 0;
    font-size: 1em;
    border-top: 5px solid #CC0000;
}

.footer p {
    margin: 5px 0;
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    .hero-banner h2 {
        font-size: 2.5em;
    }
    .header nav a {
        display: block;
        margin: 5px 0;
    }
    .contact-form-container {
        padding: 20px 10px;
    }
}