/* 
 * Hood River Group Website Styles
 * Based on brand guidelines and provided specifications
 */

/* Import Hamburger Menu Styles */
@import url('hamburger.css');

/* ==== Base Styles ==== */
:root {
    /* Brand Colors */
    --hrg-energy: #f26522;
    --hrg-ocean: #1e7ea1;
    --hrg-earth: #b99965;
    --hrg-space: #0a0b09;
    --white: #FFFFFF;
    --light-gray: #f8f8f8;
    --mid-gray: #dcdcdc;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    line-height: 1.5;
    color: var(--hrg-space);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica LT 65', 'Helvetica', Arial, sans-serif;
    font-weight: normal;
    margin-bottom: 1rem;
}

.section-heading {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--hrg-space);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hrg-energy);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.btn {
    display: inline-block;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--hrg-energy);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: #e55511;
    color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: var(--hrg-ocean);
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background-color: #186d8d;
    color: var(--white);
}

/* ==== Layout Components ==== */

/* Header & Navigation */
header {
    height: 80px;
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
}

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

nav ul li a.active {
    color: var(--hrg-energy);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--hrg-energy);
}

.hamburger {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .logo {
        height: 40px;
    }
}

/* Hero Section */
.hero {
    height: 700px;
    background-color: var(--hrg-space);
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 11, 9, 0.5);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Capabilities Section */
.capabilities {
    padding: 80px 0;
    background-color: var(--white);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.capability-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.capability-card:hover {
    background-color: rgba(30, 126, 161, 0.05);
}

.capability-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.capability-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

/* Projects Section */
.projects {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 20px;
}

.project-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.project-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--hrg-energy);
    font-weight: 500;
}

.project-link:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* About Teaser */
.about-teaser {
    padding: 40px 0;
    background-color: rgba(185, 153, 101, 0.1);
    text-align: center;
}

.about-teaser h2 {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

/* Services */
.services {
    padding: 60px 0;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 0 0 300px;
    margin-left: 40px;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.service-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item:nth-child(even) .service-image {
    margin-left: 0;
    margin-right: 40px;
}

@media (max-width: 768px) {
    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }
    
    .service-image,
    .service-item:nth-child(even) .service-image {
        flex: 0 0 auto;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

/* About Page */
.about-hero {
    height: 300px;
    background-color: var(--hrg-space);
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 11, 9, 0.5);
    z-index: 1;
}

.about-hero .hero-content {
    z-index: 2;
    position: relative;
}

.about-content {
    padding: 60px 0;
}

.about-text {
    column-count: 2;
    column-gap: 40px;
}

@media (max-width: 768px) {
    .about-text {
        column-count: 1;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.team-name {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--hrg-ocean);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page */
.contact {
    padding: 60px 0;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-form {
    flex: 1;
    max-width: 600px;
}

.contact-info {
    flex: 0 0 300px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--mid-gray);
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        flex: 0 0 auto;
    }
}

/* Footer */
footer {
    background-color: var(--hrg-space);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
} 