/*
Theme Name: CHAMAK LTD Simple Theme
Version: 1.0
Author: CHAMAK LTD
Description: Custom boutique theme for Eastern Wear Brand.
*/

/* ===========================
      GLOBAL RESET & BASE
=========================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0;
}

p {
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* ===========================
        HEADER / NAV
=========================== */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 50px;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-header img {
    height: 48px;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.site-nav ul li {
    position: relative;
}

.site-nav ul li a {
    text-decoration: none;
    color: #333 !important;
    font-weight: 600;
    font-size: 16px;
    transition: 0.2s ease;
}

.site-nav ul li a:hover {
    color: #d03c6a !important;
}

/* Dropdown */
.site-nav ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 38px;
    left: 0;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    z-index: 9999;
}

.site-nav ul li:hover ul.sub-menu {
    display: block;
}

.site-nav ul li ul.sub-menu li {
    padding: 8px 0;
}

.site-nav ul li ul.sub-menu li a {
    color: #444;
    font-weight: 500;
}

/* ===========================
        HERO SECTION
=========================== */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 80px;
    box-sizing: border-box;
    transition: background-image 1s ease-in-out;
}

/* Hero text */
.hero-inner {
    position: absolute;
    top: 20%;
    left: 80px;
    z-index: 20;
    max-width: 560px;
    color: #222;
}

.hero-highlight {
    background: #ffebf3;
    color: #d03c6a;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 12px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-text p {
    margin-bottom: 18px;
}

/* Buttons */
.btn {
    background: #d03c6a;
    padding: 12px 26px;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-right: 15px;
    transition: 0.2s;
}

.btn:hover {
    background: #b42f55;
}

.btn-outline {
    border: 2px solid #d03c6a;
    background: transparent;
    color: #d03c6a !important;
}

.btn-outline:hover {
    background: #d03c6a;
    color: white !important;
}

/* Hero Side Card */
.hero-side-card {
    position: absolute;
    right: 60px;
    bottom: 40px;
    width: 280px;
    padding: 22px;
    background: rgba(255,255,255,0.75);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    z-index: 25;
}

/* ===========================
       SECTIONS & TITLES
=========================== */
.section {
    padding: 60px 80px;
}

.section-title {
    font-size: 34px;
    text-align: center;
    margin-bottom: 8px;
}

.section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* ===========================
         CATEGORY GRID
=========================== */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 30px;
}

.card {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    transition: all .3s ease;
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 12px;
}

/* ===========================
         FOOTER
=========================== */
.site-footer {
    background: #f7f7f7;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}

.site-footer p {
    color: #666;
    margin: 6px 0;
}

/* ===========================
       RESPONSIVE DESIGN
=========================== */
@media (max-width: 900px) {

    .hero {
        height: 70vh;
        padding: 0 30px;
    }

    .hero-inner {
        left: 30px;
        top: 25%;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-side-card {
        display: none;
    }
}
