/*
Theme Name: Pomona Portfolio
Theme URI: https://pomonaappstudio.com
Author: Daniel Berger
Author URI: https://pomonaappstudio.com
Description: Custom portfolio theme for Pomona App Studio
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pomona-portfolio
*/

  /* ===== GLOBAL STYLES ===== */

  * {
      box-sizing: border-box;
  }

  body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      color: #333;
      line-height: 1.6;
  }

  /* ===== NAVIGATION ===== */

  .main-nav {
      background: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
  }

  .main-nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
  }

  .main-nav .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: #667eea;
      text-decoration: none;
  }

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

  .nav-menu a {
      color: #333;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
  }

  .nav-menu a:hover {
      color: #667eea;
  }

  /* ===== FOOTER ===== */

  .site-footer {
      background: #2d3748;
      color: white;
      padding: 40px 20px;
      margin-top: 60px;
  }

  .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
  }

  .footer-content p {
      margin: 0;
  }

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

  .social-links a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .social-links a:hover {
      color: #667eea;
  }

/* ===== HOMEPAGE STYLES ===== */

  /* Container */
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  /* Hero Section */
  .hero {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 100px 20px;
      text-align: center;
  }

  .hero__name {
      font-size: 3rem;
      margin: 0 0 10px 0;
      font-weight: 700;
  }

  .hero__title {
      font-size: 1.25rem;
      opacity: 0.9;
      margin: 0 0 20px 0;
  }

  .hero__bio {
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto 30px auto;
      opacity: 0.95;
  }

  .hero__cta {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
  }

  /* Buttons */
  .btn {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .btn-primary {
      background: white;
      color: #667eea;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
  }

  .btn-secondary:hover {
      background: white;
      color: #667eea;
  }

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

  .btn-outline:hover {
      background: #667eea;
      color: white;
  }

  /* Featured Apps Section */
  .featured-apps {
      padding: 80px 20px;
      background: #f8f9fa;
  }

  .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin: 0 0 50px 0;
      color: #2d3748;
  }

  .apps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
  }

  /* App Card */
  .app-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .app-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .app-card__header {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      align-items: center;
  }

  .app-icon {
      font-size: 3rem;
  }

  .app-name {
      margin: 0 0 5px 0;
      font-size: 1.5rem;
      color: #2d3748;
  }

  .app-tagline {
      margin: 0;
      color: #718096;
      font-size: 0.9rem;
  }

  .app-description {
      color: #4a5568;
      line-height: 1.6;
      margin-bottom: 15px;
  }

  .app-meta {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      font-size: 0.9rem;
      color: #718096;
  }

  .rating {
      color: #f59e0b;
  }

  .badge {
      background: #10b981;
      color: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
  }

  .app-link {
      color: #667eea;
      text-decoration: none;
      font-weight: 600;
  }

  .app-link:hover {
      text-decoration: underline;
  }

  .view-all {
      text-align: center;
  }

  /* About Teaser */
  .about-teaser {
      padding: 80px 20px;
      text-align: center;
  }

  .about-teaser h2 {
      font-size: 2.5rem;
      margin: 0 0 20px 0;
  }

  .about-teaser p {
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto 30px auto;
      color: #4a5568;
  }

  /* Contact CTA */
  .contact-cta {
      background: #2d3748;
      color: white;
      padding: 80px 20px;
      text-align: center;
  }

  .contact-cta h2 {
      font-size: 2.5rem;
      margin: 0 0 10px 0;
  }

  .contact-cta p {
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 30px;
  }

  .social-links {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .social-link {
      color: white;
      text-decoration: none;
      padding: 12px 24px;
      border: 2px solid white;
      border-radius: 6px;
      transition: all 0.3s ease;
  }

  .social-link:hover {
      background: white;
      color: #2d3748;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .hero__name {
          font-size: 2rem;
      }

      .section-title {
          font-size: 2rem;
      }

      .apps-grid {
          grid-template-columns: 1fr;
      }
  }

/* ===== ABOUT PAGE STYLES ===== */

  /* About Hero */
  .about-hero {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 80px 20px 60px 20px;
      text-align: center;
  }

  .about-hero h1 {
      font-size: 3rem;
      margin: 0 0 10px 0;
  }

  .about-hero .tagline {
      font-size: 1.5rem;
      opacity: 0.95;
      margin: 0;
  }

  /* About Content */
  .about-content {
      padding: 60px 20px;
  }

  .about-content .container {
      max-width: 900px;
  }

  /* Bio Section */
  .bio-section {
      margin-bottom: 60px;
  }

  .lead {
      font-size: 1.25rem;
      line-height: 1.8;
      color: #2d3748;
  }

  /* Experience Section */
  .experience-section {
      margin-bottom: 60px;
  }

  .experience-section h2 {
      font-size: 2.5rem;
      margin: 0 0 40px 0;
      color: #2d3748;
  }

  .job {
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid #e2e8f0;
  }

  .job:last-child {
      border-bottom: none;
  }

  .job-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 8px;
      flex-wrap: wrap;
  }

  .job h3 {
      font-size: 1.75rem;
      margin: 0;
      color: #2d3748;
  }

  .job-period {
      color: #718096;
      font-weight: 600;
  }

  .job-title {
      color: #667eea;
      font-weight: 600;
      font-size: 1.1rem;
      margin: 0 0 15px 0;
  }

  .job p {
      line-height: 1.7;
      color: #4a5568;
      margin: 0;
  }

  /* Vision & Mission Sections */
  .vision-section,
  .mission-section {
      margin-bottom: 60px;
  }

  .vision-section h2,
  .mission-section h2 {
      font-size: 2.5rem;
      margin: 0 0 20px 0;
      color: #2d3748;
  }

  .vision-section p,
  .mission-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #4a5568;
      margin-bottom: 15px;
  }

  /* Skills Section */
  .skills-section {
      margin-bottom: 60px;
  }

  .skills-section h2 {
      font-size: 2.5rem;
      margin: 0 0 30px 0;
      color: #2d3748;
  }

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

  .skill-category {
      background: #f7fafc;
      padding: 20px;
      border-radius: 8px;
  }

  .skill-category h4 {
      color: #667eea;
      font-size: 1.1rem;
      margin: 0 0 10px 0;
  }

  .skill-category p {
      color: #4a5568;
      line-height: 1.6;
      margin: 0;
  }

  /* Contact Section */
  .contact-section {
      background: #f7fafc;
      padding: 50px 40px;
      border-radius: 12px;
      text-align: center;
  }

  .contact-section h2 {
      font-size: 2.5rem;
      margin: 0 0 15px 0;
      color: #2d3748;
  }

  .contact-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #4a5568;
      margin-bottom: 30px;
  }

  .contact-links {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .contact-btn {
      background: white;
      color: #667eea;
      padding: 12px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
  }

  .contact-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      color: #764ba2;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .about-hero h1 {
          font-size: 2rem;
      }

      .about-hero .tagline {
          font-size: 1.2rem;
      }

      .job-header {
          flex-direction: column;
      }

      .job-period {
          margin-bottom: 5px;
      }

      .skills-grid {
          grid-template-columns: 1fr;
      }
  
  }

/* ===== APPS ARCHIVE PAGE ===== */

.apps-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.apps-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
}

.apps-hero .tagline {
    font-size: 1.2rem;
    opacity: 0.95;
}

.apps-listing {
    padding: 60px 20px;
}

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

/* ===== SINGLE APP PAGE ===== */

.single-app .app-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
}

.app-hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.app-hero__text {
    flex: 1;
}

.app-hero__text h1 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
}

.app-hero__text .tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 20px;
}

.app-hero__text .app-meta {
    margin: 20px 0;
    display: flex;
    gap: 20px;
    font-size: 1.1rem;
}

.app-store-btn {
    display: inline-block;
    margin-top: 20px;
}

.app-hero__image {
    flex: 0 0 300px;
}

.app-hero__image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.app-content {
    padding: 60px 20px;
}

.app-description {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.app-features {
    max-width: 800px;
    margin: 60px auto;
}

.app-features h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f7f9fc;
    border-radius: 8px;
}

.feature-icon {
    color: #667eea;
    font-size: 1.3rem;
    font-weight: bold;
}

.app-screenshots {
    max-width: 1000px;
    margin: 60px auto;
}

.app-screenshots h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

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

.screenshots-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.app-cta {
    max-width: 600px;
    margin: 80px auto;
    text-align: center;
    padding: 40px;
    background: #f7f9fc;
    border-radius: 12px;
}

.app-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.back-navigation {
    padding: 40px 20px;
    border-top: 1px solid #e5e7eb;
}

.back-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsive for Apps */
@media (max-width: 768px) {
    .app-hero__content {
        flex-direction: column-reverse;
    }

    .app-hero__image {
        flex: 0 0 auto;
        max-width: 250px;
    }

    .app-hero__text h1 {
        font-size: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT PAGE ===== */

.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
}

.contact-hero .tagline {
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-content {
    padding: 80px 20px;
}

.contact-content .container {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f7f9fc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #333;
}

.contact-email,
.contact-link {
    color: #667eea;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-email:hover,
.contact-link:hover {
    text-decoration: underline;
}

.contact-message {
    padding: 40px;
    background: #f7f9fc;
    border-radius: 12px;
    height: fit-content;
}

.contact-message h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Responsive for Contact */
@media (max-width: 768px) {
    .contact-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-message {
        padding: 30px 20px;
    }
}

/* ===== MOBILE MENU ===== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #667eea;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 10px;
        display: block;
    }
}

/* ===== SMOOTH SCROLL ===== */

html {
    scroll-behavior: smooth;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Subtle hover transitions */
a, button {
    transition: all 0.3s ease;
}

img {
    transition: transform 0.3s ease;
}

/* ===== BLOG ARCHIVE ===== */

.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
}

.blog-hero .tagline {
    font-size: 1.2rem;
    opacity: 0.95;
}

.blog-posts {
    padding: 60px 20px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.post-thumbnail {
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.post-meta .separator {
    opacity: 0.5;
}

.post-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
}

.post-title a {
    color: #333;
    text-decoration: none;
}

.post-title a:hover {
    color: #667eea;
}

.post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.2rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.pagination a:hover {
    border-color: #667eea;
    color: #667eea;
}

.pagination .current {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* ===== SINGLE BLOG POST ===== */

.post-header {
    background: #f7f9fc;
    padding: 60px 20px 40px;
}

.post-header .container {
    max-width: 800px;
}

.post-header h1 {
    font-size: 2.5rem;
    margin: 15px 0 30px 0;
    color: #333;
    line-height: 1.3;
}

.post-header .featured-image {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.post-header .featured-image img {
    width: 100%;
    height: auto;
}

.single-post .post-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.single-post .post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.single-post .post-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px 0;
    color: #333;
}

.single-post .post-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    color: #333;
}

.author-bio {
    background: #f7f9fc;
    padding: 60px 20px;
    margin-top: 60px;
}

.author-card {
    max-width: 800px;
    margin: 0 auto;
}

.author-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.author-card p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.author-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.author-links a:hover {
    text-decoration: underline;
}

.post-navigation {
    padding: 40px 20px;
    border-top: 1px solid #e5e7eb;
}

.post-navigation .container {
    max-width: 800px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.nav-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    max-width: 48%;
}

.nav-links a:hover {
    text-decoration: underline;
}

.back-to-blog {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.back-to-blog:hover {
    text-decoration: underline;
}

/* Responsive for Blog */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-links a {
        max-width: 100%;
    }
}

/* Contact Icon Buttons */
.contact-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 140px;
}

.contact-icon-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.contact-icon-btn .icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact-icon-btn .label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.contact-icon-btn:hover .label {
    color: #667eea;
}

@media (max-width: 768px) {
    .contact-buttons {
        justify-content: center;
    }

    .contact-icon-btn {
        flex: 1;
        min-width: 120px;
    }
}
