/*
Theme Name: Flujo TV
Theme URI: https://mediumorchid-gorilla-931816.hostingersite.com/
Author: Flujo TV Team
Author URI: https://mediumorchid-gorilla-931816.hostingersite.com/
Description: A modern WordPress theme for Flujo TV streaming service.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flujotv
Tags: streaming, entertainment, responsive, modern, multimedia
*/

/* Flujo TV Streaming Service Styles */
:root {
  --primary-color: #FF5500;
  --secondary-color: #FF8C00;
  --dark-color: #1f1c2c;
  --dark-gradient-1: #1f1c2c;
  --dark-gradient-2: #2d2641;
  --light-color: #F5F5F5;
  --accent-color: #FF3300;
  --text-color: #333333;
  --glow-color: rgba(255, 85, 0, 0.5);
  --pricing-badge-color: #FF5500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--dark-gradient-1), var(--dark-gradient-2));
  background-attachment: fixed;
  color: var(--light-color);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff5500' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

a {
  text-decoration: none;
  color: var(--light-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

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

/* Header Styles */
.header {
  background: linear-gradient(to right, rgba(31, 28, 44, 0.95), rgba(45, 38, 65, 0.95));
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 85, 0, 0.2);
  height: auto;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  filter: drop-shadow(0 0 8px var(--glow-color));
}

.logo h1 {
  margin-left: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.nav ul {
  display: flex;
  list-style: none;
}

.nav ul li {
  margin-left: 25px;
}

.nav ul li a {
  font-weight: 500;
  position: relative;
}

.nav ul li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav ul li a:hover:after {
  width: 100%;
}

.cta-button {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px var(--glow-color);
}

.cta-button:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.whatsapp-link {
  text-decoration: none;
}

.hero .whatsapp-link {
  display: inline-block;
}

.hero .whatsapp-link .cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.pricing-card .whatsapp-link {
  display: block;
  width: 100%;
  margin-top: auto;
}

.pricing-card .whatsapp-link .cta-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-link .cta-button .fa-whatsapp {
  margin-left: 8px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(31, 28, 44, 0.9), rgba(45, 38, 65, 0.95)), 
              url('https://cdn.pixabay.com/photo/2019/04/24/21/55/cinema-4153289_1280.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 85, 0, 0.1) 0%, rgba(255, 85, 0, 0) 70%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

/* Features Section */
.features {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title p {
  max-width: 600px;
  margin: 20px auto 0;
  color: #c0c0c0;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(50, 50, 50, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 85, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-card p {
  color: #c0c0c0;
}

/* Popular Shows Section */
.popular-shows {
  padding: 80px 0;
  background: linear-gradient(45deg, rgba(31, 28, 44, 0.8), rgba(45, 38, 65, 0.8));
  position: relative;
}

.popular-shows::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff5500' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.show-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.show-card:hover {
  transform: scale(1.05);
}

.show-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  vertical-align: middle;
}

.show-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.show-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.show-info .meta {
  display: flex;
  font-size: 14px;
  color: #c0c0c0;
}

.show-info .meta span {
  margin-right: 15px;
}

.show-card .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 85, 0, 0.7);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.show-card:hover .play-button {
  opacity: 1;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
}

.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

@media (min-width: 1280px) {
  .pricing-container {
    flex-wrap: nowrap;
  }
}

.pricing-card {
  background: rgba(50, 50, 50, 0.2);
  border-radius: 15px;
  padding: 30px 20px;
  width: 250px;
  min-height: 450px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 85, 0, 0.2);
  position: relative;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular .popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.bonus-badge {
  background-color: var(--secondary-color);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin: 10px auto;
  display: inline-block;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-features-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.price span {
  font-size: 14px;
  font-weight: normal;
  color: #c0c0c0;
}

.pricing-features {
  list-style: none;
  margin: 20px 0 30px;
  padding: 0;
}

.pricing-features li {
  margin: 10px 0;
  color: #c0c0c0;
  font-size: 14px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(225deg, rgba(31, 28, 44, 0.8), rgba(45, 38, 65, 0.8));
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ff5500' fill-opacity='0.03'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Download Section */
.download {
  padding: 80px 0;
  background: linear-gradient(to right, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95)), url('https://cdn.pixabay.com/photo/2020/12/16/21/58/tv-5837826_640.jpg') center/cover no-repeat;
}

.download-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.download-card {
  background: rgba(50, 50, 50, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 85, 0, 0.2);
  width: 300px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.download-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.download-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.download-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.download-card p {
  color: #c0c0c0;
  margin-bottom: 20px;
  min-height: 50px;
}

.download-note {
  text-align: center;
  margin-top: 40px;
}

.download-note p {
  color: #c0c0c0;
  margin-bottom: 15px;
}

.testimonial {
  background: rgba(50, 50, 50, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 85, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.testimonial:last-child {
  margin-bottom: 0;
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  color: #c0c0c0;
  font-size: 14px;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: rgba(255, 85, 0, 0.2);
}

/* Blog Section */
.blog {
  padding: 80px 0;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: rgba(50, 50, 50, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 85, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  margin-bottom: 10px;
  font-size: 14px;
  color: #c0c0c0;
}

.blog-meta span {
  margin-right: 15px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-content p {
  color: #c0c0c0;
  margin-bottom: 15px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(rgba(31, 28, 44, 0.8), rgba(45, 38, 65, 0.8)), 
              url('https://cdn.pixabay.com/photo/2021/01/04/18/06/tv-5889145_1280.jpg') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.1) 0%, transparent 60%);
  animation: rotate 30s linear infinite;
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #c0c0c0;
}

/* Footer */
.footer {
  background: linear-gradient(to top, #14121e, #1f1c2c);
  padding: 60px 0 20px;
  position: relative;
  border-top: 1px solid rgba(255, 85, 0, 0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px var(--glow-color));
}

.footer-about p {
  color: #c0c0c0;
  margin: 15px 0;
}

.footer-links h3,
.footer-contact h3,
.footer-subscribe h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-subscribe h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #c0c0c0;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info {
  color: #c0c0c0;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
}

.subscribe-form {
  display: flex;
  margin-top: 20px;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.subscribe-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-media a:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  color: #c0c0c0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WordPress Compatible Classes */
.wp-block-image {
  margin-bottom: 1em;
}

.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.aligncenter {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1em;
}

.alignright {
  float: right;
  margin-left: 1em;
}

.wp-block-button__link {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wp-block-button__link:hover {
  background-color: var(--secondary-color);
  color: white;
}

.wp-block-quote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1em;
  margin-left: 0;
  font-style: italic;
}

/* WordPress Core Classes */
.sticky {
  position: relative;
  background: rgba(255, 85, 0, 0.05);
  padding: 20px;
  border-radius: 10px;
}

.sticky:before {
  content: 'Featured';
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-color);
  color: #fff;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 3px;
}

.bypostauthor {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 5px;
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5em;
}

.wp-caption img {
  display: block;
  margin: 0 auto;
}

.wp-caption-text {
  text-align: center;
  font-style: italic;
  color: #c0c0c0;
  margin-top: 0.5em;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.gallery-caption {
  display: block;
  font-size: 0.8em;
  color: #c0c0c0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero h2 {
    font-size: 36px;
  }
  
  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }

  .header-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .logo {
    width: 40%;
  }
  
  .logo img {
    height: 50px;
  }
  
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    order: 3;
  }
  
  .toggle-bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin: 2px 0;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
  }

  .overlay.active {
    display: block;
  }
  
  .nav {
    width: 100%;
    order: 4;
    display: none;
  }
  
  .nav.active {
    display: block;
  }
  
  .nav ul {
    flex-direction: column;
    margin-top: 15px;
  }
  
  .nav ul li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  
  .header .cta-button {
    order: 2;
    padding: 8px 15px;
    font-size: 14px;
  }
  
  .hero {
    height: auto;
    padding: 120px 0 60px;
  }
  
  .hero h2 {
    font-size: 28px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .feature-card,
  .blog-card,
  .pricing-card {
    width: 100%;
  }
}

/* WordPress Navigation Styles */
.menu-primary-container {
  margin: 0;
  padding: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  margin-left: 25px;
}

.nav-menu li a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-menu li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu li a:hover:after,
.nav-menu li.current-menu-item a:after,
.nav-menu li.current_page_item a:after {
  width: 100%;
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(31, 28, 44, 0.95);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
}

.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li {
  margin: 0;
  padding: 0;
  width: 100%;
}

.nav-menu .sub-menu li a {
  display: block;
  padding: 8px 15px;
  color: var(--light-color);
}

.nav-menu .sub-menu li a:hover {
  background: rgba(255, 85, 0, 0.1);
}

/* Pagination */
.pagination,
.navigation.pagination,
.woocommerce-pagination {
  display: flex;
  justify-content: center;
  margin: 40px 0 20px;
}

.pagination a,
.pagination span,
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  background: rgba(50, 50, 50, 0.2);
  color: var(--light-color);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pagination a:hover,
.page-numbers:hover {
  background: rgba(255, 85, 0, 0.2);
}

.pagination .current,
.page-numbers.current {
  background: var(--primary-color);
  color: white;
}

/* Comments */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.comment-list .comment {
  margin-bottom: 30px;
  background: rgba(50, 50, 50, 0.2);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 85, 0, 0.1);
}

.comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.comment-author img {
  border-radius: 50%;
  margin-right: 15px;
}

.comment-metadata {
  font-size: 14px;
  color: #c0c0c0;
  margin-bottom: 15px;
}

.comment-content p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.comment-reply-link {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(255, 85, 0, 0.1);
  border-radius: 20px;
  color: var(--primary-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.comment-reply-link:hover {
  background: rgba(255, 85, 0, 0.2);
}

.comment-form {
  margin-top: 40px;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
  color: #e0e0e0;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-color);
}

.comment-form input[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.comment-form input[type="submit"]:hover {
  background-color: var(--secondary-color);
}

/* Widget Styles */
.widget {
  margin-bottom: 30px;
  background: rgba(50, 50, 50, 0.2);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 85, 0, 0.1);
}

.widget-title {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.widget-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget ul li a {
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.widget ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* Search Widget */
.search-form {
  display: flex;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  padding: 10px;
  border-radius: 5px 0 0 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-color);
}

.search-submit {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* Animation for WordPress theme */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

/* WooCommerce compatibility */
.woocommerce ul.products li.product {
  background: rgba(50, 50, 50, 0.2);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 85, 0, 0.1);
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.woocommerce ul.products li.product .price {
  color: var(--primary-color);
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
  background-color: var(--primary-color);
  color: white;
  border-radius: 30px;
  font-weight: 600;
}

.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover {
  background-color: var(--secondary-color);
  color: white;
}