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

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  color: #281D1B;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  padding: 30px 0 0 0;
}

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

.logo, .nav-links {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.logo {
  text-decoration: none;
  color: #281D1B;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #281D1B;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

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

.hero-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 40px;
  background: url('TAL_app-icon.png') center/contain no-repeat;
}

.hero h1 {
  font-family: "Noto Serif", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
}

/* Main Section */
.main-section {
  padding: 24px 0;
}

.main-section-bg {
  background: #f8f6f3;
  border-radius: 20px;
  margin: 0 20px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-text h2 {
  font-family: "Noto Serif", serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.3;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

.content-text p.secondary {
	font-size: 1rem;
}

p.strong {
  font-weight: 600;
}

.app-store-btn {
  display: inline-block;
  margin-top: 30px;
}

.app-store-btn img {
  width: 150px;
}

.phone-mockup {
  max-width: 450px;
  position: absolute;
  bottom: -10px;
  right: 10%;
}

.phone-mockup img {
  max-width: 100%;
}

/* Features Section */
.features {
  padding: 24px 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.feature-card {
  background: #f8f6f3;
  padding: 80px;
  border-radius: 20px;
}

.feature-card h3 {
  font-family: "Noto Serif", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* About Section */
.about {
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.about-bg {
  background: #f8f6f3;
  border-radius: 20px;
  margin: 0 20px;
  padding: 80px 60px;
	overflow:hidden;
	position:relative;
}

.about-content {
	max-width:650px;
}

.decorative-lines {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 450px;
  height: 450px;
  background: url('TAL-icon_art.png') center/contain no-repeat;
}

.about h3 {
  font-family: "Noto Serif", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.about p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.contact-email, .about p a {
  color: #281D1B;
  text-decoration: underline;
}

/* Footer */
.footer {
  text-align: center;
  padding: 24px 0 60px;
  color: #666;
  font-size: 14px;
}

.d-fab {
  width:50px;
  height:50px;
  border-radius:100px;
  background:#fff url('Discord-Symbol-Blurple.svg') center center no-repeat;
  background-size: 70%;
  padding:8px;
  text-decoration: none;
  position: fixed;
  bottom:24px;
  right:24px;
  box-shadow: 1px 0px 16px 0px rgba(0,0,0,0.25);
  -webkit-box-shadow: 1px 0px 16px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 1px 0px 16px 0px rgba(0,0,0,0.25);
  z-index:500;
}

/* Responsive Styles */
@media (max-width: 1080px) {
  .nav-links {
    gap: 20px;
    font-size: 12px;
  }

  .logo {
    font-size: 12px;
  }

  .main-content {
    grid-template-columns: 1fr;
    gap: 0px;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-card {
    padding: 40px 30px;
  }

  .main-section-bg,
  .about-bg {
    margin: 0 15px;
    padding: 30px 20px;
  }

  .phone-mockup {
    position: relative;
    bottom: -70px;
    right: 0;
    margin: 0 auto;
  }
  
  .about-content {
		max-width:450px;
	}
  
  .decorative-lines {
    right: 0px;
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .nav {
  	padding: 0 4px;
  }
  
  .hero-icon {
    margin: 0 auto 24px;
}

  .hero h1 {
    font-size: 2rem;
  }

  .content-text h2,
  .feature-card h3,
  .about h3 {
    font-size: 1.6rem;
  }
  
  .content-text p, .feature-card p {
  	line-height: 1.6;
	}

  .feature-card {
    padding: 30px 32px;
  }
  
  .decorative-lines {
    right: -20px;
    width: 200px;
    height: 200px;
  }
  
  .about-bg {
  	padding-bottom:100px;
  }
  
  .decorative-lines {
  	bottom: -30px;
	}
	
  .hide-mobile {
    display:none;
  }
  
  .d-fab {
    bottom:16px;
    right:24px;
  }
}