/* 
 * Premium CSS Stylesheet
 * Client: Milan Trval FOTOGRAF
 * Description: Premium dark theme for photography portfolio
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #0f1012;
    --bg-card: #181a1f;
    --accent: #c5a059;       /* Chino / Warm Gold */
    --accent-hover: #e0bb73;
    --text-primary: #f5f6f8;
    --text-secondary: #a0a5b0;
    --text-muted: #626670;
    --border-color: #242831;
    --shadow-color: rgba(0, 0, 0, 0.4);
    --bg-header: rgba(15, 16, 18, 0.65); /* Modern translucent glassmorphism */
    --bg-header-scrolled: rgba(15, 16, 18, 0.8);
    --bg-footer: #0b0c0d;
    
    /* Layout */
    --header-height: 80px;
    --container-width: 1200px;
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
}

/* Light Theme Variables */
.light-theme {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-color: rgba(15, 23, 42, 0.05);
    --bg-header: rgba(248, 250, 252, 0.65); /* Modern translucent glassmorphism */
    --bg-header-scrolled: rgba(248, 250, 252, 0.8);
    --bg-footer: #f1f5f9;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* Layout container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.site-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-header);
    backdrop-filter: blur(15px); /* Increased blur for richer frosted glass look */
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.site-header.scrolled {
    height: 70px;
    background-color: var(--bg-header-scrolled);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo-link {
    display: flex;
    flex-direction: column;
}

.logo-link svg {
    height: 48px;
    width: auto;
    display: block;
    color: var(--text-primary);
    transition: var(--transition);
}

.logo-link:hover svg {
    color: var(--accent);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    width: 38px;
    height: 38px;
}

.theme-toggle-btn:hover {
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.05);
}

.light-theme .theme-toggle-btn:hover {
    background-color: rgba(15, 23, 42, 0.05);
}

/* Header Social Links */
.header-social-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-social-link {
    color: var(--text-secondary);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    width: 38px;
    height: 38px;
}

.header-social-link:hover {
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.05);
}

.light-theme .header-social-link:hover {
    background-color: rgba(15, 23, 42, 0.05);
}

@media (max-width: 768px) {
    .header-social-links {
        display: none;
    }
}

/* Show/Hide icons based on theme */
.theme-icon-sun {
    display: block;
}
.theme-icon-moon {
    display: none;
}
.light-theme .theme-icon-sun {
    display: none;
}
.light-theme .theme-icon-moon {
    display: block;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--accent);
    text-transform: uppercase;
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(24, 26, 31, 0.4) 0%, rgba(15, 16, 18, 0.95) 80%);
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 0;
    filter: grayscale(100%);
    transform: scale(1.05);
    animation: zoomOutSlow 20s infinite alternate;
}

@keyframes zoomOutSlow {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.2s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.btn-secondary {
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
    background: transparent;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-dark);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-card);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--accent);
}

.section-desc {
    color: var(--text-secondary);
    max-width: 650px;
    margin: 20px auto 0 auto;
    font-size: 1.05rem;
    font-weight: 300;
}

/* Portfolio Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

/* Masonry Grid Layout */
.portfolio-grid {
    column-count: 3;
    column-gap: 20px;
    display: block;
    transition: var(--transition);
}

/* Portfolio Item */
.portfolio-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-color);
    background-color: var(--bg-card);
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Responsive Masonry columns */
@media (max-width: 992px) {
    .portfolio-grid {
        column-count: 2;
    }
}
@media (max-width: 600px) {
    .portfolio-grid {
        column-count: 1;
    }
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 16, 18, 0.9) 0%, rgba(15, 16, 18, 0) 70%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: var(--transition);
    z-index: 2;
}

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

.portfolio-item:hover img {
    transform: scale(1.08);
}

.item-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 5px;
    font-weight: 600;
}

.portfolio-overlay .item-category {
    font-size: 0.85rem;
    letter-spacing: 3px;
}

.item-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.portfolio-overlay .item-title {
    color: #ffffff;
}

.portfolio-overlay .item-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    font-weight: 300;
    display: block;
}

/* O mne page specific */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-img-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.about-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    pointer-events: none;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 300;
}

.skills-container {
    margin-top: 50px;
}

.skills-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.skill-bar {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.skill-progress {
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.skill-progress-bar {
    height: 100%;
    background-color: var(--accent);
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.1, 1);
}

/* Gear section */
.gear-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gear-category {
    background-color: var(--bg-dark);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.gear-cat-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gear-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.gear-item a:hover {
    color: var(--accent);
}

/* Gear links */
.gear-item a {
    color: var(--text-secondary);
}

/* Maturanti Pricing layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--accent);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 35px;
    transform: rotate(45deg);
}

.price-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 25px;
}

.price-features {
    text-align: left;
    margin-bottom: 35px;
    color: var(--text-secondary);
    font-weight: 300;
}

.price-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.price-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
}

/* Extra prints table */
.extra-prints {
    margin-top: 80px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
}

.table-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
}

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

.prints-table th, .prints-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.prints-table th {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--accent);
}

.prints-table td {
    font-size: 0.95rem;
}

.prints-table tr:last-child td {
    border-bottom: none;
}

/* Recenzie layout */
.reviews-summary {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stars {
    color: var(--accent);
    font-size: 1.4rem;
    margin: 15px 0;
}

.rating-count {
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 25px;
}

.review-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-review {
    padding: 10px 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-google {
    background-color: #df4a32;
    color: white;
}

.btn-google:hover {
    background-color: #c93b24;
    transform: translateY(-2px);
}

.btn-facebook {
    background-color: #3b5998;
    color: white;
}

.btn-facebook:hover {
    background-color: #2d4373;
    transform: translateY(-2px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--accent);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    font-size: 1rem;
}

.review-source {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.source-google {
    background-color: rgba(223, 74, 50, 0.1);
    color: #df4a32;
}

.source-facebook {
    background-color: rgba(59, 89, 152, 0.1);
    color: #3b5998;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Contact page layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.info-box-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-box-value {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 0.95rem;
}

.info-box-value a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Form Styling */
.contact-form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 5px rgba(197, 160, 89, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Honeypot field (anti-spam) */
.honey-field {
    display: none !important;
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: none;
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.alert-error {
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

/* Pre-footer Social Section */
.pre-footer-social {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.social-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.social-links-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-link-centered {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link-centered svg {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link-centered:hover {
    background-color: var(--accent);
    color: #121315;
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.social-link-centered:hover svg {
    transform: scale(1.15);
}

/* Footer */
.site-footer {
    background-color: var(--bg-footer);
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-widget p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* Lightbox overlay */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 10, 12, 0.97);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.35s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-align: center;
    margin-top: 20px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-arrow:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

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

/* Scroll Fade In Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive CSS */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-container {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .gear-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .extra-prints {
        padding: 20px 10px;
    }
    
    .prints-table th, .prints-table td {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .lightbox-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
    
    .pre-footer-social {
        padding: 50px 15px;
    }
    
    .social-title {
        font-size: 1.05rem;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
    
    .social-links-centered {
        gap: 15px;
    }
    
    .social-link-centered {
        width: 48px;
        height: 48px;
    }
}
