/* CSS Reset & Variables */
:root {
    --bg-color: #0d0d0d;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --accent-color: #e0e0e0;
    --overlay-color: rgba(0, 0, 0, 0.7);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-speed: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

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

.btn-contact {
    border: 1px solid var(--text-secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
}

.btn-contact:hover {
    border-color: var(--text-primary);
    background-color: var(--text-primary);
    color: var(--bg-color) !important;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: url('https://picsum.photos/id/1043/1920/1080') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--text-primary);
    color: var(--bg-color);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(20px);
}

.cta-button:hover {
    background-color: #fff;
    transform: translateY(18px) scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 5%;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.section-header p {
    color: var(--text-secondary);
}

.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

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

.overlay h3 {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.overlay p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .overlay h3,
.gallery-item:hover .overlay p {
    transform: translateY(0);
}

/* Shop Section */
.shop-section {
    padding: 6rem 5%;
    background-color: #111;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.btn-buy {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Experience Section */
.experience-section {
    padding: 6rem 5%;
    background-color: var(--bg-color);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--text-secondary);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 5px;
    width: 1rem;
    height: 1rem;
    background-color: var(--text-primary);
    border-radius: 50%;
    border: 4px solid var(--bg-color);
}

.timeline-item .date {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-item .description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 6rem 5%;
    background-color: #111;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.about-image img:hover {
    filter: grayscale(0%);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-content .lead {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--text-primary);
    padding-left: 1rem;
}

.about-content p {
    color: #ccc;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat .label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, var(--bg-color), #050505);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 250px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 2px;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--text-primary);
    color: var(--bg-color);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-5px);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ------------------------- */
/*     UPDATED FOOTER        */
/* ------------------------- */

footer {
    background-color: #0b0b0b;
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.socials {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.socials a {
    margin: 0 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 3rem;
    letter-spacing: 0.5px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

/* Utility Animations */
.fade-in {
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}
