/*
Theme Name: Twenty Twenty-Four Child
Theme URI: 
Description: Child theme for the Twenty Twenty-Four theme
Author: Your Name
Author URI: 
Template: twentytwentyfour
Version: 1.0
*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    overflow-x: hidden;
}

/* Header Styles */
.banner-header {
    width: 100%;
    height: 288px;
    overflow: hidden;
    background: #ffffff;
}

.logo-container {
    width: 100%;
    height: 288px;
    display: block;
}

.logo-container img {
    width: 100%;
    height: 288px;
    object-fit: cover;
    display: block;
}

/* Container styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Remove any margin/padding from images */
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

/* Theme Overrides */
.wp-site-blocks,
.entry-content,
.alignfull,
.alignwide,
.wp-block-template-part {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Custom template overrides */
body.page-template-template-cardano-pool {
    width: 100%;
    overflow-x: hidden;
}

body.page-template-template-cardano-pool .wp-site-blocks {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Hide theme header/footer when using custom template */
body.page-template-template-cardano-pool .wp-block-template-part.header,
body.page-template-template-cardano-pool .wp-block-template-part.footer {
    display: none;
}

/* Hero Section */
.pool-info {
    position: relative;
    width: 100%;
    min-height: 600px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 51, 173, 0.85), rgba(0, 24, 82, 0.9)), url('./assets/images/background.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Content wrapper */
.cardano-staking-pool-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* Force full width on all screen sizes */
@media screen and (min-width: 768px) {
    .pool-info {
        width: 100vw !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }
}

.wp-site-blocks > * {
    margin-left: auto !important;
    margin-right: auto !important;
}

.wp-site-blocks .pool-info {
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}