/*
Theme Name: Farida Fashion
Author: Farida Fashion
Description: Bold red/white fashion e-commerce theme with hero, welcome, service, project, vision/mission, portfolio, team, shop, and contact sections. All photos, text, and products are editable from the WordPress admin — nothing in the layout needs code changes.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: farida-fashion
*/

:root {
  --red: #8b0a0a;
  --red-deep: #6e0808;
  --red-bright: #b91e1e;
  --white: #ffffff;
  --font-display: 'Anton', 'Arial Black', sans-serif;
  --font-body: 'Jost', Arial, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

/* Header */
.site-header { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.site-header .brand { font-family: var(--font-display); font-size: 20px; letter-spacing: .04em; }
.site-header nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.site-header nav a { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }

/* Hero */
.hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; padding: 60px 0; }
.hero-text { position: relative; }
.hero-text .eyebrow { font-size: 15px; margin-bottom: 20px; }
.hero-text h1 {
  font-family: var(--font-display); font-size: clamp(60px, 9vw, 130px);
  line-height: .9; margin: 0; letter-spacing: -.01em;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; max-height: 620px; }

/* Sections */
.section { padding: 80px 0; }
.section h2 { font-family: var(--font-display); font-size: clamp(30px, 4.5vw, 54px); line-height: 1.05; margin: 0 0 20px; text-transform: uppercase; }

/* Welcome */
.welcome-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.welcome-grid p { max-width: 420px; opacity: .9; }

/* Service */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.service-year { font-family: var(--font-display); font-size: 60px; }
.service-list { list-style: none; margin: 0; padding: 0; }
.service-list li { padding-left: 20px; position: relative; margin-bottom: 24px; opacity: .9; }
.service-list li::before { content: "•"; position: absolute; left: 0; }
.service-bottom { display: flex; align-items: center; gap: 24px; margin-top: 30px; }
.service-bottom img { width: 130px; height: 130px; object-fit: cover; border-radius: 4px; }

/* Project */
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.project-item { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 30px; }
.project-item .step { font-family: var(--font-display); font-style: italic; font-size: 46px; }
.project-item p { opacity: .9; }

/* Vision / Mission (alternating) */
.vm-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; margin-bottom: 24px; }
.vm-grid.reverse { grid-template-columns: 1.2fr .8fr; }
.vm-grid.reverse .vm-text { order: 1; }
.vm-grid.reverse .vm-photo { order: 2; }
.vm-text h4 { margin: 20px 0 10px; }
.vm-text p { opacity: .9; max-width: 460px; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 20px; align-items: start; }
.portfolio-grid img { border-radius: 4px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card img { border-radius: 4px; margin-bottom: 14px; }
.team-card .name { font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

/* Shop / Products */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: rgba(255,255,255,.06); border-radius: 8px; overflow: hidden; transition: transform .2s; }
.product-card:hover { transform: translateY(-4px); }
.product-card .thumb { aspect-ratio: 1; overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .thumb-empty { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 12px; opacity: .6; }
.product-card .body { padding: 16px; }
.product-card .name { font-weight: 700; margin-bottom: 6px; }
.product-card .price { opacity: .85; font-size: 14px; margin-bottom: 10px; }
.buy-btn { display: inline-block; padding: 8px 18px; border: 1px solid #fff; border-radius: 999px; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.buy-btn:hover { background: #fff; color: var(--red); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-info .label { opacity: .75; font-size: 13px; }
.contact-info .value { font-size: 17px; margin-top: 4px; }
.contact-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-photos img { border-radius: 4px; }

/* Footer */
.site-footer { background: var(--red-deep); padding: 60px 0 30px; }
.site-footer h2 { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); margin: 0 0 20px; }
.site-footer .foot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.site-footer .foot-grid p { opacity: .85; max-width: 420px; }
.site-footer .credit { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); font-size: 13px; opacity: .7; }

@media (max-width: 900px) {
  .hero, .welcome-grid, .service-grid, .project-grid, .vm-grid, .vm-grid.reverse,
  .team-grid, .shop-grid, .contact-grid, .contact-info, .foot-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .site-header nav { display: none; }
}
