/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4bbd7a;
  --primary-dark: #3a9c62;
  --secondary-color: #cbe06c;
  --text-color: #333;
  --light-text: #666;
  --light-bg: #f9f9f9;
  --white: #fff;
  --border-color: #e0e0e0;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 10px;
}

body {
  font-family: 'Raleway', Arial, sans-serif;
  line-height: 1.6;
  background: var(--light-bg);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 80px; /* Space for fixed navbar */
  overflow-x: hidden;
}

.brand-name {
  font-family: 'Brush Script MT', cursive;
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-color);
}

/* Navbar */
.navbar {
  background: var(--white);
  color: var(--text-color);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar nav ul {
  display: flex;
  list-style: none;
}

.navbar nav ul li {
  margin: 0 15px;
}

.navbar nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s;
}

.navbar nav ul li a:hover {
  color: var(--primary-color);
}

.nav-buttons {
  display: flex;
  align-items: center;
}

.btn {
  text-decoration: none;
  color: var(--white);
  background: var(--primary-color);
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background: var(--primary-dark);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: var(--text-color);
  transition: all 0.3s;
}

/* Language selector */
.lang-selector {
  position: relative;
  margin-right: 15px;
}

.lang-toggle {
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-toggle:hover {
  background: var(--primary-color);
  color: var(--white);
}

.language-dropdown {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 5px;
  width: 150px;
  z-index: 100;
}

.language-dropdown ul {
  list-style: none;
}

.language-dropdown ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--text-color);
  transition: background-color 0.3s;
}

.language-dropdown ul li a:hover {
  background: var(--light-bg);
}

.lang-selector:hover .language-dropdown {
  display: block;
}

/* Main content */
.content {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}

.hero-text p {
  font-size: 18px;
  margin: 20px 0;
  color: var(--light-text);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  max-width: 300px;
}

.oval-link {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s, transform 0.2s;
}

.oval-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Phone mockup */
.phone {
  width: 280px;
  height: 550px;
  background: var(--white);
  border-radius: 30px;
  border: 5px solid var(--text-color);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.profile-header {
  position: relative;
  width: 100%;
  height: 180px;
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-image-container {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border: 3px solid var(--white);
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info-header {
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.profile-info-header h3 {
  font-size: 18px;
  margin: 0;
  color: var(--text-color);
}

.profile-info-header p {
  font-size: 14px;
  color: var(--light-text);
  margin: 0;
}

.profile-content {
  padding: 80px 20px 20px;
  flex: 1;
}

.profile-content p {
  margin: 10px 0;
  font-size: 14px;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  font-size: 14px;
}

.actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.actions .btn {
  flex: 1;
  text-align: center;
}

.subscribe {
  background: var(--primary-color);
}

.tip {
  background: #f3f3f3;
  color: var(--text-color);
}

/* Earnings calculator */
.earnings-calculator {
  padding: 40px 0;
  background: var(--light-bg);
}

.calculator-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.calculator {
  margin-top: 20px;
}

.slider-container {
  margin: 20px 0;
}

.slider-container label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.slider-container small {
  display: block;
  margin-top: 5px;
  color: var(--light-text);
  font-size: 12px;
}

input[type="range"] {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
}

.earnings-display {
  background: #f3f3f3;
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 30px;
}

.earnings-display h3 {
  margin-bottom: 10px;
}

.earnings-display p {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 10px 0;
}

/* Creators section */
.creators-section {
  padding: 40px 0;
}

.profiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.profile-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.profile-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.profile-info {
  padding: 15px;
  text-align: center;
}

.profile-info b {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.profile-info p {
  color: var(--light-text);
  font-size: 14px;
}

/* Feature highlight sections */
.feature-highlight {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-highlight.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  margin-bottom: 15px;
  text-align: left;
}

.feature-text p {
  margin-bottom: 25px;
  color: var(--light-text);
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Chat phone */
.chat-phone {
  width: 280px;
  height: 550px;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 5px solid var(--text-color);
}

.chat-header {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  padding: 15px;
  color: var(--white);
}

.chat-profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid var(--white);
}

.chat-header h3 {
  margin: 0;
  font-size: 16px;
}

.chat-header p {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.exclusive-content {
  background: #202040;
  border: 1px solid var(--white);
  border-radius: 10px;
  padding: 15px;
  color: var(--white);
  text-align: center;
  font-size: 14px;
}

.user-message {
  align-self: flex-start;
  max-width: 80%;
  padding: 10px;
  border-radius: 10px;
  background: #f2f2f2;
  font-size: 14px;
}

.user-message span {
  display: block;
  text-align: right;
  font-size: 10px;
  margin-top: 5px;
  color: #999;
}

.owner-message {
  align-self: flex-end;
  max-width: 80%;
  padding: 10px;
  border-radius: 10px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 14px;
}

.chat-input {
  display: flex;
  align-items: center;
  padding: 10px;
  border-top: 1px solid var(--border-color);
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 20px;
  background: #f2f2f2;
  font-size: 14px;
}

.chat-input button {
  margin-left: 10px;
  background: #202040;
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

/* Post section */
.post-section {
  padding: 40px 0;
}

.post {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.user-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.user-details h3 {
  margin: 0;
  font-size: 16px;
}

.user-details span {
  font-size: 12px;
  color: var(--light-text);
}

.post-text {
  margin-bottom: 20px;
  font-size: 15px;
}

.locked-content {
  background: #d48c6c;
  color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 20px;
}

.unlock-button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  margin: 15px 0;
  transition: background-color 0.3s;
}

.unlock-button:hover {
  background: var(--primary-dark);
}

.price {
  font-size: 16px;
  margin: 0;
}

.post-actions {
  display: flex;
  justify-content: space-between;
  color: var(--light-text);
  font-size: 14px;
}

/* Features section */
.features-section {
  padding: 60px 0;
  background: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.feature p {
  color: var(--light-text);
  font-size: 15px;
}

/* Philosophy section */
.philosophy-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 0;
}

.text-content {
  max-width: 600px;
  margin: 0 auto;
}

.text-content p {
  margin-bottom: 20px;
  color: var(--light-text);
  font-size: 16px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.image-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s;
}

.image-container img:hover {
  transform: scale(1.05);
}

/* FAQ section */
.faq-section {
  padding: 60px 0;
  background: var(--light-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq {
  margin-bottom: 15px;
}

.faq-btn {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
}

.faq-btn:hover {
  background: #f5f5f5;
}

.faq-btn::after {
  content: '+';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.faq-btn:focus {
  outline: none;
}

.faq-btn:focus::after {
  content: '-';
}

.faq-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background: var(--white);
  border-radius: 0 0 5px 5px;
}

.faq-btn:focus + .faq-content {
  padding: 15px;
  max-height: 200px;
  border-left: 3px solid var(--primary-color);
}

/* CTA section */
.cta-section {
  background: var(--secondary-color);
  padding: 60px 20px;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 18px;
}

.cta-content .oval-link {
  display: inline-block;
  margin-top: 20px;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 40px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about {
  max-width: 300px;
}

.footer-about p {
  margin: 15px 0;
  line-height: 1.5;
}

.social-icons a {
  color: var(--white);
  font-size: 24px;
  margin-right: 15px;
  text-decoration: none;
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-links ul li a:hover {
  opacity: 0.8;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
  }
  
  .feature-highlight {
    flex-direction: column;
    padding: 40px 0;
  }
  
  .feature-highlight.reverse {
    flex-direction: column;
  }
  
  .feature-text {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .feature-text h2 {
    text-align: center;
  }
  
  .philosophy-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  
  .navbar {
    padding: 10px 15px;
  }
  
  .navbar nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: left 0.3s ease;
    z-index: 999;
    padding: 80px 20px 20px;
  }
  
  .navbar nav.active {
    left: 0;
  }
  
  .navbar nav ul {
    flex-direction: column;
  }
  
  .navbar nav ul li {
    margin: 15px 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 24px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .brand-name {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .hero-text h2 {
    font-size: 28px;
  }
  
  .hero-text p {
    font-size: 16px;
  }
  
  .phone, .chat-phone {
    width: 260px;
    height: 500px;
  }
  
  .profiles {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  
  .profile-img {
    height: 140px;
  }
  
  .calculator-container {
    padding: 20px;
  }
  
  .earnings-display p {
    font-size: 20px;
  }
  
  .footer-content {
  }
  
  .footer-about {
    text-align: center;
    margin: 0 auto;
  }
}