/* KRYPTIC REIGN - CRYSTAL DARK MODE */

:root {
    --bg-body: #050505;
    --bg-surface: #0a0a0a;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.2);
    
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #8a0303; /* Deep Crimson */
    --silver: #C0C0C0;
    
    --font-display: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

/* UTILITIES */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HEADER */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-highlight);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--silver);
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-smooth);
}

.nav-menu a:hover::after { width: 100%; }

.cta-button {
    border: 1px solid var(--border-highlight);
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--text-primary);
    color: var(--bg-body);
    border-color: var(--text-primary);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transform: scale(1.05); /* Slight zoom for quality */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-body) 90%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin-top: 4rem;
}

.hero-title {
    font-family: var(--font-display);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.line-1 {
    display: block;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}

.line-2 {
    display: block;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.hero-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--silver);
}

.separator {
    color: var(--accent);
    font-size: 0.8rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-primary);
    padding: 1.2rem 3rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    box-shadow: 0 0 20px rgba(138, 3, 3, 0.4);
}

.hero-rating {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.stars { color: var(--gold); letter-spacing: 0.3em; }

/* VISION SECTION */
.vision {
    padding: 10rem 0;
    border-bottom: 1px solid var(--border-color);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-label {
    display: block;
    font-family: var(--font-display);
    color: var(--accent);
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.section-heading {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.body-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.vision-features {
    margin-top: 3rem;
    display: grid;
    gap: 1rem;
}

.v-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    color: var(--silver);
}

.v-icon { color: var(--accent); }

.image-stack {
    position: relative;
    height: 600px;
}

.stack-1 {
    position: absolute;
    top: 0; right: 0;
    width: 70%;
    height: 70%;
    object-fit: cover;
    z-index: 2;
    border: 1px solid var(--border-highlight);
}

.stack-2 {
    position: absolute;
    bottom: 0; left: 0;
    width: 60%;
    height: 60%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    filter: grayscale(100%);
}

/* SERVICES SECTION */
.services {
    padding: 10rem 0;
    background: #080808;
    position: relative;
}

.section-header.center {
    text-align: center;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px; /* Gap for border effect */
    background: var(--border-color); /* Creates the grid lines */
    border: 1px solid var(--border-color);
}

.service-card {
    background: var(--bg-body);
    padding: 3rem 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    transition: background 0.3s ease;
}

.service-card:hover {
    background: #0f0f0f;
}

.service-card.highlight {
    background: rgba(138, 3, 3, 0.05);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* GALLERY / MARQUEE */
.marquee-strip {
    background: var(--text-primary);
    color: var(--bg-body);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.sep { margin: 0 2rem; opacity: 0.5; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 400px 400px;
    gap: 1rem;
    padding: 1rem;
    background: #000;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: filter 0.5s ease;
}

.gallery-item:hover img {
    filter: grayscale(0);
}

.gallery-item.large {
    grid-row: 1 / -1; /* Spans full height */
}

/* REVIEWS */
.reviews {
    padding: 8rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 2rem;
}

.review-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.review-body {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.author-name {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.author-role {
    font-size: 0.8rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* FOOTER */
.footer {
    padding: 6rem 0 2rem;
}

.footer-cta {
    text-align: center;
    margin-bottom: 6rem;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.footer-phone {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 2rem;
}

.footer-phone:hover {
    color: var(--accent);
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0,255,0,0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #0f0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-dot {
    width: 8px; height: 8px;
    background: #0f0;
    border-radius: 50%;
    box-shadow: 0 0 10px #0f0;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.info-block h4 {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    color: var(--silver);
}

.info-block p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.map-link {
    color: var(--text-primary);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
}

.footer-bar {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #444;
}

/* MOBILE FLOATING CTA */
.floating-dock {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 900;
    display: none;
}

.dock-btn {
    background: var(--accent);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .vision-grid { grid-template-columns: 1fr; gap: 4rem; }
    .image-stack { height: 400px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .gallery-showcase { grid-template-columns: 1fr; grid-template-rows: auto; }
}

@media (max-width: 768px) {
    .header { padding: 1rem 0; }
    .nav-menu { display: none; }
    .menu-toggle { display: block; width: 30px; height: 20px; position: relative; }
    .menu-toggle span { 
        position: absolute; width: 100%; height: 2px; background: white; 
        left: 0; transition: 0.3s; 
    }
    .menu-toggle span:first-child { top: 0; }
    .menu-toggle span:last-child { bottom: 0; }
    
    .hero-content { margin-top: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-info { grid-template-columns: 1fr; gap: 2rem; }
    .floating-dock { display: block; }
}
