/*
Theme Name: Edit Media
Theme URI: 
Author: Edit Media
Author URI: 
Description: Professional, cross‑browser theme for digital media, signage and print. Colors: #0095FF, #FF6A00, black, white.
Version: 6.3
License: GPL v2 or later
Text Domain: editmedia
*/

/* === CSS RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0a0c10;
  line-height: 1.5;
  color: #ffffff;
  padding: 1.5rem 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  background: #000000;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0,149,255,0.5);
  overflow: hidden;
  padding: 2rem 2rem 1.5rem 2rem;
  border: 1px solid #FF6A00;
}

/* === TYPOGRAPHY === */
h2, .section-title {
  color: #ffffff;
}

.section-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 4px solid #FF6A00;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.section-title i {
  color: #0095FF;
  font-size: clamp(1.8rem, 5vw, 2.2rem);
}

/* === NEW LOGO: E · PLAY · M + CURSOR + TEXT === */
.new-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  filter: drop-shadow(4px 4px 0 #0095FF) drop-shadow(8px 8px 0 #FF6A00);
  font-family: 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  padding: 10px 0;
}

.logo-e, .logo-m {
  font-size: 70px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.logo-e {
  transform: rotate(-3deg);
}

.logo-m {
  transform: rotate(3deg);
}

.play-blink {
  width: 0;
  height: 0;
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  animation: blink 1.5s infinite;
  margin: 0 5px;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* Text editor cursor (I‑beam) */
.cursor {
  width: 6px;
  height: 50px;
  background: white;
  position: relative;
  margin: 0 5px;
  animation: cursorBlink 1.2s step-end infinite;
}

.cursor::before,
.cursor::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 4px;
  background: white;
  left: -2px;
}

.cursor::before {
  top: -2px;
}

.cursor::after {
  bottom: -2px;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.logo-text {
  font-size: 42px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .logo-e, .logo-m {
    font-size: 50px;
  }
  .play-blink {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }
  .cursor {
    height: 40px;
  }
  .logo-text {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .new-logo {
    justify-content: center;
    gap: 8px;
  }
  .logo-e, .logo-m {
    font-size: 40px;
  }
  .play-blink {
    border-left-width: 14px;
    border-top-width: 8px;
    border-bottom-width: 8px;
  }
  .cursor {
    height: 30px;
  }
  .logo-text {
    font-size: 24px;
  }
}

/* === HEADER LAYOUT === */
.top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
  position: relative;
}

.tagline {
  font-size: clamp(1rem, 4vw, 1.3rem);
  font-weight: 500;
  color: #FF6A00;
  margin-top: 0.5rem;
  text-transform: uppercase;
  text-align: center;
  flex: 1;
}

/* === HAMBURGER MENU === */
.menu-toggle {
  display: none;
}

.hamburger {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: white;
  margin: 6px auto;
  transition: 0.3s;
  border-radius: 3px;
  box-shadow: 2px 2px 0 #0095FF;
}

.menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #0f1215;
  border: 2px solid #0095FF;
  border-radius: 1rem;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
  box-shadow: 8px 8px 0 #FF6A00;
  z-index: 10;
}

.menu-toggle:checked ~ .nav-menu {
  display: flex;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 0.5rem 1rem;
  transition: all 0.2s;
  text-transform: uppercase;
  border-left: 4px solid transparent;
}

.nav-menu a:hover {
  border-left-color: #FF6A00;
  color: #0095FF;
  background: rgba(255,106,0,0.1);
}

/* === SOCIAL ICONS IN HEADER === */
.header-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 0.5rem 0;
}

.header-social a {
  color: #0095FF;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
}

.header-social a:hover {
  color: #FF6A00;
  transform: scale(1.2);
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(145deg, #000000 0%, #0a1a2a 100%);
  border: 2px solid #0095FF;
  padding: clamp(2rem, 8vw, 4rem) clamp(1rem, 5vw, 2rem);
  border-radius: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.hero h2 {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 3px 3px 0 #0095FF, 6px 6px 0 #FF6A00;
}

.hero p {
  font-size: clamp(1rem, 4vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #cccccc;
}

.cta-button {
  background: #FF6A00;
  color: #000000;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 60px;
  font-size: clamp(1rem, 4vw, 1.3rem);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 0 #0095FF;
}

.cta-button:hover {
  background: #0095FF;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 0 #FF6A00;
}

/* === PARALLAX SERVICES === */
.services-parallax {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2rem;
  margin: 2rem 0;
  padding: 3rem 2rem;
  isolation: isolate;
  border: 1px solid #0095FF;
  background-attachment: scroll;
}

@media (min-width: 768px) {
  .services-parallax {
    background-attachment: fixed;
  }
}

.services-parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 0;
  border-radius: 2rem;
  pointer-events: none;
}

.services-parallax > * {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0 0;
}

.service-card {
  background: #0f1215;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 2px solid #FF6A00;
  text-align: center;
  box-shadow: 0 10px 0 #0095FF;
}

.service-card i {
  font-size: clamp(2rem, 8vw, 3rem);
  color: #0095FF;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: white;
}

.service-card p {
  color: #cccccc;
  font-size: 0.95rem;
}

/* === CAROUSEL === */
.portfolio-carousel {
  position: relative;
  margin: 2rem 0;
  padding: 0 40px;
}

.carousel-container {
  overflow: hidden;
  border-radius: 1.5rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 1rem);
  margin-right: 1.5rem;
  box-sizing: border-box;
}

.carousel-slide:last-child {
  margin-right: 0;
}

.slide-content {
  background: #0f1215;
  border: 2px solid #0095FF;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 8px 8px 0 #FF6A00;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.slide-image {
  width: 100%;
  height: 200px;
  background: #1a1e24;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 3px solid #FF6A00;
}

.slide-info {
  padding: 1.5rem;
  flex-grow: 1;
}

.slide-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0095FF;
  text-transform: uppercase;
}

.slide-info p {
  color: #cccccc;
  font-size: 0.9rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FF6A00;
  color: black;
  border: 2px solid #0095FF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  font-weight: bold;
}

@media (min-width: 768px) {
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}

.carousel-btn:hover {
  background: #0095FF;
  color: white;
  border-color: #FF6A00;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 0px;
}

.carousel-btn.next {
  right: 0px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 0;
  background: #333;
  border: 2px solid #0095FF;
  cursor: pointer;
  transition: all 0.2s;
}

.dot.active {
  background: #FF6A00;
  border-color: #FF6A00;
  transform: scale(1.3);
}

.dot:hover {
  background: #0095FF;
}

/* === ABOUT SECTION === */
.statement-row {
  display: flex;
  gap: 2rem;
  background: #0f1215;
  border-radius: 1.5rem;
  padding: 1.8rem 2rem;
  margin: 2rem 0 1.8rem 0;
  border: 2px solid #0095FF;
  box-shadow: 10px 10px 0 #FF6A00;
  flex-wrap: wrap;
}

.avatar-box {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
}

.avatar-icon {
  position: relative;
  width: 100px;
  height: 100px;
  background: black;
  border-radius: 50%;
  box-shadow: 0 10px 0 #0095FF;
  border: 3px solid #0095FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-icon, .megaphone-icon {
  position: absolute;
  font-size: 3rem;
  color: #FF6A00;
  text-shadow: 2px 2px 0 #0095FF;
}

.camera-icon {
  left: 10px;
  bottom: 10px;
  transform: rotate(-10deg);
  z-index: 1;
}

.megaphone-icon {
  right: 10px;
  top: 10px;
  transform: rotate(10deg);
  z-index: 2;
}

.personal-quote {
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-style: italic;
  color: #ffffff;
  background: #000000;
  padding: 1.2rem 1.8rem;
  border-radius: 1.5rem;
  box-shadow: 8px 8px 0 #0095FF;
  border-left: 8px solid #FF6A00;
  align-self: center;
  flex: 1;
  min-width: 250px;
}

/* === CONTACT FORM === */
.contact-form {
  background: #0f1215;
  border-radius: 1.5rem;
  padding: 2rem;
  margin: 2rem 0;
  border: 2px solid #FF6A00;
  box-shadow: 10px 10px 0 #0095FF;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #0095FF;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #0095FF;
  border-radius: 0.5rem;
  font-family: inherit;
  background: black;
  color: white;
  transition: border 0.2s, box-shadow 0.2s;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF6A00;
  box-shadow: 0 0 0 3px rgba(255,106,0,0.3);
}

.submit-btn {
  background: #0095FF;
  color: black;
  border: none;
  padding: 1rem 2rem;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 0 #FF6A00;
  width: 100%;
}

@media (min-width: 480px) {
  .submit-btn {
    width: auto;
  }
}

.submit-btn:hover {
  background: #FF6A00;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 10px 0 #0095FF;
}

/* === FOOTER === */
.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-social a {
  color: #0095FF;
  font-size: clamp(1.5rem, 6vw, 2rem);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-social a:hover {
  color: #FF6A00;
  transform: scale(1.2) rotate(5deg);
}

.footer-note {
  margin-top: 2rem;
  background: #0f1215;
  border-radius: 2rem;
  padding: 2rem;
  border: 2px solid #0095FF;
  text-align: center;
}

/* === RESPONSIVE OVERRIDES === */
@media (max-width: 900px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }
  .portfolio-carousel {
    padding: 0 30px;
  }
  .services-parallax {
    padding: 2rem 1rem;
  }
  .statement-row {
    flex-direction: column;
  }
  .personal-quote {
    border-left-width: 4px;
  }
} margin-bottom: 0.3rem;
  color: #0095FF;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #0095FF;
  border-radius: 0.5rem;
  font-family: inherit;
  background: black;
  color: white;
  transition: border 0.2s, box-shadow 0.2s;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF6A00;
  box-shadow: 0 0 0 3px rgba(255,106,0,0.3);
}

.submit-btn {
  background: #0095FF;
  color: black;
  border: none;
  padding: 1rem 2rem;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 0 #FF6A00;
  width: 100%;
}

@media (min-width: 480px) {
  .submit-btn {
    width: auto;
  }
}

.submit-btn:hover {
  background: #FF6A00;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 10px 0 #0095FF;
}

/* === FOOTER === */
.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-social a {
  color: #0095FF;
  font-size: clamp(1.5rem, 6vw, 2rem);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-social a:hover {
  color: #FF6A00;
  transform: scale(1.2) rotate(5deg);
}

.footer-note {
  margin-top: 2rem;
  background: #0f1215;
  border-radius: 2rem;
  padding: 2rem;
  border: 2px solid #0095FF;
  text-align: center;
}

/* === RESPONSIVE OVERRIDES === */
@media (max-width: 900px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }
  .portfolio-carousel {
    padding: 0 30px;
  }
  .services-parallax {
    padding: 2rem 1rem;
  }
  .statement-row {
    flex-direction: column;
  }
  .personal-quote {
    border-left-width: 4px;
  }
}