/* Creative Monkey WordPress Plugin Styles */

.cm-website {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.cm-website * {
  box-sizing: border-box;
}

.cm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.cm-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 179, 8, 0.2);
}

.cm-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.cm-logo {
  font-size: 24px;
  font-weight: bold;
}

.cm-logo-white {
  color: #ffffff;
}

.cm-logo-gold {
  color: #eab308;
}

.cm-nav-menu {
  display: flex;
  gap: 32px;
}

.cm-nav-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cm-nav-link:hover {
  color: #eab308;
}

.cm-mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.cm-mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.cm-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, transparent 100%);
}

.cm-hero-content {
  text-align: center;
  max-width: 800px;
}

.cm-hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cm-text-white {
  color: #ffffff;
}

.cm-text-gold {
  color: #eab308;
}

.cm-hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: #d1d5db;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (min-width: 640px) {
  .cm-hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Buttons */
.cm-btn {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.cm-btn-primary {
  background: #eab308;
  color: #000000;
}

.cm-btn-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.cm-btn-outline {
  background: transparent;
  color: #eab308;
  border: 2px solid #eab308;
}

.cm-btn-outline:hover {
  background: #eab308;
  color: #000000;
}

.cm-btn-full {
  width: 100%;
}

.cm-btn-icon {
  transition: transform 0.3s ease;
}

.cm-btn:hover .cm-btn-icon {
  transform: translateX(4px);
}

/* Floating Elements */
.cm-floating-element {
  position: absolute;
  border: 1px solid rgba(234, 179, 8, 0.3);
  animation: float 6s ease-in-out infinite;
}

.cm-floating-1 {
  top: 80px;
  left: 40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation-delay: 0s;
}

.cm-floating-2 {
  bottom: 80px;
  right: 40px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: rgba(234, 179, 8, 0.2);
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Section Styles */
.cm-about,
.cm-services,
.cm-portfolio,
.cm-contact {
  padding: 80px 0;
}

.cm-about {
  background: linear-gradient(180deg, #000000 0%, #1f2937 100%);
}

.cm-services {
  background: #000000;
}

.cm-portfolio {
  background: linear-gradient(180deg, #000000 0%, #1f2937 100%);
}

.cm-contact {
  background: linear-gradient(180deg, #000000 0%, #1f2937 100%);
}

.cm-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.cm-section-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: bold;
  margin-bottom: 24px;
}

.cm-section-subtitle {
  font-size: 20px;
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.cm-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .cm-about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cm-about-title,
.cm-vision-title {
  font-size: 32px;
  font-weight: bold;
  color: #eab308;
  margin-bottom: 24px;
}

.cm-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cm-expertise-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 18px;
  color: #d1d5db;
}

.cm-expertise-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #eab308;
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
}

.cm-about-vision {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, transparent 100%);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.cm-vision-text {
  font-size: 18px;
  color: #d1d5db;
  line-height: 1.7;
}

/* Services Section */
.cm-services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .cm-services-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.cm-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cm-service-visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, #1f2937 100%);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.cm-service-visual:hover {
  transform: scale(1.05);
}

.cm-service-visual-3 {
  grid-column: 1 / -1;
  aspect-ratio: 8 / 5;
}

.cm-service-icon {
  font-size: 64px;
}

.cm-services-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cm-services-description {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cm-services-list {
  space-y: 24px;
}

.cm-service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.cm-service-icon-small {
  font-size: 24px;
  margin-right: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.cm-service-details h4 {
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
}

.cm-service-details p {
  color: #9ca3af;
  margin: 0;
}

/* Portfolio Section */
.cm-portfolio-project {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 1024px) {
  .cm-portfolio-project {
    grid-template-columns: 1fr 1fr;
  }
}

.cm-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cm-portfolio-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, #1f2937 100%);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 16px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.cm-portfolio-image:hover {
  transform: scale(1.05);
}

.cm-portfolio-image-3 {
  grid-column: 1 / -1;
  aspect-ratio: 8 / 5;
}

.cm-portfolio-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cm-portfolio-category {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.cm-portfolio-icon {
  font-size: 24px;
  margin-right: 12px;
}

.cm-portfolio-type {
  color: #eab308;
  font-size: 18px;
  font-weight: 600;
}

.cm-portfolio-description {
  font-size: 18px;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cm-portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cm-tag {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
  border: 1px solid rgba(234, 179, 8, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Contact Section */
.cm-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .cm-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cm-contact-form {
  background: #1f2937;
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 16px;
  padding: 32px;
}

.cm-contact-form-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 24px;
}

.cm-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cm-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .cm-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.cm-input,
.cm-textarea {
  background: #000000;
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 8px;
  padding: 16px;
  color: #ffffff;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.cm-input::placeholder,
.cm-textarea::placeholder {
  color: #9ca3af;
}

.cm-input:focus,
.cm-textarea:focus {
  outline: none;
  border-color: #eab308;
}

.cm-contact-info-title,
.cm-social-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 24px;
}

.cm-contact-details {
  margin-bottom: 32px;
}

.cm-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  color: #d1d5db;
}

.cm-contact-icon {
  font-size: 24px;
  margin-right: 16px;
  flex-shrink: 0;
}

.cm-social-links {
  display: flex;
  gap: 16px;
}

.cm-social-link {
  width: 48px;
  height: 48px;
  background: #eab308;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cm-social-link:hover {
  background: #d97706;
  transform: scale(1.1);
}

/* Footer */
.cm-footer {
  background: #000000;
  border-top: 1px solid rgba(234, 179, 8, 0.3);
  padding: 48px 0;
}

.cm-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .cm-footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cm-footer-logo {
  font-size: 24px;
  font-weight: bold;
}

.cm-footer-text {
  color: #9ca3af;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .cm-nav-menu {
    display: none;
  }

  .cm-mobile-menu-btn {
    display: flex;
  }

  .cm-hero-title {
    font-size: 48px;
  }

  .cm-section-title {
    font-size: 40px;
  }

  .cm-services-layout,
  .cm-portfolio-project,
  .cm-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation Classes */
.cm-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.cm-fade-in.cm-visible {
  opacity: 1;
  transform: translateY(0);
}

.cm-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.cm-slide-left.cm-visible {
  opacity: 1;
  transform: translateX(0);
}

.cm-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.cm-slide-right.cm-visible {
  opacity: 1;
  transform: translateX(0);
}
