/**
 * Science Factory Camp - Base Layout Styles
 *
 * Twenty Twenty theme overrides for full-width blocks.
 * Design tokens (fonts, colors) are in global.css
 */

/* ============================================
   Twenty Twenty Theme Overrides
   ============================================ */

#site-content {
	padding: 0;
	margin: 0;
	max-width: none;
	width: 100%;
}

/* Override Twenty Twenty entry-content constraints */
.entry-content,
.entry-content > * {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.alignfull {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.post-inner,
.entry-content {
	padding-left: 0;
	padding-right: 0;
}

/* ============================================
   Full-Width Block Overrides
   ============================================ */

.header-hero-block,
header.header-hero-block {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.hero {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: var(--sfc-space-xl) 0 0;
}

.hero__container {
	max-width: var(--sfc-container-max);
	margin: 0 auto;
	padding: 0 var(--sfc-container-padding);
}

[class*="features"],
[class*="create-destroy"],
[class*="camp-your-way"],
[class*="find-a-camp"],
[class*="find-camp"],
[class*="reviews"],
[class*="faq"],
[class*="newsletter"],
[class*="footer-sfc"] {
	width: 100%;
	max-width: 100%;
}

/* ============================================
   ACF Block Wrappers
   ============================================ */

.wp-block-acf-sfc-header-hero,
.wp-block-acf-sfc-features,
.wp-block-acf-sfc-create-destroy,
.wp-block-acf-sfc-camp-your-way,
.wp-block-acf-sfc-find-a-camp,
.wp-block-acf-sfc-reviews,
.wp-block-acf-sfc-faq,
.wp-block-acf-sfc-newsletter,
.wp-block-acf-sfc-footer {
	max-width: none;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}

/* ============================================
   Typography Overrides
   ============================================ */

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
}

header a,
nav a,
footer a {
	text-decoration: none;
}

/* ============================================
   Button Reset
   ============================================ */

button,
.button,
input[type="submit"] {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* ============================================
   Container Utility
   ============================================ */

.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 var(--sfc-container-padding);
	box-sizing: border-box;
}

@media (min-width: 1280px) {
	.container {
		padding: 0 130px;
	}
}

/* ============================================
   Template Utilities
   ============================================ */

/* 
 * Utility to hide default Twenty Twenty header/footer
 * if used on standard templates (backup measure).
 */
.hide-site-header-footer #site-header,
.hide-site-header-footer #site-footer {
	display: none !important;
}

/* ============================================
   Template: SFC With Container
   ============================================ */

.sfc-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 20px;
}

.sfc-container .sfc-content-wrapper {
    background: #fff;
    /* padding: 40px; */
	    max-width: 1180px;
    margin: 0 auto;
}

.sfc-container  .sfc-content-wrapper .entry-header {
    margin-bottom: 40px;
}

.sfc-container  .sfc-content-wrapper .entry-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.sfc-container  .sfc-content-wrapper .entry-content {
    font-size: 16px;
    line-height: 1.8;
	max-width: 1180px;
    color: #333;
}

.sfc-container  .sfc-content-wrapper .entry-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.sfc-container  .sfc-content-wrapper .entry-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.sfc-container  .sfc-content-wrapper .entry-content p {
    margin-bottom: 20px;
}

.sfc-container  .sfc-content-wrapper .entry-content ul,
.sfc-container  .sfc-content-wrapper .entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.sfc-container  .sfc-content-wrapper .entry-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .sfc-container {
        padding: 40px 15px;
    }
    
    .sfc-container .sfc-content-wrapper {
        padding: 20px;
    }
    
    .sfc-container  .sfc-content-wrapper .entry-title {
        font-size: 32px;
    }
}