:root {
    --teal: #33b1b0; /* Close match to bodybar pilates teal */
    --teal-dark: #2ba2a1;
    --text-color: #333333;
    --font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
}

html {
    font-size: 16px !important;
}

#plankstock-wrapper {
    font-family: var(--font-family) !important;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#plankstock-wrapper *,
#plankstock-wrapper h1,
#plankstock-wrapper h2,
#plankstock-wrapper h3,
#plankstock-wrapper p,
#plankstock-wrapper span,
#plankstock-wrapper a,
#plankstock-wrapper div,
#plankstock-wrapper li {
    font-family: var(--font-family) !important;
    box-sizing: border-box;
    letter-spacing: normal !important;
}

img {
    max-width: 100%;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: max(75vh, 600px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #e0e0e0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 70%;
}

/* Pattern overlay */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px; /* Depending on the SVG, we might just tile it at the top */
    background-image: url('../images/plankstock-dot-pattern.svg');
    background-repeat: repeat-x;
    background-size: auto 100%;
    opacity: 0.7;
    mix-blend-mode: overlay; /* or normal, adjust if needed */
}

/* Content over hero image */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem;
    padding-bottom: 3rem;
}

.hero-logo-bottom {
    width: 100%;
    max-width: 600px; /* Make it large as requested */
    margin-bottom: 0rem;
}

.hero-logo-bottom img {
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); /* to make user read it easily over image */
}

/* Countdown Card */
.countdown-card {
    background: rgba(255, 255, 255, 0.7); /* 70% opacity white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 360px;
    align-self: flex-start; /* keep to top right */
    margin-top: 1rem;
}

.card-logo {
    width: 100%;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--teal);
    font-style: italic;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.time-value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px !important;
}

.time-label {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px !important;
    margin-top: 0.2rem;
}

.time-sep {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-top: -1.5rem; /* center the colon visually */
}

/* Banner Section */
.banner {
    position: relative;
    z-index: 2;
    background-color: rgba(51, 177, 176, 0.8);
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 2rem;
}

.banner h1 {
    font-size: 2.2rem;
    font-weight: 400; 
    font-style: italic;
    letter-spacing: 0px !important;
}

.banner h1 strong {
    font-weight: 900;
    font-style: italic;
}

/* Content Section Layout */
.content-section {
    max-width: 1100px; /* tighter max width for reading */
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

/* Left Column */
.content-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-block h2 {
    color: var(--teal);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-style: italic; /* Match Bodybar's energetic branding */
}

.info-block p,
.info-block ul {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.info-block ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

/* Right Column */
.content-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.people-img {
    width: 100%;
    border-radius: 40px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.illustrations {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.illustrations img {
    max-width: 100%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .content-section {
        grid-template-columns: 1fr;
    }
    
    .content-right {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 80vh;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        align-items: center;
        gap: 3rem;
        padding-top: 4rem;
    }
    
    .hero-logo-bottom {
        max-width: 90%;
    }
    
    .countdown-card {
        margin-top: 0;
        min-width: 0;
        width: 100%;
        max-width: 400px;
    }
    
    .banner h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .time-value {
        font-size: 3rem;
    }
    
    .time-sep {
        font-size: 2.5rem;
    }
    
    .time-block {
        min-width: 50px;
    }
    
    .countdown-card {
        padding: 1.5rem;
    }
    
    .info-block h2 {
        font-size: 1.5rem;
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background-color: #f7f7f7;
    margin-top: 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--teal);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-style: italic;
}

.cta-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--teal);
    color: #000000;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #CEDD44;
    color: #000000;
}
