<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>SnapVision Studios CSS</title>
    <style>
/* =============================
   SnapVision Studios - Main CSS
   ============================= */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-gradient-1 {
    position: absolute;
    top: -10rem;
    left: 50%;
    transform: translateX(-50%);
    width: 46rem;
    height: 46rem;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(217, 70, 239, 0.2) 0%, rgba(14, 165, 233, 0.1) 40%, rgba(34, 197, 94, 0.1) 100%);
    filter: blur(3rem);
}

.bg-gradient-2 {
    position: absolute;
    bottom: -20rem;
    right: -10rem;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.2) 0%, rgba(244, 63, 94, 0.1) 40%, rgba(251, 191, 36, 0.1) 100%);
    filter: blur(3rem);
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background-color: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
  height: 100px;
  width: auto;
}


.logo-text h1 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.logo-text p {
    font-size: 0.75rem;
    color: #a3a3a3;
    margin-top: -0.125rem;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    color: #d4d4d4;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.client-portal-btn {
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: white;
    color: #0a0a0a;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.client-portal-btn:hover {
    background-color: #e5e5e5;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
}

.mobile-menu.open {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.2s;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Main Content */
main {
    position: relative;
    z-index: 0;
}

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

.section {
    padding: 4rem 0;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
}

.section-subtitle {
    margin-top: 0.5rem;
    color: #d4d4d4;
    max-width: 48rem;
}

/* Cards */
.card {
    border-radius: 1rem;
    background-color: rgba(23, 23, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.2s;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

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

.card-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card-icon {
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.875rem;
    color: #d4d4d4;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: white;
    color: #0a0a0a;
}

.btn-primary:hover {
    background-color: #e5e5e5;
}

.btn-secondary {
    background-color: rgba(245, 245, 245, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(245, 245, 245, 0.15);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background-color: rgba(23, 23, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    opacity: 0.8;
}

.feature-text {
    font-size: 0.875rem;
    color: #d4d4d4;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 0.75rem;
    background-color: #171717;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.gallery-watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    padding: 0.5rem;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    color: #d4d4d4;
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    background-color: rgba(23, 23, 23, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

/* Lists */
.list {
    list-style: none;
}

.list-disc {
    list-style: disc;
    padding-left: 1.25rem;
}

.list-item {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #d4d4d4;
}

/* Utility Classes */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

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

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(10, 10, 10, 0.8);
    margin-top: 5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
    display: grid;
    gap: 2rem;
    font-size: 0.875rem;
}

.footer-section h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-section p,
.footer-section li {
    color: #a3a3a3;
    margin-bottom: 0.25rem;
}

.footer-section a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #e5e5e5;
}

.footer-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #737373;
    padding-bottom: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Code/Pre styling */
pre {
    background-color: rgba(10, 10, 10, 0.6);
    border-radius: 0.75rem;
    padding: 1rem;
    overflow-x: auto;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #e5e5e5;
    min-width: 640px;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.pricing-card {
    position: relative;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(23, 23, 23, 0.6);
}

.pricing-card.featured {
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.pricing-tier {
    font-size: 0.875rem;
    color: #d4d4d4;
}

.pricing-price {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.pricing-features {
    margin-top: 1rem;
    list-style: disc;
    padding-left: 1.25rem;
}

.pricing-features li {
    font-size: 0.875rem;
    color: #d4d4d4;
    margin-bottom: 0.5rem;
}

.pricing-button {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: white;
    color: #0a0a0a;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pricing-button:hover {
    background-color: #e5e5e5;
}
    </style>
</head>
<body>
    <p>This file contains the CSS styles for SnapVision Studios website. Copy the CSS from the &lt;style&gt; tags to a separate .css file and link it to your HTML pages.</p>
</body>
</html>