/* Base Styles */
:root {
    --waypoint-red: #d25469;
    --dark-gray: #333;
    --medium-gray: #666;
    --light-gray: #f5f5f5;
    --white: #fff;
}

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

body {
    font-family: "Lato", sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: var(--waypoint-red);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-gray);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

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

.section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: var(--waypoint-red);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--dark-gray);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

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

.logo img {
    height: 40px;
}

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

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--dark-gray);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: var(--waypoint-red);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-gray);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* Success Message */
.success-message {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Banner Styles */
.banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 86px;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-gray);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/banner-bg.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

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

.banner h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
}

.about .content {
    max-width: 800px;
    margin: 0 auto;
}

.about p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Values Section */
.values h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 3rem;
    color: var(--waypoint-red);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: "Lato", sans-serif;
}

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

/* Footer Styles */
.site-footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 10px;
}

.social-links a:hover {
    color: var(--waypoint-red);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--waypoint-red);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .banner {
        height: 40vh;
        min-height: 350px;
        background-color: transparent;
    }
    
    .banner-image {
        background-size: cover;
        background-repeat: no-repeat;
        
    }
    
    .banner h1 {
        font-size: 2rem;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    
    .banner p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--white);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.open ul {
        max-height: 300px;
    }
    
    .main-nav li {
        margin: 0;
        text-align: center;
    }
    
    .main-nav a {
        display: block;
        padding: 15px;
    }
} 