/*
Theme Name: Saucy Couple 2026
Theme URI: https://saucycouple.com/
Author: Saucy Couple
Description: Custom WordPress theme for Saucy Couple.
Version: 1.0.0
Text Domain: saucycouple2026
*/

/* ---------------------------------------------------------
   Base
--------------------------------------------------------- */

:root {
	--sc-red: #ff1744;
	--sc-red-dark: #d90d35;
	--sc-pink: #fff3f6;
	--sc-black: #161616;
	--sc-gray-900: #222222;
	--sc-gray-700: #666666;
	--sc-gray-500: #999999;
	--sc-gray-200: #ececec;
	--sc-white: #ffffff;
	--sc-max-width: 1180px;
	--sc-radius: 22px;
	--sc-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--sc-white);
	color: var(--sc-black);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.12;
}

h1 {
	font-size: clamp(3rem, 5vw, 4.8rem);
	letter-spacing: -0.045em;
}

h2 {
	font-size: clamp(2.1rem, 4vw, 4rem);
	letter-spacing: -0.035em;
}

h3 {
	font-size: 1.4rem;
}


/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--sc-gray-200);
	backdrop-filter: blur(12px);
}

.site-header__inner {
	width: min(calc(100% - 40px), var(--sc-max-width));
	min-height: 92px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-branding {
	margin-right: auto;
	display: flex;
	align-items: center;
}

.site-branding .custom-logo-link {
	display: flex;
	align-items: center;
}

.site-branding .custom-logo {
	display: block;
	width: auto;
	max-width: 165px;
	max-height: 74px;
	height: auto;
}

.site-branding__name {
	font-size: 1.45rem;
	font-weight: 900;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.primary-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 24px;
}

.primary-menu a {
	font-weight: 700;
	font-size: 0.94rem;
}

.primary-menu a:hover {
	color: var(--sc-red);
}

.header-tiktok-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	background: var(--sc-red);
	color: var(--sc-white);
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 800;
	transition: 0.2s ease;
}

.header-tiktok-button:hover {
	background: var(--sc-red-dark);
	transform: translateY(-1px);
}


/* ---------------------------------------------------------
   Shared
--------------------------------------------------------- */

.section {
	padding: 96px 20px;
}

.section__inner,
.hero__inner {
	width: min(100%, var(--sc-max-width));
	margin: 0 auto;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}

.section-heading__eyebrow,
.hero__eyebrow {
	margin-bottom: 10px;
	color: var(--sc-red);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.section-heading p:not(.section-heading__eyebrow) {
	color: var(--sc-gray-700);
	font-size: 1.08rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 26px;
	border-radius: 999px;
	font-weight: 800;
	transition: 0.2s ease;
}

.button--primary {
	background: var(--sc-red);
	color: var(--sc-white);
}

.button--primary:hover {
	background: var(--sc-red-dark);
	transform: translateY(-2px);
}

.button--secondary {
	border: 2px solid var(--sc-black);
	background: var(--sc-white);
	color: var(--sc-black);
}

.button--secondary:hover {
	background: var(--sc-black);
	color: var(--sc-white);
}

.section-actions {
	margin-top: 38px;
	text-align: center;
}


/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */

.hero {
	padding: 72px 20px 88px;
	overflow: hidden;
}

.hero__inner {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	align-items: center;
	gap: 64px;
}

.hero__content {
	max-width: 590px;
}

.hero__content h1 {
	margin-bottom: 24px;
}

.hero__text {
	max-width: 560px;
	color: var(--sc-gray-700);
	font-size: 1.25rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.hero__image {
	position: relative;
}

.hero__image::before {
	content: "";
	position: absolute;
	inset: 10% -8% -8% 14%;
	z-index: -1;
	background: var(--sc-pink);
	border-radius: 38% 62% 54% 46% / 44% 38% 62% 56%;
}

.hero__photo {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 32px;
	box-shadow: var(--sc-shadow);
}


/* ---------------------------------------------------------
   Live schedule
--------------------------------------------------------- */

.live-schedule {
	background: var(--sc-black);
	color: var(--sc-white);
}

.live-schedule .section-heading p:not(.section-heading__eyebrow) {
	color: #c9c9c9;
}

.live-schedule__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.live-card {
	min-height: 190px;
	padding: 26px 22px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--sc-radius);
	background: rgba(255, 255, 255, 0.06);
}

.live-card__day {
	margin-bottom: 28px;
	color: #ff6a87;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.live-card h3 {
	margin-bottom: 10px;
}

.live-card p:last-child {
	margin-bottom: 0;
	color: #bdbdbd;
}


/* ---------------------------------------------------------
   TikTok videos
--------------------------------------------------------- */

.tiktok-section {
	background: var(--sc-white);
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.video-card {
	aspect-ratio: 9 / 16;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border-radius: 24px;
	background:
		linear-gradient(
			180deg,
			#f4f4f4 0%,
			#e8e8e8 100%
		);
	box-shadow: var(--sc-shadow);
	color: var(--sc-gray-500);
	font-weight: 800;
	text-align: center;
}


/* ---------------------------------------------------------
   Shop
--------------------------------------------------------- */

.shop-section {
	background: #fafafa;
}

/*
 * Desktop and tablet:
 * Only Amazon Favorites and Saucy Couple Store are visible,
 * so center them in a two-column layout.
 */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	max-width: 800px;
	margin: 0 auto;
}

.feature-card {
	min-height: 280px;
	padding: 34px;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--sc-gray-200);
	border-radius: var(--sc-radius);
	background: var(--sc-white);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
	margin-bottom: 12px;
	font-size: 1.4rem;
}

.feature-card p {
	margin-bottom: 26px;
	color: var(--sc-gray-700);
}

.feature-card__icon {
	width: 56px;
	height: 56px;
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--sc-red);
	color: var(--sc-white);
	font-size: 1.6rem;
	font-weight: 900;
}

.feature-card__icon--amazon {
	background: var(--sc-black);
	color: var(--sc-white);
	font-family: Georgia, serif;
	text-transform: lowercase;
}

.feature-card__button {
	margin-top: auto;
	align-self: flex-start;
}

/*
 * TikTok Shop is mobile-only because the Showcase deep link
 * works properly in the TikTok mobile experience but is not
 * a useful desktop shopping destination.
 */
.feature-card--tiktok {
	border-color: rgba(255, 23, 68, 0.35);
	box-shadow: 0 12px 30px rgba(255, 23, 68, 0.08);
}

.feature-card--tiktok:hover {
	border-color: rgba(255, 23, 68, 0.55);
	box-shadow: 0 16px 36px rgba(255, 23, 68, 0.13);
}

.feature-card--mobile-only {
	display: none;
}

.feature-card__disclosure {
	margin: -10px 0 18px;
	color: var(--sc-gray-500);
	font-size: 0.78rem;
	font-style: italic;
}


/* ---------------------------------------------------------
   Shop responsive
--------------------------------------------------------- */

@media (max-width: 900px) {

	/*
	 * Keep the two-column Shop layout on tablets.
	 * The TikTok Shop card remains hidden until the mobile
	 * breakpoint below.
	 */
	.feature-grid {
		max-width: 760px;
	}

	.feature-card {
		min-height: 240px;
	}
}


/* ---------------------------------------------------------
   Book
--------------------------------------------------------- */

.book-section {
	background: var(--sc-pink);
}

.book-feature {
	display: grid;
	grid-template-columns: 240px 1fr;
	align-items: center;
	gap: 56px;
	max-width: 950px;
	margin: 0 auto;
}

.book-feature__image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.book-feature__cover {
	display: block;
	width: 100%;
	max-width: 240px;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.book-feature__content {
	max-width: 620px;
}

.book-feature__ages {
	margin-bottom: 12px;
	color: var(--sc-gray-700);
	font-size: 0.95rem;
	font-weight: 700;
}

.book-feature__content h2 {
	margin-bottom: 24px;
	font-size: clamp(2.2rem, 3.5vw, 3.4rem);
}

.book-feature__description {
	margin-bottom: 16px;
	color: var(--sc-gray-700);
	font-size: 1.05rem;
}

.book-feature__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}


/* ---------------------------------------------------------
   Book responsive
--------------------------------------------------------- */

@media (max-width: 800px) {

	.book-feature {
		grid-template-columns: 1fr;
		gap: 36px;
		text-align: center;
	}

	.book-feature__content {
		max-width: 680px;
		margin: 0 auto;
	}

	.book-feature__cover {
		max-width: 220px;
	}

	.book-feature__buttons {
		justify-content: center;
	}
}

@media (max-width: 600px) {

	.book-feature__cover {
		max-width: 200px;
	}

	.book-feature__buttons {
		flex-direction: column;
	}

	.book-feature__buttons .button {
		width: 100%;
	}
}


/* ---------------------------------------------------------
   YouTube
--------------------------------------------------------- */

.youtube-section {
	background: var(--sc-white);
}


/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */

.site-footer {
	padding: 64px 20px 34px;
	background: var(--sc-black);
	color: var(--sc-white);
}

.site-footer__inner {
	width: min(100%, var(--sc-max-width));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 34px;
}

.site-footer__brand strong {
	font-size: 1.4rem;
	text-transform: uppercase;
}

.site-footer__brand p {
	margin-top: 8px;
	color: #bdbdbd;
}

.site-footer__nav,
.site-footer__social {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-footer__social strong {
	margin-bottom: 4px;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
}

.site-footer a:hover {
	color: #ff6a87;
}

.site-footer__copyright {
	grid-column: 1 / -1;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #999;
	font-size: 0.88rem;
}

.site-footer__copyright p {
	margin: 0;
}

.site-footer__amazon-disclosure {
	margin-top: 6px !important;
	font-size: 0.82rem;
}


/* ---------------------------------------------------------
   Responsive - Tablet
--------------------------------------------------------- */

@media (max-width: 1000px) {

	.hero__inner {
		grid-template-columns: 1fr;
	}

	.hero__content {
		max-width: 760px;
	}

	.live-schedule__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.video-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-header__inner {
		flex-wrap: wrap;
		padding: 14px 0;
	}

	.primary-navigation {
		order: 3;
		width: 100%;
	}

	.primary-menu {
		justify-content: center;
		flex-wrap: wrap;
	}
}


/* ---------------------------------------------------------
   Responsive - Mobile
--------------------------------------------------------- */

@media (max-width: 700px) {

	body {
		font-size: 16px;
	}

	.section {
		padding: 70px 18px;
	}

	.hero {
		padding: 52px 18px 70px;
	}

	.site-header__inner {
		width: min(calc(100% - 28px), var(--sc-max-width));
		min-height: 0;
		padding: 10px 0 8px;
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		gap: 8px 14px;
	}

	.site-branding {
		margin-right: 0;
		grid-column: 1;
		grid-row: 1;
	}

	.site-branding .custom-logo {
		max-width: 105px;
		max-height: 58px;
	}

	.site-branding__name {
		font-size: 1.15rem;
	}

	.header-tiktok-button {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		min-height: 38px;
		padding: 0 14px;
		font-size: 0.78rem;
		white-space: nowrap;
	}

	.primary-navigation {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		order: initial;
	}

	.primary-menu {
		justify-content: center;
		gap: 10px 20px;
		flex-wrap: nowrap;
	}

	.primary-menu a {
		font-size: 0.88rem;
	}

	.hero__actions {
		flex-direction: column;
	}

	.hero__actions .button {
		width: 100%;
	}

	.live-schedule__grid,
	.video-grid,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.video-grid {
		max-width: 420px;
		margin: 0 auto;
	}

	/*
	 * On phones, show all three shopping cards and stack
	 * them vertically: TikTok, Amazon, Saucy Couple Store.
	 */
	.feature-grid {
		grid-template-columns: 1fr;
		max-width: 620px;
		margin-left: auto;
		margin-right: auto;
	}

	.feature-card {
		min-height: 0;
		padding: 28px;
	}

	.feature-card__button {
		width: 100%;
	}

	.feature-card--mobile-only {
		display: flex;
	}

	.site-footer__copyright {
		grid-column: auto;
	}
}


/* ---------------------------------------------------------
   TikTok Creator Profile Embed
--------------------------------------------------------- */

.tiktok-profile-embed {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

.tiktok-profile-embed .tiktok-embed {
	width: 100%;
	margin: 0 auto;
}

/* ---------------------------------------------------------
   Standard Pages
--------------------------------------------------------- */

.page-main {
	background: #fff;
}

.page-hero {
	padding: 80px 24px 42px;
	text-align: center;
}

.page-hero__inner {
	width: min(100%, 900px);
	margin: 0 auto;
}

.page-hero__eyebrow {
	margin: 0 0 12px;
	color: #ff1744;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.page-hero__title {
	margin: 0;
	font-size: clamp(3rem, 6vw, 4.5rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.page-content {
	width: min(calc(100% - 48px), 900px);
	margin: 0 auto;
	padding: 0 0 90px;
}

.page-content p {
	margin: 0 0 24px;
	color: #666;
	font-size: 1.1rem;
	line-height: 1.75;
}

.page-content p:first-child {
	color: #ff1744;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.page-content strong {
	color: #171717;
}

.page-content a {
	color: #ff1744;
}

@media (max-width: 700px) {

	.page-hero {
		padding: 60px 24px 32px;
	}

	.page-hero__title {
		font-size: 2.8rem;
	}

	.page-content {
		width: min(calc(100% - 40px), 900px);
		padding-bottom: 70px;
	}

	.page-content p {
		font-size: 1.05rem;
		line-height: 1.7;
	}
}