/* --- GLOBAL STYLES --- */
:root {
    --dark-bg: #000000;
    --light-bg: #FFFFFF;
    --dark-text: #1a1a1a;
    --light-text: #f0f0f0;
    --secondary-text-dark: #555555;
    --secondary-text-light: #a9a9a9;
    --accent-color: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    /* Add these three lines */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- HEADER --- */
.page-header {
    background-color: var(--light-bg);
    padding: 20px 5%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-header .logo {
    max-width: 250px;
    height: auto;
}

/* --- MAIN CONTENT --- */
main {
    padding: 0;
    flex-grow: 1; /* Add this line */
}

/* --- INTRO SECTION --- */
.intro-section {
    text-align: center;
    padding: 40px 20px;
}

.intro-section h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.intro-section h1 span {
    display: block;
    font-size: x-large;
}

.intro-section p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--secondary-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- TICKER --- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--accent-color);
    padding: 15px 0;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: ticker 60s linear infinite;
}

.ticker span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-text-light);
    margin: 0 30px;
}

@keyframes ticker {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
/* --- ABOUT US SECTION --- */
.about-us {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* This centers all the text inside */
}

.about-us h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-us .about-summary {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-text-light);
    margin-bottom: 2rem;
}

.about-us .about-text {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
}
/* --- Banner Styles --- */
.brand-banner {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 40px;
    border-radius: 10px; /* This rounds the corners */
    transition: transform 0.3s ease; /* For the hover animation */
}

.banner-link:hover .brand-banner {
    transform: scale(1.05); /* The hover effect */
}
.banner-link {
    display: block;
    width: fit-content; /* Makes the container only as wide as the banner image */
    margin: 0 auto; /* This is the key to centering a block element */
}
/* --- Catalogue Section --- */
.catalogue-section {
    padding: 40px 20px;
    text-align: center;
}
.catalogue-item h3 {
    padding-top: 0.75rem;
    font-size: 0.8rem; /* Reduced from 0.9rem */
    font-weight: 600;
    color: var(--light-text);
}
.catalogue-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.catalogue-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.catalogue-grid a {
    display: block;
    transition: transform 0.3s ease;
}

.catalogue-grid a:hover {
    transform: scale(1.05);
}

.catalogue-grid img {
    width: 150px;
    height: 212px;
    object-fit: cover;
    border-radius: 8px;
}


/* --- BRAND SECTION --- */
.brand-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--dark-bg);
}

.brand-section h2 {
    font-size: x-large;
    margin-bottom: 40px;
}
/* --- Custom Logo Positioning --- */
.brand-grid .logo-bogs {
    position: relative;
    right: 20px; /* Moves it 20px to the left */
}

.brand-grid .logo-florsheim {
    position: relative;
    right: 20px; /* Moves it 10px to the left */
}

.brand-grid .logo-jetpilot {
    position: relative;
    right: 30px; /* Moves it 10px to the right */
}

.brand-grid .logo-nunnbush {
    position: relative;
    left: 10px; /* Moves it 20px to the right */
}
.brand-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.brand-grid a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.brand-grid img {
    max-width: 150px;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.brand-grid a:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}
/* --- Button Styles --- */
.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 30px;
    background-color: #FFA500; /* Orange color */
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    background-color: #E69500; /* A slightly darker orange for hover */
    transform: translateY(-2px);
}

.btn:hover {
    background-color: #e0e0e0; /* Slightly darker on hover */
    transform: translateY(-2px); /* Lifts the button slightly */
}
/* --- FOOTER --- */
.page-footer {
    background-color: var(--light-bg);
    color: var(--dark-text);
    padding: 50px 20px;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-text-dark);
}

.copyright-text {
    margin-top: 40px;
    color: var(--secondary-text-dark);
    font-size: 0.9rem;
}

.copyright-text strong {
    color: var(--dark-text);
}

/* --- SCROLL ANIMATION STYLES --- */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}
