/*
 Theme Name: Twenty Twenty-Five Child
 Theme URI: http://whatiftales.com/twentytwentyfive-child/
 Description: My custom child theme for Twenty Twenty-Five.
 Author: Omar Abuassaf
 Author URI: http://whatiftales.com
 Template: twentytwentyfive
 Version: 1.0.0
 Text Domain: twentytwentyfive-child
*/

/* Add your custom CSS below this line */

/* Hide page title */
.page .entry-title,
.wp-block-post-title {
  display: none !important;
}

/* Remove top margin between header and first block */
/* Remove top padding from full-width Group blocks */
.wp-block-group.alignfull {
  padding-top: 0 !important;
  margin-top: 0 !important;
}


/*** mobile ***/

/* Keep your existing desktop styles */
.page .entry-title,
.wp-block-post-title {
  display: none !important;
}

.wp-block-group.alignfull {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ✅ General Button Style */
.hero-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff !important;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* ✅ Orange Button */
.hero-button.orange {
  background-color: #f0932b;
}

.hero-button.orange:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}

/* ✅ Purple Button */
.hero-button.purple {
  background-color: #8c7ae6;
}

.hero-button.purple:hover {
  background-color: #6c5ce7;
  transform: scale(1.05);
}

section h2 {
  animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 📱 Mobile-specific fix for padding/margin */
@media screen and (max-width: 768px) {
    
  .wp-site-blocks > *:first-child,
  .wp-block-group.alignfull:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .wp-block-post-title {
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .wp-block-group.alignfull iframe {
    max-width: 100vw !important;
    height: auto !important;
    display: block;
  }
  
  .page .entry-title,
.wp-block-post-title {
  display: none !important;
}

.wp-block-group.alignfull {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.wit-story-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}


  
  
}

