/* ============================================
   JELNORA SNAPS PHOTOGRAPHY
   Built by Dual Vizion Web Design
   ============================================ */

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

:root {
    --black: #0a0a0a;
    --dark-1: #111;
    --dark-2: #161616;
    --dark-3: #1e1e1e;
    --accent: #7b5ea7;
    --accent-dark: #6a4f91;
    --accent-light: rgba(123,94,167,0.15);
    --accent-border: rgba(123,94,167,0.2);
    --text: #f5f5f5;
    --text-dim: #999;
    --text-mid: #ccc;
    --white: #fff;
    --radius: 12px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Raleway', sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ─── Typography ─────────────────────────────── */
.heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}
.heading span { color: var(--accent); }
.subheading {
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ─── Navigation ─────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
}
.nav-logo span { color: var(--accent); }
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    transition: color var(--transition);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    transition: var(--transition);
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* ─── Hero ───────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-content .subheading { margin-bottom: 20px; }
.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 17px;
    color: var(--text-mid);
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: var(--transition);
}
.hero-cta:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,165,116,0.3); }

/* ─── Sections ───────────────────────────────── */
.section {
    padding: 100px 40px;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .subheading { margin-bottom: 12px; }
.section-header h2 { font-size: 40px; margin-bottom: 16px; }
.section-header p { font-size: 15px; color: var(--text-dim); max-width: 600px; margin: 0 auto; }

/* ─── Gallery Grid ───────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 3/4;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ─── Services Cards ─────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-4px);
}
.service-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card .icon svg { width: 24px; height: 24px; color: var(--accent); }
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 16px;
}

/* ─── About Section ──────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}
.about-text p { font-size: 15px; color: var(--text-mid); margin-bottom: 16px; }

/* ─── Contact Section ────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 16px;
}
.contact-info p { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }
.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-mid);
}
.contact-detail svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid var(--accent-border);
    background: var(--dark-2);
    color: var(--text);
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
    padding: 16px 32px;
    background: var(--accent);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    transition: var(--transition);
    align-self: flex-start;
}
.contact-form button:hover { background: var(--accent-dark); }

/* ─── Footer ─────────────────────────────────── */
.footer {
    padding: 60px 40px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text);
    margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    list-style: none;
}
.footer-links a { font-size: 13px; color: var(--text-dim); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent-light); border-color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; color: var(--accent); }
.footer-copy { font-size: 12px; color: #555; }
.footer-credit { font-size: 11px; color: #444; margin-top: 8px; }
.footer-credit a { color: var(--accent); }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav { padding: 16px 20px; }

    .hero-content h1 { font-size: 36px; }
    .hero { padding: 100px 20px 60px; }

    .section { padding: 60px 20px; }
    .section-header h2 { font-size: 30px; }

    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}
