/*
Theme Name: Volo Design Studio
Theme URI: https://yoursite.com
Description: A premium design studio theme with full-screen background slider
Version: 1.0.0
Author: Your Name
Author URI: https://yoursite.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: premium-design-studio
Domain Path: /languages
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --primary: #F8EE62;
  --secondary: #D2C8C8;
  --white: #ffffff;
  --dark: #000000;
  --dark-bg: #1a1a1a;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.3s ease;
  --grid-gap: 16px;
  --container-max-width: 1200px;
  --grid-gap: 24px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--white);
  background-color: var(--dark);
  line-height: 1.6;
  overflow: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,h2,h4,h5,h6{
  font-weight: 700;
}

/* ========================================
   GRID SYSTEM (Native CSS Grid)
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

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

.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.col-span-4 { grid-column: span 4; }
.col-span-6 { grid-column: span 6; }
.col-span-12 { grid-column: span 12; }

.gap-0 { gap: 0; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* ========================================
   FLEXBOX UTILITIES
   ======================================== */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.flex-1 { flex: 1; }
.flex-grow { flex-grow: 1; }
.basis-25 {
    flex-basis: 25%;
}

.basis-50 {
    flex-basis: 50%;
}

.basis-75 {
    flex-basis: 75%;
}
.page-wrapper {
    display: flex;
    align-items: center;      /* Vertical center */
    justify-content: center;  /* Horizontal center */
    min-height: 100vh;
}
.content-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

/* ========================================
   SPACING UTILITIES
   ======================================== */
.p-0 { padding: 0; }
.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.p-5 { padding: 40px; }

.px-1 { padding-left: 8px; padding-right: 8px; }
.px-2 { padding-left: 16px; padding-right: 16px; }
.px-3 { padding-left: 24px; padding-right: 24px; }
.px-4 { padding-left: 32px; padding-right: 32px; }

.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }

.m-0 { margin: 0; }
.m-1 { margin: 8px; }
.m-2 { margin: 16px; }
.m-3 { margin: 24px; }
.m-4 { margin: 32px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* ========================================
   TEXT UTILITIES
   ======================================== */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-dark { color: var(--dark); }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.75; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

/* ========================================
   BACKGROUND & BORDERS
   ======================================== */
.bg-white { background-color: var(--white); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-dark { background-color: var(--dark); }

.rounded { border-radius: 4px; }
.rounded-md { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid var(--secondary); }
.border-primary { border: 1px solid var(--primary); }
.border-white { border: 1px solid var(--white); }

/* ========================================
   DISPLAY & VISIBILITY
   ======================================== */
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* ========================================
   POSITION & SIZING
   ======================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.max-w-full { max-width: 100%; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* padding: 20px 0; */
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-header-container{
  width: 100%;
    padding-right: 38px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  background-color: var(--primary);
  padding: 18px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  text-align: center;
}

.inner-logo{display: flex;}

.inner-logo svg{
  width: 12vh;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-item a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

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

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

.nav-item a.active {
  color: var(--white);
}

.search-toggle {
  background: none;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Button container */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
}

/* Hamburger lines */
.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Active state → turn into X */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.no-bg-main{
  margin-top: 82px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slider-item.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 60px;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-subtitle::before {
  content: '';
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  display: block;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-description {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 450px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(248, 238, 98, 0.2);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--dark);
  border: 1px solid var(--secondary);
}

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

/* Navigation links */
.nav-menu a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 5px;
}

/* Animated underline */
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #F8EE62;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* Hover effect */
.nav-menu a:hover::after {
    width: 100%;
}

/* Active page effect */
.current-menu-item > a::after,
.current_page_item > a::after,
.current-menu-ancestor > a::after {
    width: 100%;
}

/* ========================================
   SLIDER INDICATORS
   ======================================== */
.slider-indicators {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.indicator {
  width: 40px;
  height: 3px;
  background-color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--primary);
  width: 60px;
}
/* ========================================
   Service DESIGN
   ======================================== */
.item-service{
  background: url('https://volo.work/wp-content/uploads/2026/05/overlay-image-service.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  padding: 30px;
  grid-template-rows: auto auto 1fr;
}
.inner-third-item{align-self: end;}

.item-service h2{color: var(--primary);}
.item-service ul{list-style-type: square;}
.item-service ul li::marker {
    color: var(--primary);
}
/* ========================================
   Portfolio DESIGN
   ======================================== */
.item-branding{
  background: url('https://volo.work/wp-content/uploads/2026/06/branding-thumb.png');
}
.item-web-and-digital{
  background: url('https://volo.work/wp-content/uploads/2026/06/Web-and-Digital-thumb.png');
}
.item-print{
  background: url('https://volo.work/wp-content/uploads/2026/06/Print-and-Packaging-thumb.png');
}
.portfolio-container{
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 80vh;
  padding: 30px;
  grid-template-rows: auto auto 1fr;
}
.text-portfolio-h{margin-left: 8%;}

.portfolio-container h2{
  line-height: 1.2;
  transition: var(--transition);
}

.portfolio-container h2:hover{
    color: #000;
    background-color: var(--primary);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 27px 1px rgba(0,0,0,0.43);
-webkit-box-shadow: 0px 0px 27px 1px rgba(0,0,0,0.43);
-moz-box-shadow: 0px 0px 27px 1px rgba(0,0,0,0.43);
}
/* ========================================
   About DESIGN
   ======================================== */
.about-left{
  background: url('https://volo.work/wp-content/uploads/2026/06/about-us-1.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  padding: 30px;
  grid-template-rows: auto auto 1fr;
}
.inner-left-about{
  padding: 30px;
  background-color: rgba(248, 238, 98, 0.5);
  height: 50vh;
}
/* ========================================
   Contact DESIGN
   ======================================== */
.page-id-55{
background: url('https://volo.work/wp-content/uploads/2026/05/home-hero-grey.png') !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.site-footer{display: none;}
.contact-page-content h1{
  font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.contact-page-content p{
  color: var(--secondary);
  margin-bottom: 20px;
}
.contact-details{list-style: none;}
.contact-details li{
  display: flex;
  align-items: center;
  color: var(--primary);
}
.contact-details li img{
  margin-right: 14px;
}
.contact-page-content span{
color:var(--primary);
}
.contact-form-main{
      padding: 30px;
    border: 3px solid rgba(63, 63, 63, 0.84);
    border-radius: 5px;
    background-color: rgba(44, 43, 43, 0.5);
}
.contact-form-main label{
  font-family: var(--font-family);
  color: var(--secondary);
  font-weight: 800;
  text-transform: uppercase;
}
.wpcf7-text, .wpcf7-email{
  color: #ffffff;
  padding: 12px;
  border: 2px solid rgba(63, 63, 63, 0.84);
  background-color: rgba(44, 43, 43, 0.5);
  min-width: 100%;
  margin-bottom: 20px;
}
.wpcf7-email{margin-bottom: 0 !important;}
.wpcf7-textarea {
  color: #ffffff;
  padding: 12px 13px;
  resize: none;
  border: 2px solid rgba(63, 63, 63, 0.84);
  background-color: rgba(44, 43, 43, 0.5);
  min-width: 100%;
  margin-bottom: 20px;
}
.wpcf7-submit{
  background-color: var(--primary);
  border: 0;
  width: 100%;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    transition: var(--transition);
}
.wpcf7-submit:hover{
  background-color: #000;
  color: var(--primary);
}
.wpcf7 form .wpcf7-response-output{
  font-size: 12px;
      border: 0 !important;
}
.wpcf7-not-valid-tip{
  font-size: 12px;
  text-align: center;
}
.wpcf7-text .wpcf7-not-valid-tip, .wpcf7-email .wpcf7-not-valid-tip{
  margin-top: -10px;
}
.contact-form-main p{margin: 0 !important;}
.wpcf7-spinner{
  display: flex;
      margin: 0 auto;
      top: 15px;
    align-items: center;
    justify-content: center;
}
/* ========================================
   GRID SYSTEM (MOBILE FIRST)
   ======================================== */
@media (min-width: 576px) {
  .sm-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Medium devices */
@media (min-width: 768px) {
  .md-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Large devices */
@media (min-width: 1024px) {
  .lg-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
}

@media (max-width: 768px) {
  .col-span-2,
  .col-span-3,
  .col-span-4,
  .col-span-6 {
    grid-column: span 12;
  }
}

/* Mobile flex fix */
@media (max-width: 768px) {
  .flex {
    flex-direction: column;
  }

  .basis-25,
  .basis-50,
  .basis-75 {
    flex-basis: 100%;
  }
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  body{overflow: visible !important;}
  .content-container {
    flex-direction: column;
  }
  .menu-toggle {
    display: flex;
    z-index: 1000;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    z-index: 99;
    transition: left 0.3s ease;
  }

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

  .nav-menu .nav-item a {
    font-size: 24px;
    color: var(--white);
  }

  .nav-menu .nav-item a::after {
    display: none;
  }

  .nav-menu .nav-item a.active {
    color: var(--primary);
  }

  .hero-content {
    padding: 40px 20px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .slider-indicators {
    left: 20px;
    bottom: 20px;
  }

  .logo {
    min-width: 90px;
    padding: 12px 24px;
    font-size: 18px;
  }

  .nav-menu {
    gap: 32px;
  }

  .nav-item a {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero-description {
    font-size: 13px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .indicator {
    width: 30px;
  }

  .indicator.active {
    width: 50px;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  body {
    background: white;
    color: black;
  }
}
