/* 
 * Main Stylesheet for The Gap People Website
 * Based on BikeBear design aesthetic with TGP branding
 */

/* ===== VARIABLES ===== */
:root {
    --primary-color: #FFDD00; /* Vibrant yellow from TGP logo */
    --secondary-color: #000000; /* Black */
    --accent-color: #FFD700; /* Gold accent */
    --text-light: #FFFFFF; /* White text */
    --text-dark: #000000; /* Black text */
    --font-primary: 'Arial', sans-serif;
    --font-heading: 'Impact', 'Arial Black', sans-serif;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 8rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h4 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background-color: var(--primary-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 200px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.hamburger-menu {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger-menu span,
.hamburger-menu span::before,
.hamburger-menu span::after {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    position: absolute;
    transition: var(--transition);
}

.hamburger-menu span {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-menu span::before,
.hamburger-menu span::after {
    content: '';
}

.hamburger-menu span::before {
    top: -10px;
}

.hamburger-menu span::after {
    bottom: -10px;
}

.navigation ul {
    display: flex;
}

.navigation ul li {
    margin-left: 30px;
}

.navigation ul li a {
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
}

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

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 600px;
}

.brand-statement h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.brand-statement h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 5px;
    background-color: var(--text-dark);
}

.hero-text {
    margin-top: 30px;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 50%;
}

/* ===== STATEMENT SECTIONS ===== */
.statement-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.statement-section.dark {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.statement-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.statement-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 50%;
    z-index: 1;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-header h3 {
    display: inline-block;
    position: relative;
}

.section-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 5px;
    background-color: var(--text-dark);
}

.about-content p:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    padding: 30px 0;
    border-top: 1px solid var(--text-dark);
    border-bottom: 1px solid var(--text-dark);
    margin-bottom: -1px; /* Prevent double borders */
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.service-item h4 {
    margin-bottom: 0;
}

.service-item p {
    margin-bottom: 0;
    font-size: 1rem;
    max-width: 300px;
    text-align: right;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
}

.client-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}

.client-logo:hover {
    transform: scale(1.05);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.portfolio-info p {
    margin-bottom: 0;
    color: #666;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    margin-top: 30px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--text-dark);
    background-color: transparent;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group button {
    background-color: var(--text-dark);
    color: var(--text-light);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.form-group button:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 200px;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-social ul {
    display: flex;
}

.footer-social ul li {
    margin-right: 15px;
}

.footer-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-social ul li a:hover {
    background-color: var(--accent-color);
}

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

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 6rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 4rem;
    }
    
    h3 {
        font-size: 2.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .navigation {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--primary-color);
        overflow: hidden;
        transition: var(--transition);
    }
    
    .navigation.active {
        height: calc(100vh - 80px);
    }
    
    .navigation ul {
        flex-direction: column;
        padding: 30px;
    }
    
    .navigation ul li {
        margin: 15px 0;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .brand-statement h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .statement-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo,
    .footer-links,
    .footer-social {
        margin-bottom: 30px;
    }
    
    .footer-links ul {
        align-items: center;
    }
    
    .footer-social ul {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
