/* Base styling and variables */
:root {
    --bg-color: #0c0c0c;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-color: #c5a059;
    --accent-hover: #b08d4b;
    --card-bg: #141414;
    --font-family: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* Typography */
h1 {
    font-size: 4.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: linear-gradient(to bottom, rgba(12,12,12,0.9) 0%, rgba(12,12,12,0) 100%);
    z-index: 100;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1.3rem;
    color: var(--text-primary);
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--text-primary);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.lang-switch:hover {
    border-color: var(--text-primary);
}

.lang-switch option {
    background-color: var(--bg-color);
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

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

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

.btn-outline-small {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
}

.btn-outline-small:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/hero.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    background: linear-gradient(to top, var(--bg-color) 0%, rgba(12,12,12,0.2) 50%, rgba(12,12,12,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeIn 1.5s ease;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Featured Work */
.featured-work {
    padding: 8rem 4rem;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.filter-bubble {
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
}
.filter-bubble:hover, .filter-bubble.active {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

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

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.grid-item:hover img {
    transform: scale(1.03);
}

.more-btn-container {
    text-align: center;
    margin-top: 4rem;
}

/* Testimonials */
.testimonials {
    padding: 6rem 4rem;
    text-align: center;
    background-color: #080808;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.testimonial-card .author {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    padding: 10rem 4rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content p {
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    padding: 4rem 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-col {
    max-width: 300px;
}

.brand-col h3 {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.footer-col a {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem; /* Increased size */
    transition: color 0.3s;
}
.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 3.5rem; }
    .grid-container { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 1.5rem 2rem; }
    .nav-links { display: none; }
    h1 { font-size: 2.8rem; }
    .featured-work, .testimonials, .final-cta { padding: 4rem 2rem; }
    .footer-container { flex-direction: column; gap: 3rem; }
}

/* ==========================================================================
   SUBPAGE STYLES
   ========================================================================== */

/* Helpers */
.page-header {
    padding-top: 12rem;
    padding-bottom: 4rem;
}
.page-padding {
    padding-left: 4rem;
    padding-right: 4rem;
}
.text-center { text-align: center; }
.full-width { width: 100%; display: block; }
.pull-right { float: right; }

/* Forms */
.custom-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
.custom-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.custom-form input,
.custom-form select,
.custom-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
}
.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}
.form-row {
    display: flex;
    gap: 1.5rem;
}
.form-row .form-group { flex: 1; }

/* About Page */
.about-hero {
    padding-top: 10rem;
    margin-bottom: 6rem;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text h1 { margin-bottom: 2rem; font-size: 3.5rem; }
.about-image img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    padding: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.stat-num {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Expertise */
.expertise { padding-top: 6rem; padding-bottom: 6rem; }
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto 0;
}
.expertise-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 8px;
}
.expertise-card h3 { margin-bottom: 1rem; font-size: 1.5rem; }

/* Booking Page */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
}
.pricing-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    border: 1px solid transparent;
}
.pricing-card.popular {
    border-color: var(--accent-color);
    transform: scale(1.05);
}
.pricing-card.selected {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    background: #1a1a1a;
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-card .price {
    color: var(--accent-color);
    font-size: 3rem;
    margin: 1rem 0 2rem;
}
.pricing-card .features {
    list-style: none;
    text-align: left;
}
.pricing-card .features li { margin-bottom: 1rem; color: var(--text-secondary); }

.details-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto 6rem;
}
.expectations ul {
    list-style: none;
    margin-top: 2rem;
}
.expectations li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.booking-form-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 8px;
}

/* Shop Page */
.shop-products { margin-bottom: 6rem; }
.product-item .product-details {
    margin-top: 1rem;
}
.product-item h3 { font-size: 1.2rem; }
.product-price { color: var(--accent-color); margin-top: 0.5rem; font-weight: 500;}

/* Contact Page */
.contact-section { margin-bottom: 8rem; }
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info .info-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.info-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.info-label { font-size: 0.85rem; }
.info-value { font-size: 1.1rem; color: var(--text-primary); }
.follow-block { margin-top: 3rem; }
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-icons a {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons a:hover { background: var(--accent-color); color: var(--bg-color); }
.studio-card {
    background: #141414;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}
.hours-row {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.contact-form-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 8px;
}
.contact-form-card h2 { margin-bottom: 2rem; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-grid, .expertise-grid, .pricing-grid, .details-split, .contact-split {
        grid-template-columns: 1fr;
    }
    .stats { flex-direction: column; gap: 2rem; }
    .pricing-card.popular { transform: none; }
    .form-row { flex-direction: column; gap: 0; }
}

/* ==========================================================================
   CART & MODAL STYLES
   ========================================================================== */
.cart-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem;
}
.cart-count {
    background: var(--accent-color);
    color: var(--bg-color);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
}

/* Modals Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Product Modal */
.product-modal {
    background: #141414;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .product-modal {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}
.modal-close:hover { color: var(--text-primary); }
.product-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.product-modal-details {
    padding: 1rem 0;
    text-align: left;
}
.product-modal-details h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.product-modal-details .sub { color: var(--text-secondary); margin-bottom: 2rem; }
.size-selector { margin-bottom: 2rem; }
.size-selector h4 { margin-bottom: 1rem; color: var(--text-primary); }
.size-option {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.size-option:hover { border-color: #555; }
.size-option.selected {
    border-color: var(--accent-color);
    background: rgba(197, 160, 89, 0.1);
}
.size-option .size { color: var(--text-primary); font-weight: 500; }
.size-option .price { color: var(--accent-color); }

.product-desc ul { list-style: none; margin-bottom: 2rem; }
.product-desc li { margin-bottom: 0.8rem; color: var(--text-secondary); font-size: 0.95rem; }
.product-desc li::before { content: "✓"; color: var(--accent-color); margin-right: 10px; }

/* Cart Sidebar Modal */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #111;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    border-left: 1px solid #333;
}
.cart-sidebar.active { right: 0; }
.cart-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #222;
}
.cart-item-info h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.cart-item-info p { font-size: 0.9rem; color: var(--text-secondary); }
.cart-item-price { color: var(--accent-color); font-weight: 500; }
.remove-btn { color: #ff4d4d; background: transparent; border: none; cursor: pointer; font-size: 0.8rem; margin-top: 0.5rem;}
.cart-footer { padding: 2rem; border-top: 1px solid #222; background: #0a0a0a; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; margin-bottom: 1.5rem; font-weight: 600;}

@media (max-width: 768px) {
    .product-modal { grid-template-columns: 1fr; max-height: 85vh; padding: 1.5rem;}
    .product-modal-img { display: none; } /* Hide image on mobile to save space */
}


