/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.cta-button {
    background-color: #fff;
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f0f0f0;
    opacity: 1 !important;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/vancouver-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 200px 0 150px;
    text-align: center;
    margin-top: 70px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-cta {
    display: inline-block;
    background-color: #7b2a8a;
    color: #fff;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-cta:hover {
    background-color: #6a2378;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-section h2 {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.intro-text {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #7b2a8a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(123,42,138,0.3);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-weight: 300;
}

/* Tech Stack */
.tech-stack {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.tech-intro {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #333;
}

.tech-list {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
    font-weight: 300;
}

.tech-more {
    font-size: 16px;
    font-weight: 300;
    color: #7b2a8a;
}

/* Service Types Section */
.service-types-section {
    padding: 80px 0;
    background-color: #2d3e50;
    color: #fff;
}

.service-types-section h2 {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.service-types-section .intro-text {
    color: #ccc;
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-type-card {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.service-type-card:hover {
    transform: translateY(-5px);
}

.service-type-overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.3s;
}

.service-type-card:hover .service-type-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.service-type-overlay h3 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-type-overlay p {
    font-size: 15px;
    color: #eee;
    line-height: 1.7;
    font-weight: 300;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.portfolio-section h2 {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.portfolio-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.portfolio-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

.portfolio-image-link {
    display: block;
    cursor: pointer;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    border: 1px solid #ddd;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 30px;
    position: relative;
}

.portfolio-item h3 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 0.5px;
    padding-right: 40px;
}

.portfolio-link {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s;
}

.portfolio-link:hover {
    transform: scale(1.2);
}

.portfolio-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 300;
}

.tech-used {
    font-size: 13px;
    color: #7b2a8a;
    font-weight: 300;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #2d3e50;
    color: #fff;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.contact-section .intro-text {
    color: #ccc;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 300;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-form textarea {
    resize: vertical;
}

.submit-button {
    background-color: #7b2a8a;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: #6a2378;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-col h3 {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-weight: 300;
}

.about-col .location {
    font-size: 14px;
    color: #7b2a8a;
    font-weight: 300;
}

.about-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-links a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.about-links a:hover {
    color: #7b2a8a;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 12px;
    color: #ccc;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-section h2,
    .service-types-section h2,
    .portfolio-section h2,
    .contact-section h2 {
        font-size: 28px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .service-types-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
