/*
 * Courses landing page styles
 */

:root {
	--fw-color-green: #1f818f;
	--fw-color-blue: #3c4a74;
	--fw-color-gold: #ca9b52;
	
	--fw-color-red: #b03f45;	
}

html {
	scroll-behavior: smooth;
}

h2 {
	scroll-margin-top: 100px;
}

.post-header,
.entry-header {
	display: none;
}

.fw-button .wp-block-button__link {
	background: var(--fw-color-gold);
    color: #fff;
}

.fw-button .wp-block-button__link:hover {
	background: #333333;
    color: #fff;
}

.fw-artist {
	background: #f7f7f7;
	border-radius: 10px;
	padding: 30px;
	margin-top: 30px;
}

.fw-products .wp-block-columns {
	padding: 30px;
}

.fw-products .fw-course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fw-products .fw-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.fw-products .fw-course-card.wp-block-column {
    display: flex;
	flex-direction: column;
}

.fw-products .fw-course-card h3 {
	padding: 30px;
}
.fw-products .fw-course-card p {
    padding: 0px 30px;
}

.fw-products .fw-course-card ul {
    list-style: none;
    margin-bottom: 25px;
	padding-left: 30px;
	text-indent: -20px;
}

.fw-products .fw-course-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.fw-products .fw-course-card li:before {
    content: "✓";
    color: var(--fw-color-gold);
    font-weight: bold;
    margin-right: 10px;
}

.fw-products .fw-course-card .wp-block-buttons {
    display: flex;
	flex-grow: 1;
	justify-content: center;
	align-items: flex-end;
	margin: 30px;
}

.fw-products .fw-course-card .fw-cours-img-base {
	border-bottom: 20px solid var(--fw-color-blue);
}

.fw-products .fw-course-card .fw-cours-img-voyage {
	border-bottom: 20px solid var(--fw-color-green);
}

.fw-products .fw-course-card .fw-cours-img-portrait {
	border-bottom: 20px solid var(--fw-color-gold);
}

.fw-featured-product {
    background: #f7f7f7;
    color: #333333;
    padding: 30px;
    border-radius: 10px;
}

.fw-artist ul,
.fw-featured-product ul {
    list-style: none;
    margin-bottom: 25px;
	padding-left: 30px;
	text-indent: -20px;
}

.fw-artist li,
.fw-featured-product li {
    padding: 15px 0;
	font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.fw-artist li:before,
.fw-featured-product li:before {
    content: "★";
    color: var(--fw-color-gold);
    font-size: 1.3rem;
    margin-right: 15px;
}

.fw-featured-product blockquote {
   border: none;
   color: #aaa;
   padding: 0;
   margin-bottom: 30px;
}

.fw-featured-product blockquote em {
   font-size: 1.1rem;
}

/* Testimonials */
.fw-testimonials {
	margin: 30px;
}

@media (max-width: 768px) {
	.fw-testimonials {
		margin: 0px;
	}
}

.fw-testimonials .fw-testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
}

.fw-testimonials .fw-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.fw-testimonials .fw-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 35px;
    left: 25px;
    font-size: 5rem;
    color: var(--fw-color-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.fw-testimonials .fw-testimonial-card .fw-author-text {
    font-style: italic;
    color: #666;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
	flex-grow: 1;
}

.fw-testimonials .fw-testimonial-card .fw-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
}

.fw-author-avatar, 
.fw-testimonial-portrait .fw-author-avatar {
	background: linear-gradient(135deg, var(--fw-color-gold) 0%, var(--fw-color-gold) 100%);
}

.fw-testimonial-base .fw-author-avatar {
	background: linear-gradient(135deg, var(--fw-color-blue) 0%, var(--fw-color-blue) 100%);
}

.fw-testimonial-voyage .fw-author-avatar {
	background: linear-gradient(135deg, var(--fw-color-green) 0%, var(--fw-color-green) 100%);
}

.fw-testimonials .fw-testimonial-card .fw-author-info h4 {
    color: #2c2c2c;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.fw-testimonials .fw-testimonial-card .fw-author-info p {
    color: #999;
    font-size: 0.9rem;
}

/* Product packs */
.fw-packs {
	margin: 30px;
}

.fw-pack-card {
	display: flex;
	flex-direction: column;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	padding: 40px;
	position: relative;
	transition: all 0.3s ease;
}

.fw-pack-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 35px rgba(0,0,0,0.12);
	border-color: #ca9b52;
}

.fw-coaching-card {
	border-color: var(--fw-color-green);
	background: linear-gradient(135deg, #ffffff 0%, #f8fcfd 100%);
}

.fw-coaching-card:hover {
	border-color: #1f818f;
}

.fw-pack-card .fw-pack-badge {
	position: absolute;
	top: -15px;
	left: 30px;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 0.9rem;
	background: linear-gradient(135deg, var(--fw-color-blue) 50%, var(--fw-color-green) 50%);
}

.fw-pack-card.fw-pack-base-portrait .fw-pack-badge {
	background: linear-gradient(135deg, var(--fw-color-blue) 50%, var(--fw-color-gold) 50%);
}

.fw-pack-card.fw-coaching-card .fw-pack-badge {
	border: 1px solid var(--fw-color-green);
	background: #fff;
	color: var(--fw-color-green);
}

.fw-pack-card h3 {
	font-size: 1.5rem;
	color: #2c2c2c;
	margin-bottom: 15px;
	margin-top: 10px;
}

.fw-pack-card .fw-pack-description {
	color: #666;
	margin-bottom: 25px;
	font-size: 1rem;
	line-height: 1.6;
}

.fw-pack-card .fw-pack-features {
	flex-grow: 1;
	list-style: none;
	margin-bottom: 30px;
	padding-left: 0;
}

.fw-pack-card .fw-pack-features li {
	padding: 10px 0;
	color: #666;
	font-size: 0.95rem;
}

.fw-pack-card .fw-pack-features li:before {
	content: "●";
	color: var(--fw-color-gold);
	font-weight: bold;
	margin-right: 10px;
}

.fw-coaching-card .fw-pack-features li:before {
	color: #1f818f;
}

.fw-pack-card .fw-pack-price {
	align-items: center;
	text-align: center;
	margin-bottom: 25px;
	padding: 20px;
	background-color: #f6f6f6;
	border-radius: 8px;
}

.fw-pack-card .fw-pack-price-label {
	display: block;
	font-size: 0.9rem;
	color: #999;
	margin-bottom: 5px;
}

.fw-pack-card .fw-pack-price-value {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	color: var(--fw-color-gold);
	margin-bottom: 5px;
}

.fw-coaching-card .fw-pack-price-value {
	color: #1f818f;
}

.fw-pack-card .fw-pack-price-save {
	display: block;
	font-size: 0.85rem;
	color: #1f818f;
	font-weight: bold;
}

.fw-pack-card .fw-button {
	width: 100%;
}

/* Newsletter */
.fw-newsletter {
	border-radius: 10px;
	padding: 60px 30px;
	background: linear-gradient(135deg, #1f818f 0%, #196b77 100%);
	color: white;
}

.fw-newsletter .fw-newsletter-content h2 {
	color: #fff;
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-weight: normal;
}

.fw-newsletter-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	line-height: 1.8;
}

.fw-newsletter-content ul {
	list-style: none;
	padding-left: 0;
}

.fw-newsletter-content li {
	font-size: 1.1rem;
	padding: 10px 0;
	line-height: 1.6;
}

.fw-newsletter-form {
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.fw-newsletter-form h3 {
	color: #2c2c2c;
	font-size: 1.8rem;
	margin-bottom: 25px;
	text-align: center;
}

.fw-newsletter .fw-newsletter-form input {
	width: 100% !important;
	padding: 15px !important;
	margin-bottom: 15px !important;
	border: 2px solid #e0e0e0;
	border-radius: 8px !important;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.fw-newsletter .fw-newsletter-form input:focus {
	outline: none;
	border-color: #1f818f;
}

.fw-newsletter .fw-newsletter-form input[type="submit"] {
	width: 100% !important;
	background-color: var(--fw-color-gold) !important;
	color: white !important;
	padding: 15px !important;
	border: none;
	border-radius: 8px !important;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.fw-newsletter .fw-newsletter-form input[type="submit"]:hover {
	background-color: #b88943;
	transform: translateY(-2px);
}

.fw-newsletter .fw-newsletter-privacy {
	text-align: center;
	font-size: 0.85rem;
	color: #999;
	margin-top: 15px;
}

.fw-newsletter .mailpoet_message {
	color: #030303;
}

.fw-newsletter .mailpoet_validate_success {
	color: var(--fw-color-green);
}

.fw-newsletter .mailpoet_validate_error {
	color: var(--fw-color-red);
}
