:root {
    --bg-color: #0A0A0A;
    --surface-color: #151515;
    --accent-color: #EFFF00;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --border-color: #333;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Snow Effect */
#snow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 60%, 
        rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 60%, 
        rgba(0, 0, 0, 0) 100%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-color);
    margin-left: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-img {
    width: 450px;
    height: 550px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: var(--transition);
    border-radius: 4px;
}

.hero-img:hover {
    filter: grayscale(0%);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(239, 255, 0, 0.2);
}

/* Sections General */
section {
    padding: 100px 10%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    border-radius: 4px;
}

.gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay span {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .overlay span {
    transform: translateY(0);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-secondary);
}

/* Compatibility Wizard */
.wizard-box {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wizard-header {
    margin-bottom: 2rem;
}

.wizard-step-indicator {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.wizard-progress {
    height: 4px;
    background: #333;
    border-radius: 2px;
}

#wizardBar {
    height: 100%;
    background: var(--accent-color);
    width: 20%;
    transition: width 0.3s ease;
}

.wizard-step {
    display: none;
    animation: fadeInStep 0.5s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-step h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.question-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.toggle-group {
    display: grid;
    gap: 15px;
}

.toggle-box {
    cursor: pointer;
    display: block;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    background: #111;
    border-radius: 4px;
    transition: var(--transition);
}

.toggle-box:hover {
    border-color: var(--accent-color);
    background: #1a1a1a;
}

.toggle-box input {
    display: none;
}

.toggle-box span {
    color: var(--text-secondary);
    font-weight: 500;
}

.toggle-box input:checked+span {
    color: var(--accent-color);
}

.toggle-box:has(input:checked) {
    border-color: var(--accent-color);
    background: rgba(239, 255, 0, 0.05);
}

.wizard-footer {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-button {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
    font-size: 0.9rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hidden {
    display: none;
}

/* Guestbook */
.guestbook-section {
    max-width: 800px;
    margin: 0 auto;
}

.guestbook-form input,
.guestbook-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: #fff;
    margin-bottom: 15px;
    border-radius: 4px;
}

.guestbook-form textarea {
    height: 100px;
    resize: none;
}

.messages-list {
    margin-top: 50px;
}

.message-item {
    background: var(--surface-color);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-color);
    animation: fadeInSlide 0.5s ease forwards;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-item strong {
    display: block;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

/* Footer */
.footer {
    text-align: center;
    padding: 100px 10%;
    border-top: 1px solid var(--border-color);
}

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

.credits {
    margin-top: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }

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

    .hero-img {
        width: 300px;
        height: 350px;
    }

    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }
}