/* 
   Toktay Atelier - Modern & Energetic Theme
   Theme: Light, Bold, Premium Fashion
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&family=Syne:wght@400;700;800&display=swap');

:root {
    --bg-color: #F9F7F2;
    /* Warm Cream / Bone */
    --text-color: #3E2723;
    /* Dark Espresso (Instead of harsh black) */
    --accent-color: #D35400;
    /* Burnt Orange / Rust (More depth) */
    --secondary-accent: #5D4037;
    --light-grey: #ECE8E1;
    /* Warm Grey */
    --white: #fff;

    --font-heading: 'Tenor Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

p {
    line-height: 1.7;
    color: #555;
}

/* Navbar */
.navbar {
    padding: 30px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
    top: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.logo .dot {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-nav {
    border: 2px solid var(--text-color);
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 30px;
}

.btn-nav:hover {
    background: var(--text-color);
    color: white;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Navbar space */
    background: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1548036328-c9fa89d128fa?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Stylish Overlay Stripe */
.hero-bg::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 0;
    width: 100px;
    height: 100%;
    background: #fff;
    transform: skewX(-10deg);
}

.hero-content {
    width: 55%;
    padding-left: 10%;
    z-index: 2;
    position: relative;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--light-grey);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.hero h1 em {
    font-style: normal;
    color: var(--accent-color);
    font-family: 'Syne', sans-serif;
    /* Ensure bold */
}

.hero p {
    font-size: 1.2rem;
    max-width: 450px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 18px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.5);
}

.btn-outline {
    border: 1px solid #ccc;
    padding: 18px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    border-color: var(--text-color);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Marquee / Strip */
.marquee-strip {
    background: var(--text-color);
    color: white;
    padding: 20px 0;
    overflow: hidden;
    transform: rotate(-2deg);
    margin: 50px -50px;
    width: 120%;
}

.marquee-content {
    display: flex;
    gap: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    white-space: nowrap;
    animation: slide 20s linear infinite;
}

.separator {
    color: var(--accent-color);
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.img-placeholder-lg {
    width: 100%;
    height: 600px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #ccc;
    background-image: url('https://images.unsplash.com/photo-1549488497-293e372588e4?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: top;
    border-radius: 20px;
}

.ph-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.ph-text h2 span {
    color: var(--accent-color);
    /* Hollow text effect optionally */
}

.ph-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

/* Collection Grid (Reused but styled up) */
.collection {
    padding: 120px 0;
    background: #F8F8F8;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.collection-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    transition: 0.4s;
    border: 1px solid transparent;
}

.product-card:hover {
    border-color: #eee;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
}

.product-img {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.img-placeholder-sm {
    background-image: url('https://images.unsplash.com/photo-1627123424574-1800390f4d5b?q=80&w=1974&auto=format&fit=crop');
    /* Wallet */
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
    text-indent: -9999px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.btn-link {
    color: var(--accent-color);
    font-weight: 700;
}

/* Contact / footer simple for now */
.contact {
    background: #111;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.section-title.white {
    color: white;
}

.btn-white {
    background: white;
    color: #111;
    padding: 15px 35px;
    display: inline-block;
    margin-top: 30px;
    font-weight: 700;
    border-radius: 30px;
}

/* Footer Styling */
footer {
    background: var(--bg-color);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 100px;
    /* Larger in footer */
    mix-blend-mode: multiply;
    margin-bottom: 10px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 400px;
        order: -1;
    }

    .hero-bg::before {
        display: none;
    }

    .hero-content {
        width: 100%;
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .nav-links,
    .btn-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}