@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Unbounded:wght@200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

nav {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0;
    top: 0;
    width: 100%;
    background-image: url('Images/RevelstokeHomeImage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-links a {
    color: #fff;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    opacity: 0.6;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    color: #000;
}

.hero-content {
    margin-top: 8rem;
}

.hero-image {
    width: 25%;
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    display: block;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.3rem;
    color: #000;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn:hover {
    background: #555;
}

section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.projects-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.projects-item:hover {
    transform: translateY(-5px);
}

.projects-image {
    width: 100%;
    height: 400px;
    background: #f5f5f5;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.work-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.work-item p {
    color: #666;
    font-size: 0.95rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000;
}

footer {
    background: #f9f9f9;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid #eee;
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.contact-links a:hover {
    opacity: 0.6;
}

footer p {
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 5%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .logo {
        flex: none;
        min-width: auto;
    }

    .nav-links {
        position: static;
        transform: none;
        width: 100%;
        justify-content: center;
    }

    .social-links {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
    .about-content h1 {
        font-size: 1.1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 5%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .logo {
        flex: none;
        font-size: 1.1rem;
    }

    .nav-links {
        position: static;
        transform: none;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.9rem;
        width: 100%;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 1.5rem;
        justify-content: center;
        width: 100%;
    }

    .social-links svg {
        width: 18px;
        height: 18px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 5% 5rem;
    }

    .hero-image {
        width: 60%;
        max-width: 250px;
        height: auto;
    }

    section {
        padding: 3rem 5%;
    }

    h2 {
        font-size: 2rem;
    }
}