/*
Theme Name: Hillsome XTRA Child
Description: Custom child theme for Hillsome Limited - Complete Home Automation Solutions
Author: Hillsome Limited
Template: xtra
Version: 1.0.0
*/

@import url("../xtra/style.css");

/* ==========================================
   HILLSOME LIMITED CUSTOM STYLES
   FORCE OVERRIDE PARENT THEME
   ========================================== */

/* Force Hillsome Limited branding in header */
.site-title,
.site-title a,
.logo,
.logo a,
#logo,
#logo a,
.header-logo,
.header-logo a {
    color: #006FFF !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
}

.site-title a:before,
.logo a:before {
    content: "🏠 " !important;
}

/* Force hide XTRA branding */
.xtra-logo,
.xtra-branding,
.powered-by-xtra,
.theme-credit,
.codevz-theme-credit {
    display: none !important;
    visibility: hidden !important;
}

/* Override header styling */
.site-header,
.header,
#header,
.main-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid #E2E8F0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

/* Body styling for Hillsome theme */
body.hillsome-theme {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.6 !important;
    color: #0F172A !important;
}

/* Modern Color Palette for Home Automation - Inspired by Ubiquiti UI.com */
:root {
  --hillsome-primary: #006FFF;
  --hillsome-secondary: #00C7B7;
  --hillsome-accent: #FF6B35;
  --hillsome-dark: #0F172A;
  --hillsome-dark-blue: #1E293B;
  --hillsome-light: #F8FAFC;
  --hillsome-gray: #64748B;
  --hillsome-gray-light: #CBD5E1;
  --hillsome-tech-blue: #3B82F6;
  --hillsome-success: #10B981;
  --hillsome-warning: #F59E0B;
  --hillsome-danger: #EF4444;
  --hillsome-gradient: linear-gradient(135deg, var(--hillsome-primary), var(--hillsome-tech-blue));
  --hillsome-gradient-dark: linear-gradient(135deg, var(--hillsome-dark), var(--hillsome-dark-blue));
  --hillsome-border: #E2E8F0;
  --hillsome-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --hillsome-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Modern Typography */
body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--hillsome-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

/* Hero Section Styling */
.hillsome-hero {
  background: var(--hillsome-gradient);
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hillsome-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hillsome-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hillsome-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

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

/* Services Grid */
.hillsome-services {
  padding: 80px 0;
  background: var(--hillsome-light);
}

.hillsome-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hillsome-service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hillsome-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--hillsome-gradient);
}

.hillsome-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hillsome-service-icon {
  font-size: 3rem;
  color: var(--hillsome-primary);
  margin-bottom: 20px;
}

.hillsome-service-card h3 {
  color: var(--hillsome-dark);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.hillsome-service-card p {
  color: var(--hillsome-gray);
  line-height: 1.6;
}

/* Modern Buttons */
.hillsome-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--hillsome-gradient);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.hillsome-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,102,204,0.3);
  color: white;
  text-decoration: none;
}

.hillsome-btn-secondary {
  background: transparent;
  color: var(--hillsome-primary);
  border: 2px solid var(--hillsome-primary);
}

.hillsome-btn-secondary:hover {
  background: var(--hillsome-primary);
  color: white;
}

/* Header Customization */
.site-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .site-title a {
  color: var(--hillsome-primary) !important;
  font-weight: 700;
  font-size: 1.8rem;
}

/* Navigation Styling */
.main-navigation ul li a {
  color: var(--hillsome-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-navigation ul li a:hover {
  color: var(--hillsome-primary);
}

/* Footer Styling */
.site-footer {
  background: var(--hillsome-dark);
  color: white;
  padding: 60px 0 30px;
}

.site-footer h3 {
  color: white;
  margin-bottom: 20px;
}

.site-footer a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: white;
}

/* Technology Showcase */
.hillsome-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.hillsome-tech-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: border-color 0.3s ease;
}

.hillsome-tech-item:hover {
  border-color: var(--hillsome-primary);
}

.hillsome-tech-item img {
  max-width: 80px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hillsome-hero h1 {
    font-size: 2.5rem;
  }
  
  .hillsome-hero p {
    font-size: 1.1rem;
  }
  
  .hillsome-services-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  
  .hillsome-service-card {
    padding: 30px 20px;
  }
}

/* Remove XTRA branding */
.xtra-logo,
.xtra-branding,
.powered-by-xtra,
.theme-credit {
  display: none !important;
}

/* Custom animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: slideInUp 0.6s ease-out;
}

/* Stats Section */
.hillsome-stats {
  background: var(--hillsome-dark);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hillsome-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.hillsome-stat-item h3 {
  font-size: 3rem;
  color: var(--hillsome-secondary);
  margin-bottom: 10px;
  font-weight: 700;
}

.hillsome-stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ==========================================
   UBIQUITI-INSPIRED DESIGN ENHANCEMENTS
   ========================================== */

/* Glass morphism effects */
.hillsome-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

/* Product showcase grid - Ubiquiti style */
.hillsome-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.hillsome-product-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--hillsome-shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--hillsome-border);
}

.hillsome-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hillsome-shadow-lg);
}

.hillsome-product-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hillsome-product-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.hillsome-product-content {
  padding: 24px;
}

.hillsome-product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--hillsome-gradient);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Feature highlights - UI.com style */
.hillsome-feature-highlight {
  background: var(--hillsome-dark);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hillsome-feature-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/wp-content/uploads/2018/07/bg-slide.png') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hillsome-feature-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hillsome-feature-text h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: white;
  font-weight: 700;
}

.hillsome-feature-text p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.6;
}

.hillsome-feature-image {
  position: relative;
}

.hillsome-feature-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Navigation - Ubiquiti inspired */
.hillsome-nav-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hillsome-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.hillsome-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.hillsome-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hillsome-primary);
  text-decoration: none;
}

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

.hillsome-nav-menu a {
  color: var(--hillsome-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.hillsome-nav-menu a:hover {
  color: var(--hillsome-primary);
  border-bottom-color: var(--hillsome-primary);
}

/* Ecosystem section - like Ubiquiti's product ecosystem */
.hillsome-ecosystem {
  background: var(--hillsome-light);
  padding: 100px 0;
  position: relative;
}

.hillsome-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hillsome-ecosystem-item {
  text-align: center;
  position: relative;
}

.hillsome-ecosystem-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background: var(--hillsome-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hillsome-ecosystem-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hillsome-ecosystem-icon i {
  font-size: 3rem;
  color: white;
  z-index: 2;
  position: relative;
}

.hillsome-ecosystem-item h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--hillsome-dark);
}

.hillsome-ecosystem-item p {
  color: var(--hillsome-gray);
  line-height: 1.6;
}

/* Specifications table - tech style */
.hillsome-specs-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--hillsome-shadow);
  margin: 40px 0;
}

.hillsome-specs-table table {
  width: 100%;
  border-collapse: collapse;
}

.hillsome-specs-table th {
  background: var(--hillsome-dark);
  color: white;
  padding: 16px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.hillsome-specs-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--hillsome-border);
  color: var(--hillsome-dark);
}

.hillsome-specs-table tr:last-child td {
  border-bottom: none;
}

.hillsome-specs-table tr:nth-child(even) {
  background: var(--hillsome-light);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .hillsome-feature-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hillsome-feature-text h2 {
    font-size: 2rem;
  }
  
  .hillsome-nav-container {
    padding: 0 16px;
    height: 64px;
  }
  
  .hillsome-nav-menu {
    gap: 24px;
  }
  
  .hillsome-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hillsome-ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--hillsome-light);
}

::-webkit-scrollbar-thumb {
  background: var(--hillsome-gray-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hillsome-gray);
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hillsome-animate-up {
  animation: fadeInUp 0.6s ease-out;
}

.hillsome-animate-right {
  animation: slideInRight 0.6s ease-out;
}

/* ==========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ========================================== */

/* Mobile First - Base styles for mobile devices */
@media (max-width: 767px) {
    /* Typography adjustments */
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
    }
    
    /* Hero section mobile */
    .parallax-bg {
        min-height: 100vh !important;
        padding: 100px 0 60px !important;
    }
    
    /* Hero video background mobile */
    .parallax-bg video {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: -1 !important;
    }
    
    /* Hero content mobile */
    .parallax-bg > div {
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* Grid adjustments for mobile */
    [style*="grid-template-columns: repeat(auto-fit, minmax(380px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    [style*="grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Button adjustments */
    .glowing-button {
        padding: 14px 24px !important;
        font-size: 0.95rem !important;
        min-width: auto !important;
        width: 100% !important;
        margin-bottom: 10px !important;
    }
    
    /* Hero buttons container */
    [style*="display: flex"][style*="justify-content: center"][style*="gap: 20px"] {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: stretch !important;
    }
    
    /* Video background adjustments */
    video {
        min-width: 120% !important;
        min-height: 120% !important;
    }
    
    /* Padding adjustments for sections */
    section {
        padding: 60px 0 !important;
    }
    
    /* Container padding mobile */
    [style*="max-width: 1400px"],
    [style*="max-width: 1200px"],
    [style*="max-width: 1000px"] {
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Hero text mobile */
    [style*="font-size: 4rem"] {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    [style*="font-size: 3.5rem"] {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    [style*="font-size: 3rem"] {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    /* Form inputs mobile */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 48px !important;
        padding: 12px 16px !important;
    }
    
    /* Service card heights */
    [style*="min-height: 700px"] {
        min-height: auto !important;
    }
    
    [style*="min-height: 580px"] {
        min-height: auto !important;
    }
    
    /* Flexible layout for service cards */
    .service-card-enhanced {
        margin-bottom: 30px !important;
    }
    
    /* Text alignment for mobile */
    [style*="text-align: center"] h1,
    [style*="text-align: center"] h2,
    [style*="text-align: center"] h3 {
        text-align: center !important;
    }
    
    /* Footer adjustments */
    footer [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    /* Contact form mobile */
    .contact-form-container {
        padding: 30px 20px !important;
    }
    
    /* Stats grid mobile */
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Hero adjustments */
    h1 {
        font-size: 3rem !important;
    }
    
    h2 {
        font-size: 2.5rem !important;
    }
    
    /* Grid adjustments for tablet */
    [style*="grid-template-columns: repeat(auto-fit, minmax(380px, 1fr))"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    
    [style*="grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    /* Contact form tablet */
    [style*="grid-template-columns: 1fr 1fr"][style*="gap: 80px"] {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    
    /* Footer tablet */
    footer [style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }
    
    /* Video demo tablet */
    [style*="grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Desktop and larger screens */
@media (min-width: 1024px) {
    /* Ensure proper layout for desktop */
    [style*="grid-template-columns: repeat(auto-fit, minmax(380px, 1fr))"] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px !important;
    }
    
    [style*="grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))"] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }
}

/* Large desktop screens */
@media (min-width: 1440px) {
    /* Larger typography for big screens */
    h1 {
        font-size: 4.5rem !important;
    }
    
    h2 {
        font-size: 3.5rem !important;
    }
    
    /* Container max-width adjustments */
    [style*="max-width: 1400px"] {
        max-width: 1600px !important;
    }
}

/* ==========================================
   TOUCH-FRIENDLY INTERACTIONS
   ========================================== */

/* Larger touch targets for mobile */
@media (max-width: 767px) {
    button, .button, .glowing-button, a[style*="padding"] {
        min-height: 48px !important;
        min-width: 48px !important;
        padding: 12px 20px !important;
    }
    
    /* Navigation items */
    nav a, .nav-link {
        padding: 12px 16px !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    /* Video controls */
    video::-webkit-media-controls {
        transform: scale(1.2);
    }
}

/* ==========================================
   ANIMATION PERFORMANCE OPTIMIZATION
   ========================================== */

/* Disable animations on slow devices */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU acceleration for smooth animations */
.animate-on-scroll, .service-card-enhanced, .glowing-button {
    transform: translateZ(0);
    will-change: transform, opacity;
}

/* ==========================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================== */

/* Focus indicators */
button:focus, input:focus, textarea:focus, select:focus, a:focus {
    outline: 3px solid #006FFF !important;
    outline-offset: 2px !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .glowing-button {
        border: 2px solid currentColor !important;
    }
    
    .service-card-enhanced {
        border: 2px solid #000 !important;
    }
}

/* ==========================================
   UTILITY CLASSES FOR RESPONSIVE DESIGN
   ========================================== */

/* Responsive visibility */
.mobile-only {
    display: block;
}

.tablet-only, .desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
    
    .tablet-only {
        display: block;
    }
}

@media (min-width: 1024px) {
    .tablet-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
}

/* Responsive text alignment */
.text-center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .text-left-tablet {
        text-align: left !important;
    }
}
