/* =========================================
   PAPARAZZI CLOSET - Premium Fashion Styled
   ========================================= */

:root {
    --primary-color: #0d0d0d;
    /* Darker black for depth */
    --secondary-color: #ffffff;
    --accent-color: #c5a059;
    /* More muted, elegant gold */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f4f4f4;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Smoother ease */
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--secondary-color);
    overflow-x: hidden;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    width: 100%;
    /* Ensure images fill containers */
}

.container {
    width: 92%;
    max-width: 1400px;
    /* Wider layout for modern feel */
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   Header
   ========================================= */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between logo and text */
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo img {
    height: 60px;
    /* Adjust height as needed to fit header without expanding */
    width: auto;
    border-radius: 50%;
    /* Make it round if it's square, or just cleaner */
}

.logo span {
    color: var(--accent-color);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
}

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

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

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

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* =========================================
   Hero Section (Parallax)
   ========================================= */
.hero {
    height: 100vh;
    background-image: url('../assets/images/hero.jpg');
    background-attachment: fixed;
    /* Parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 5rem;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero .btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.hero .btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* =========================================
   Brand Highlight Marquee
   ========================================= */
.brand-marquee {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid #222;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0 60px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   Masonry Collections Grid
   ========================================= */
.collections {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 20px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Specific layout for masonry look */
.masonry-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Large item */
.masonry-item:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.masonry-item:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.masonry-item:nth-child(4) {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
}

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

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

.masonry-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    color: var(--secondary-color);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.masonry-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.masonry-content p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   New Arrivals / Trending
   ========================================= */
.trending {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: transparent;
    transition: var(--transition);
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    max-height: 500px;
}

.product-image img {
    transition: var(--transition);
}

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

.product-info {
    text-align: center;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.product-info .price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--accent-color);
}

/* =========================================
   Newsletter
   ========================================= */
.newsletter {
    padding: 80px 0;
    text-align: center;
    background-color: var(--text-color);
    /* Dark gray */
    color: var(--secondary-color);
}

.newsletter h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.newsletter form {
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

.newsletter button {
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: var(--transition);
}

.newsletter button:hover {
    background-color: #b08d48;
}

/* =========================================
   Footer (Redesigned)
   ========================================= */
footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid #222;
    padding-bottom: 60px;
}

.footer-logo h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #888;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-links h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links ul li a {
    color: #888;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.85rem;
}

/* =========================================
   About Page
   ========================================= */
.about-section {
    padding: 100px 0;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    border-radius: 0;
    box-shadow: 20px 20px 0 var(--bg-light);
    filter: grayscale(20%);
    transition: var(--transition);
}

.about-img:hover img {
    filter: grayscale(0%);
    transform: translateY(-5px);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

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

/* =========================================
   Services Page
   ========================================= */
.services-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-light);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   Contact Page
   ========================================= */
.contact-section {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.contact-info {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-form {
    padding: 60px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.checkbox-group input {
    margin-top: 6px;
    transform: scale(1.3);
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: 0.9rem;
    text-transform: none;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-light);
}

/* =========================================
   Responsiveness
   ========================================= */
@media (max-width: 1024px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .masonry-item:nth-child(1),
    .masonry-item:nth-child(2),
    .masonry-item:nth-child(3),
    .masonry-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        height: 400px;
        /* Force height on tablet */
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter form {
        flex-direction: column;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
    }

    .masonry-item {
        height: 350px;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 40px;
    }
}