:root {
    --color-bg: #111111;
    --color-bg-light: #1a1a1a;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-accent: #FF007F;
    /* Hot Pink */
    --color-accent-hover: #cc0066;

    --font-main: 'Inter', sans-serif;
    --font-display: 'Oswald', sans-serif;

    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.text-accent {
    color: var(--color-accent);
}

/* Typography */
.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 1rem;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-accent);
    transform: skewX(-20deg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav__item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-light);
    min-width: 100%;
    width: max-content;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 2px solid var(--color-accent);
    flex-direction: column;
}

.nav__item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    width: 100%;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-align: left;
    transition: background-color 0.3s;
}

.dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero__slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.hero__slide.active {
    opacity: 1;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
}

.hero__title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero__title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero__title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fadeIn 1s forwards 1s;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    outline: none;
}

.btn--primary {
    background-color: var(--color-accent);
    color: white;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    /* Sharp, techy look */
}

.btn--primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
}

.btn--outline:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
}

/* Services */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--color-bg-light);
    padding: 3rem;
    border-top: 2px solid transparent;
    transition: all 0.3s;
}

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

.service-card__icon {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card__desc {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* About */
.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__lead {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about__text p {
    color: var(--color-text-muted);
}

.about__image-area {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: var(--color-bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #333;
}

/* Shop Info */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-details {
    background-color: var(--color-bg-light);
    padding: 3rem;
}

.info-name {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-accent);
}

.info-list dt {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.info-list dd {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.tel-link {
    font-size: 1.5rem;
    font-weight: 700;
}

.info-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(100%) invert(92%) contrast(83%);
    /* Dark mode map check */
}

.info-map {
    position: relative;
}

.map-marker-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    color: var(--color-accent);
    z-index: 10;
    pointer-events: none;
}

.map-marker-overlay i {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
    stroke-width: 2.5px;
    fill: rgba(255, 0, 127, 0.2);
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid #333;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-bg);
        padding-top: var(--header-height);
        transition: right 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav__link {
        font-size: 1.5rem;
    }

    /* Mobile Dropdown adjustment */
    .nav__item {
        flex-direction: column;
    }

    .dropdown-menu {
        position: static;
        background-color: transparent;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        width: auto;
        padding-top: 1rem;
        display: none;
    }

    .nav__item:hover .dropdown-menu {
        display: flex;
    }

    .dropdown-link {
        text-align: center;
        font-size: 1.2rem;
        padding: 0.5rem;
    }

    .about__container,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        /* Ensure above nav overlay */
    }
}

/* Works (Purchase History) */
.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.work-item {
    background-color: var(--color-bg-light);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s;
}

.work-item__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    width: 100%;
}

.work-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

.work-item:hover .work-item__image img {
    transform: scale(1.1);
}

.work-item__info {
    padding: 1.5rem;
}

.work-item__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--color-text);
}

.work-item__price {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.work-item__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.work-item__sample-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    transform: rotate(-15deg);
    border: 3px solid rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
}

@media (max-width: 900px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .works-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header (for subpages) */
.hero-page {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
    background-color: #000;
}

.hero-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.hero-page__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-page__title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-page__subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    color: var(--color-accent);
}

/* Flow Steps */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    counter-reset: flow-counter;
}

.flow-step {
    position: relative;
    text-align: center;
}

.flow-step__image-wrapper {
    position: relative;
    margin-bottom: 2rem;
    aspect-ratio: 1/1;
    width: 100%;
}

.flow-step__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    /* Circle images */
    border: 2px solid var(--color-accent);
}

.flow-step__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.flow-step:hover .flow-step__image img {
    transform: scale(1.1);
}

.flow-step__number {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--color-accent);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.flow-step__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.flow-step__desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Connect the steps with a line on desktop */
@media (min-width: 900px) {
    .flow-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
}

/* Price List */
.price-list-intro {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.price-category {
    margin-bottom: 4rem;
}

.price-category__title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-bg-light);
    padding-bottom: 0.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-bg-light);
    text-align: left;
}

.price-table th {
    width: 60%;
    font-weight: 700;
    color: var(--color-text);
}

.price-table td {
    width: 40%;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-accent);
    text-align: right;
}

.price-table__note {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-top: 0.25rem;
}

.price-table tr:hover {
    background-color: var(--color-bg-light);
}

@media (max-width: 600px) {

    .price-table th,
    .price-table td {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
        text-align: left;
        border: none;
    }

    .price-table td {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--color-bg-light);
    }
}

/* Contact Form */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: left;
    background-color: var(--color-bg-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-form-container .section-title {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-bg);
    border: 1px solid #333;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(255, 0, 127, 0.2);
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}