/* Base styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --font-main: 'Montserrat', sans-serif;
    --container-width: min(1200px, 95vw);
    --header-height: 80px;
    --section-padding: 4rem 0;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Display Settings */
@font-face {
  font-family: 'Montserrat';
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  font-display: swap;
}

/* Header Buy Button */
.header-buy-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.header-buy-button a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #f59e0b; /* var(--accent-color) */
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
}

.header-buy-button a i {
    margin-right: 8px;
}

.header-buy-button:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .header-buy-button {
        top: 15px;
        right: 15px;
    }
    
    .header-buy-button a {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

html {
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

/* Section Spacing */
section {
    padding: var(--section-padding);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 100%;
}

h1 { font-size: clamp(2rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.1rem); }

p {
    margin-bottom: 1rem;
    font-size: clamp(0.875rem, 2vw, 1rem);
    max-width: 100%;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation */
nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    max-width: 100%;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: calc(100vh - var(--header-height));
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Section Styles */
.section-title {
    margin-bottom: 2rem;
    text-align: center;
}

/* Component Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: clamp(0.875rem, 2vw, 1rem);
    max-width: 100%;
    white-space: nowrap;
}

.btn:hover {
    background-color: #0056b3;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: clamp(1rem, 2vw, 2rem);
    margin-bottom: 2rem;
    max-width: 100%;
    overflow: hidden;
}

/* Form Styles */
form {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: clamp(0.875rem, 2vw, 1rem);
    max-width: 100%;
}

/* Social Platform Cards */
.social-platform-card {
    text-align: center;
    padding: clamp(1rem, 2vw, 2rem);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.social-platform-card:hover {
    transform: translateY(-5px);
}

/* Review Cards */
.review-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: clamp(1rem, 2vw, 2rem);
    margin-bottom: 2rem;
    max-width: 100%;
    overflow: hidden;
}

.review-card .reviewer {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.review-card .rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

/* Media Elements */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    max-width: 100%;
    padding-left: 1.5rem;
}

/* Links */
a {
    max-width: 100%;
    word-break: break-word;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero {
        padding: clamp(4rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
    }
    
    section {
        padding: clamp(1.5rem, 4vw, 3rem) 0;
    }
}

/* About Section */
.about-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.about-img {
    flex: 0 0 300px;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-img {
        flex: 0 0 auto;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    position: relative;
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '\f068';
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    margin-top: 0;
    line-height: 1.6;
    color: #4b5563;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Site Footer with additional padding to prevent testimonial overlap */
.site-footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 3rem 0 80px; /* Added extra padding at the bottom to make room for testimonials */
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Fixed Buy Button */
.fixed-buy-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  transition: transform 0.3s ease;
}

.fixed-buy-button a {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
}

.fixed-buy-button a i {
  margin-right: 8px;
}

.fixed-buy-button:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .fixed-buy-button {
    bottom: 15px;
    left: 15px;
  }
  
  .fixed-buy-button a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
} 