/* --- Global Styles & Variables --- */
:root {
    --bg-color: #050505;
    --panel-bg-color: #1A120B; /* Dark Brown from design */
    --text-color: #EAEAEA;
    --text-secondary-color: #A0A0A0;
    --accent-color: #D4AF37; /* Gold */
    --accent-hover-color: #E7C668;
    --testimonial-card-bg: #E1E1E1;
    --testimonial-text-color: #111111;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

main > section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s, transform 0.2s;
}

.button:hover {
    background-color: var(--accent-hover-color);
    transform: translateY(-2px);
}

/* --- Header --- */
.main-header {
    padding: 15px 0;
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-text {
    font-weight: bold;
    font-size: 1rem;
    color: var(--accent-color);
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 60px 0;
}

.hero-logo-wrapper {
    position: relative;
    display: inline-block;
}

.hero-logo {
    position: relative;
    z-index: 2;
    width: 200px; /* Adjust size as needed */
    border-radius: 50%;
}
/* Style for the new hero video */
.hero-video {
    width: 100%;
    max-width: 1000px; /* Control the maximum size of your video */
    height: auto;
    border-radius: 10px; /* Optional: gives the video slightly rounded corners */
    display: block;
    margin-left: auto;
    margin-right: auto;
}
 

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 20px;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary-color);
    margin-top: 10px;
}

/* --- Value Proposition --- */
.value-prop h2 { color: var(--text-color); }
.prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: start;
}

/* Make the first value prop narrower than the others */
.prop-item:first-child {
    max-width: 420px;      /* reduce width of first item */
    justify-self: start;   /* keep it left-aligned in the grid column */
}

/* If only one value prop is present, make it narrower and center it */
.prop-grid > .prop-item:only-child {
    max-width: 420px;      /* reduce width when it's the lone item */
    width: 100%;
    justify-self: center;  /* center the item in the grid */
    padding-left: 18px;    /* keep visual indent from the accent border */
}

/* small tweak for very narrow viewports */
@media (max-width: 700px) {
    .prop-item:first-child { max-width: 100%; justify-self: stretch; }
}

.prop-item {
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}

.prop-item h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--text-color); }
.prop-item p { color: var(--text-secondary-color); }

/* Products section */
.products { padding: 60px 0; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: start;
}
.product-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.04);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.product-card h3 { margin: 0 0 8px 0; color: var(--text-color); font-size: 1.2rem; }
.product-desc { color: var(--text-secondary-color); margin-bottom: 12px; }
.price-row { display:flex; justify-content:center; gap:12px; align-items:center; margin-bottom:8px; }
.original-price { text-decoration: line-through; color: #bdbdbd; }
.discount { color: var(--accent-color); font-weight:700; }
.final-price { font-size: 1.6rem; font-weight: 800; color: var(--accent-color); margin-bottom:8px; }
.time-limit { font-size: 0.9rem; color: #ffb86b; margin-bottom:12px; }

/* Make Buy Now buttons match .button but full width on small screens */
.product-card .button { width: 100%; padding: 12px 16px; font-size: 1rem; }

/* Compact product styles (overrides for more condensed layout) */
.products--compact .section-title { margin-bottom: 28px; font-size: 1.9rem; }

.product-grid.compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.product-card.compact {
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 320px;
}

.product-card.compact .card-head {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:14px;
}

.product-card.compact h3 {
    font-size: 1.15rem;
    margin: 0 0 6px 0;
    color: var(--text-color);
}

.product-card.compact .muted {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    margin: 0;
}

.badge {
    background: rgba(212,175,55,0.12);
    color: var(--accent-color);
    font-weight:700;
    padding:6px 10px;
    border-radius:8px;
    font-size:0.86rem;
}

.badge--muted {
    opacity: 0.95;
    background: rgba(255,255,255,0.03);
    color: var(--text-secondary-color);
}

.price-row.compact {
    display:flex;
    align-items:baseline;
    gap:12px;
}

.original-price.small { font-size:0.92rem; text-decoration:line-through; color:#b0b0b0; }

.final-price-large {
    font-size:2.0rem;
    font-weight:900;
    color: var(--accent-color);
}

.final-price-large .cents { font-size:0.88rem; font-weight:800; }

.features.compact {
    list-style:none;
    padding:0;
    margin:10px 0;
    color:var(--text-secondary-color);
    font-size:0.95rem;
    line-height:1.3;
    display:block;
}

.features.compact li {
    margin-bottom:8px;
    padding-left:20px;
    position:relative;
}
.features.compact li::before {
    content: "✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--accent-color);
    font-weight:800;
    font-size:0.95rem;
}

.card-foot {
    margin-top:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
}

.time-limit { font-size:0.88rem; color:#ffb86b; }

.product-card.compact .button {
    padding:10px 14px;
    font-size:1rem;
    min-width:120px;
    white-space:nowrap;
}

/* Featured card slight lift */
.product-card.compact.featured {
    box-shadow: 0 10px 26px rgba(0,0,0,0.50);
    transform: translateY(0);
}

@media (max-width: 700px) {
    .product-grid.compact { grid-template-columns: 1fr; }
    .product-card.compact { min-height: auto; }
    .final-price-large { font-size:1.6rem; }
}

/* If only one product is present, make it narrower and center it */
.product-grid.compact > .product-card:only-child {
    max-width: 400px;      /* reduce width when it's the lone product */
    width: 100%;
    justify-self: center;  /* center the card in the grid */
    margin: 0 auto;
}

/* small screens: let it stretch full width again */
@media (max-width: 700px) {
    .product-grid.compact > .product-card:only-child {
        max-width: 90%;
        margin: 20px;
    }
}

/* --- Testimonials Section --- */
.testimonial-item {
    background-color: var(--testimonial-card-bg);
    color: var(--testimonial-text-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.testimonial-item.testimonial00{
  margin-right: 50px;
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover; /* <-- Add this line */

}

.testimonial-content blockquote {
    font-size: 1.2rem;
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0 0 15px 0;
}
.testimonial-content cite {
    font-weight: bold;
    font-style: normal;
}

/* Alternating Layout */
.testimonial-item.testimonial--reverse {
    flex-direction: row-reverse;
    margin-left: 50px;

}

/* --- Call to Action (CTA) --- */
.cta {
    background-color: var(--bg-color);
    text-align: center;
}
.cta h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: white; }
.lead-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.lead-form input[type="email"] {
    padding: 15px;
    width: 320px;
    border: 1px solid #444;
    background-color: #222;
    color: var(--text-color);
    border-radius: 5px;
    font-size: 1rem;
}
.form-message { margin-top: 15px; font-size: 0.9rem; height: 20px; }

/* --- Footer Styles --- */
footer {
  background: var(--panel-bg-color);
  color: var(--color-footer-text);
  padding: 40px 0 20px 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 100px; /* Increased gap for more space */
}

.footer-left, .footer-center, .footer-right {
  flex: 1 1 250px;
  margin: 0 20px;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 16px;
}

.footer-desc {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-social a img {
  width: 28px;
  margin-right: 12px;
  vertical-align: middle;
}

.footer-top-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #2563EB;
  border: none;
  color: #fff;
  padding: 10px 24px;
  margin-top: 24px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(37,99,235,0.12);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-top-btn a {
  color: #fff;
  text-decoration: none;
}

.footer-top-btn:hover {
  background: #FB7185;
  transform: translateY(-2px) scale(1.04);
}

.footer-top-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.footer-center h4, .footer-right h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-center ul, .footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-center ul li, .footer-right ul li {
  margin-bottom: 8px;
}

.footer-center ul li a, .footer-right ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.footer-center ul li a:hover, .footer-right ul li a:hover {
  text-decoration: underline;
}

.footer-bar {
  border-top: 1px solid #fff;
  margin: 30px 0 10px 0;
}

.footer-copyright {
  text-align: center;
  font-size: 0.95rem;
  margin-top: 8px;
  color: #fff;
}
.contact{
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.contact:hover {
  text-decoration: underline;
}
/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .testimonial-item, .testimonial-item.testimonial--reverse {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 520px) {
    .product-grid.compact { grid-template-columns: 1fr; }
    .product-card.compact { min-height: auto; }
}

/* Article preview card (matches the first image format) */
.article-preview { padding: 60px 0; }

.article-preview .container {
    display: grid;
    gap: 100px; /* increase this value to widen spacing between article cards */
}

.article-card {
    background: transparent;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Body under the image */
.article-body {
    padding-top: 14px;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin: 10px 0 14px 0;
    color: var(--text-color);
    line-height: 1.15;
}

/* Meta row: author, followers, date, actions */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.06);
}

.author-name {
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.98rem;
}

.author-followers {
    color: var(--text-secondary-color);
    font-size: 0.88rem;
    margin-top: 2px;
}
.news{
    color: var(--text-color);
    text-decoration: none;
}
.news:hover { color: var(--accent-hover-color); text-decoration: underline; }

/* Right-side meta */
.meta-right {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary-color);
    font-size: 0.95rem;
}

.article-date { color: var(--text-secondary-color); font-size: 0.92rem; }

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    font-size: 1.05rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
}
.icon-btn:hover { color: var(--text-color); background: rgba(255,255,255,0.02); }

/* Responsive tweaks */
@media (min-width: 900px) {
    .article-card { grid-template-columns: 1fr; }
    .article-title { font-size: 2.4rem; }
}
@media (max-width: 520px) {
    .article-title { font-size: 1.3rem; }
    .author-avatar { width: 36px; height: 36px; }
}