/*
Theme Name: Arun Nayak Digital Creative Studio
Theme URI: https://arunnayak.co.in
Author: Arun Nayak
Author URI: https://arunnayak.co.in
Description: A custom one-page style portfolio theme for Arun Nayak — Interior Designer, Website Designer & Digital Marketing Expert. Built to match the client-approved homepage design exactly, with placeholder images ready to be swapped for real photos via the WordPress Media Library.
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: arun-nayak
*/

/* -----------------------------------------------------------
   0. FONTS & VARIABLES
----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=Dancing+Script:wght@600;700&display=swap');

:root{
  --orange:#F15A29;
  --orange-dark:#D9481C;
  --yellow:#FFC839;
  --dark:#1A1A1A;
  --gray-text:#6B6B6B;
  --light-bg:#FAF9F7;
  --border:#ECE9E4;
  --black-bg:#141414;
  --white:#ffffff;
  --radius:10px;
  --container:1200px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter', sans-serif;
  color:var(--dark);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,h5{
  font-family:'Poppins', sans-serif;
  margin:0 0 .5em;
  line-height:1.25;
  color:var(--dark);
}
p{ margin:0 0 1em; color:var(--gray-text); }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}
.section{ padding:90px 0; }
.section.tight{ padding:60px 0; }
.bg-light{ background:var(--light-bg); }
.bg-dark{ background:var(--black-bg); color:#fff; }

.eyebrow{
  display:block;
  text-align:center;
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gray-text);
  margin-bottom:10px;
}
.section-title{
  text-align:center;
  font-size:34px;
  font-weight:700;
  margin-bottom:48px;
}
.section-title .accent{ color:var(--orange); }
.section-head{ margin-bottom:48px; }

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  border-radius:6px;
  font-weight:600;
  font-size:15px;
  border:2px solid transparent;
  transition:all .2s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--orange); color:#fff; }
.btn-primary:hover{ background:var(--orange-dark); }
.btn-outline{ background:transparent; color:var(--dark); border-color:#DEDBD6; }
.btn-outline:hover{ border-color:var(--dark); }
.btn-white{ background:#fff; color:var(--orange); }
.btn-white:hover{ background:#f2f2f2; }
.btn-sm{ padding:9px 18px; font-size:14px; }

/* -----------------------------------------------------------
   1. HEADER / NAV
----------------------------------------------------------- */
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(6px);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  max-width:var(--container);
  margin:0 auto;
}
.site-logo{ display:flex; flex-direction:column; line-height:1; }
.site-logo .logo-script{
  font-family:'Dancing Script', cursive;
  font-size:30px;
  font-weight:700;
  background:linear-gradient(90deg,var(--orange-dark),var(--orange) 55%,var(--yellow));
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.site-logo .logo-sub{
  font-size:9px;
  letter-spacing:3px;
  color:var(--gray-text);
  margin-top:2px;
  font-weight:600;
}
.main-nav ul{ display:flex; gap:34px; align-items:center; }
.main-nav a{
  font-size:15px;
  font-weight:500;
  color:var(--dark);
  padding-bottom:4px;
  border-bottom:2px solid transparent;
}
.main-nav a:hover,
.main-nav .current-menu-item > a{
  color:var(--orange);
  border-bottom-color:var(--orange);
}
.nav-right{ display:flex; align-items:center; gap:22px; }
.nav-toggle{
  display:none;
  background:none;
  border:none;
  flex-direction:column;
  gap:5px;
  padding:6px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--dark); display:block; }

/* -----------------------------------------------------------
   2. HERO
----------------------------------------------------------- */
.hero{ padding:70px 0 60px; }
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:50px;
  align-items:center;
}
.hero-eyebrow{
  color:var(--orange);
  font-weight:700;
  font-size:15px;
  margin-bottom:6px;
}
.hero h1{
  font-size:52px;
  font-weight:800;
  margin-bottom:14px;
}
.hero h1 .black{ color:var(--dark); }
.hero h1 .orange{ color:var(--orange); }
.hero-roles{
  font-size:18px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:18px;
}
.hero-roles .dot{ color:var(--orange); margin:0 8px; }
.hero-desc{ font-size:16px; max-width:520px; margin-bottom:28px; }
.hero-ctas{ display:flex; gap:16px; margin-bottom:34px; }
.hero-proof{ display:flex; align-items:center; gap:16px; }
.avatar-stack{ display:flex; }
.avatar-stack img{
  width:38px; height:38px; border-radius:50%;
  border:2px solid #fff;
  margin-left:-12px;
  object-fit:cover;
  background:#ddd;
}
.avatar-stack img:first-child{ margin-left:0; }
.proof-text{ font-size:13px; color:var(--gray-text); line-height:1.3; }
.stars{ color:var(--orange); letter-spacing:2px; font-size:14px; }

.hero-media{ position:relative; }
.hero-photo-frame{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(160deg,#e9e6e0,#d8d4cc);
  aspect-ratio:4/4.6;
  max-width:430px;
  margin-left:auto;
}
.hero-photo-frame img{ width:100%; height:100%; object-fit:cover; }
.hero-dots{
  position:absolute;
  top:-18px; right:-10px;
  width:90px; height:90px;
  background-image:radial-gradient(var(--orange) 1.6px, transparent 1.6px);
  background-size:10px 10px;
  opacity:.35;
  z-index:-1;
}
.floating-cards{
  position:absolute;
  right:-18px;
  top:20px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:3;
}
.float-card{
  background:#fff;
  border-radius:12px;
  box-shadow:0 12px 30px rgba(0,0,0,.10);
  padding:12px 18px;
  display:flex;
  align-items:center;
  gap:12px;
  width:210px;
}
.float-card .fc-icon{
  width:38px; height:38px;
  border-radius:10px;
  background:var(--orange);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  font-size:18px;
}
.float-card .fc-title{ font-size:14px; font-weight:700; }
.float-card .fc-sub{ font-size:12px; color:var(--gray-text); }

/* -----------------------------------------------------------
   3. TRUSTED BY STRIP
----------------------------------------------------------- */
.trusted{ padding:36px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.trusted-label{
  text-align:center;
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  color:var(--gray-text);
  margin-bottom:22px;
}
.logo-row{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:46px;
}
.logo-row .brand{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:20px;
  color:#8a8a8a;
  opacity:.75;
  white-space:nowrap;
}

/* -----------------------------------------------------------
   4. SERVICES
----------------------------------------------------------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px 28px;
  transition:box-shadow .2s ease, transform .2s ease;
}
.service-card:hover{ box-shadow:0 16px 34px rgba(0,0,0,.08); transform:translateY(-4px); }
.service-icon{
  width:52px; height:52px;
  border-radius:12px;
  background:var(--orange);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:24px;
  margin-bottom:20px;
}
.service-card h3{ font-size:20px; margin-bottom:14px; }
.service-card ul{ margin-bottom:18px; }
.service-card li{
  font-size:14px;
  color:var(--gray-text);
  padding:5px 0;
  display:flex;
  align-items:center;
  gap:8px;
}
.service-card li::before{ content:"✓"; color:var(--orange); font-weight:700; }
.explore-link{ color:var(--orange); font-weight:600; font-size:14px; }
.explore-link:hover{ text-decoration:underline; }

/* -----------------------------------------------------------
   5. PORTFOLIO / RECENT PROJECTS
----------------------------------------------------------- */
.filter-tabs{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:40px;
  flex-wrap:wrap;
}
.filter-tabs button{
  background:transparent;
  border:1px solid var(--border);
  padding:9px 20px;
  border-radius:24px;
  font-size:14px;
  font-weight:600;
  color:var(--gray-text);
}
.filter-tabs button.active{ background:var(--orange); color:#fff; border-color:var(--orange); }

.projects-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.project-card{ border-radius:var(--radius); overflow:hidden; background:#f2f0ec; }
.project-thumb{ aspect-ratio:1/0.82; overflow:hidden; }
.project-thumb img{ width:100%; height:100%; object-fit:cover; }
.project-info{ padding:14px 4px 0; }
.project-info h4{ font-size:15px; margin-bottom:2px; }
.project-info span{ font-size:13px; color:var(--gray-text); }
.projects-cta{ text-align:center; margin-top:44px; }

/* -----------------------------------------------------------
   6. ABOUT ME
----------------------------------------------------------- */
.about-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:60px;
  align-items:center;
}
.about-photo-frame{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(160deg,#e9e6e0,#d8d4cc);
  aspect-ratio:4/4.4;
}
.about-photo-frame img{ width:100%; height:100%; object-fit:cover; }
.about-copy h2{ font-size:32px; margin-bottom:14px; }
.about-copy p{ max-width:560px; margin-bottom:26px; }
.about-stats{
  display:grid;
  grid-template-columns:repeat(4,auto);
  gap:26px;
  margin-bottom:26px;
}
.about-stat{ display:flex; align-items:flex-start; gap:10px; }
.about-stat .icon{ color:var(--orange); font-size:20px; }
.about-stat strong{ display:block; font-size:20px; color:var(--dark); }
.about-stat span{ font-size:12px; color:var(--gray-text); }

/* -----------------------------------------------------------
   7. STATS STRIP (dark)
----------------------------------------------------------- */
.stats-strip{
  background:var(--black-bg);
  color:#fff;
  padding:34px 0;
}
.stats-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
}
.stats-row .stat-item{ border-right:1px solid rgba(255,255,255,.12); }
.stats-row .stat-item:last-child{ border-right:none; }
.stats-row strong{
  display:block;
  font-size:26px;
  color:var(--orange);
  font-weight:800;
}
.stats-row span{ font-size:13px; color:#c9c9c9; }

/* -----------------------------------------------------------
   8. TESTIMONIALS + PROCESS
----------------------------------------------------------- */
.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}
.split-grid .section-title{ text-align:left; margin-bottom:28px; font-size:26px; }
.testimonial-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
}
.testimonial-quote{ font-size:26px; color:var(--orange); line-height:1; margin-bottom:10px; }
.testimonial-card p{ color:var(--dark); font-size:15px; margin-bottom:18px; }
.testimonial-author{ display:flex; align-items:center; gap:12px; }
.testimonial-author img{ width:44px; height:44px; border-radius:50%; object-fit:cover; background:#ddd; }
.testimonial-author strong{ display:block; font-size:14px; }
.testimonial-author span{ font-size:12px; color:var(--gray-text); }
.testimonial-dots{ display:flex; gap:6px; margin-top:18px; }
.testimonial-dots i{ width:7px; height:7px; border-radius:50%; background:#ddd; display:block; }
.testimonial-dots i.active{ background:var(--orange); }

.process-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:6px;
}
.process-step{ text-align:center; width:80px; }
.process-icon{
  width:56px; height:56px;
  border-radius:14px;
  background:var(--light-bg);
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
  margin:0 auto 10px;
  color:var(--orange);
}
.process-step strong{ display:block; font-size:13px; }
.process-step span{ font-size:11px; color:var(--gray-text); }
.process-arrow{ color:#d8d4cc; font-size:18px; margin-top:18px; }

/* -----------------------------------------------------------
   9. CTA BANNER
----------------------------------------------------------- */
.cta-banner{
  background:linear-gradient(100deg,var(--orange),var(--orange-dark));
  border-radius:16px;
  padding:40px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  color:#fff;
}
.cta-left{ display:flex; align-items:center; gap:20px; }
.cta-rocket{
  width:56px; height:56px;
  background:#fff;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:24px;
  flex-shrink:0;
}
.cta-banner h3{ color:#fff; font-size:24px; margin-bottom:4px; }
.cta-banner p{ color:rgba(255,255,255,.9); margin:0; }

/* -----------------------------------------------------------
   10. FOOTER
----------------------------------------------------------- */
.site-footer{ background:var(--black-bg); color:#bdbdbd; padding-top:70px; }
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-logo .logo-script{ font-size:26px; }
.footer-about p{ font-size:14px; margin:14px 0 18px; color:#9a9a9a; }
.social-row{ display:flex; gap:12px; }
.social-row a{
  width:36px; height:36px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
}
.social-row a:hover{ background:var(--orange); border-color:var(--orange); }
.footer-col h4{ color:#fff; font-size:15px; margin-bottom:18px; }
.footer-col ul li{ margin-bottom:11px; font-size:14px; }
.footer-col ul li a:hover{ color:var(--orange); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; margin-bottom:14px; }
.footer-contact .fi{ color:var(--orange); }
.footer-bottom{
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:#8a8a8a;
}
.footer-bottom a:hover{ color:#fff; }

/* -----------------------------------------------------------
   11. GENERIC PAGE TEMPLATE (About/Services/Portfolio/Blog/Contact placeholders)
----------------------------------------------------------- */
.page-hero{
  background:var(--light-bg);
  padding:70px 0;
  text-align:center;
  border-bottom:1px solid var(--border);
}
.page-hero h1{ font-size:38px; margin-bottom:8px; }
.page-hero .crumb{ color:var(--orange); font-weight:600; font-size:14px; }
.page-content{ padding:70px 0; }
.page-content .entry-content{ max-width:800px; margin:0 auto; font-size:16px; }
.page-content .entry-content h2{ margin-top:1.4em; }

/* -----------------------------------------------------------
   12. RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 1080px){
  .services-grid{ grid-template-columns:repeat(3,1fr); }
  .projects-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-media{ order:-1; max-width:380px; margin:0 auto; }
  .about-grid{ grid-template-columns:1fr; }
  .split-grid{ grid-template-columns:1fr; }
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .stats-row{ grid-template-columns:repeat(2,1fr); gap:20px; }
  .stats-row .stat-item{ border-right:none; border-bottom:1px solid rgba(255,255,255,.12); padding-bottom:14px; }
}
@media (max-width: 640px){
  .hero h1{ font-size:36px; }
  .services-grid{ grid-template-columns:1fr; }
  .projects-grid{ grid-template-columns:1fr 1fr; }
  .about-stats{ grid-template-columns:repeat(2,1fr); }
  .cta-banner{ flex-direction:column; text-align:center; }
  .cta-left{ flex-direction:column; }
  .footer-grid{ grid-template-columns:1fr; }
  .process-row{ justify-content:center; }
  .floating-cards{ display:none; }
}

/* Mobile nav open state */
.main-nav.open{
  display:flex;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:#fff;
  flex-direction:column;
  padding:20px 24px;
  border-bottom:1px solid var(--border);
}
.main-nav.open ul{ flex-direction:column; gap:16px; width:100%; }
