@charset "utf-8";
/* CSS Document 

TemplateMo 606 String Master

https://templatemo.com/tm-606-string-master

*/

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

:root {
	--bg-dark: #151A22;
	--bg-card: #20262F;
	--bg-card-2: #343E4D;
	--bg-elevated: #242424;
	--accent: #E7C462;
	--accent-light: #fbbf24;
	--accent-dark: #d97706;
	--text-primary: #fafafa;
	--text-primary-2: #cccccc;
	--text-secondary: #a5a5a5;
	--text-muted: #999999;
	--border: #20262F;
	--border2: ;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 0px; 
}

body {
	font-family: 'Roboto', sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
}

a {
	color: var(--accent);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(13, 13, 13, 0.9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-icon {
	width: 32px;
	height: 32px;
	background: var(--accent);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-donate {
	background-color: #E7C462;
	padding: 2px 8px;
	color: #151A22;
	border-radius: 6px;
	transition: all 0.3s;
}

.nav-donate:hover {
	background-color: #151A22;
	color: #E7C462;
	box-shadow: 0 0px 4px rgba(249, 185, 6, 0.9);
}

.nav-links {
	display: flex;
	margin-right: -20px;
	gap: 1.5rem;
	list-style: none;
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--accent);
}

.nav-links, .menu-coffeecup {
	color: #C3A759 !important;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
}

.nav-links, .menu-coffeecup:hover {
	color: #FFD86B !important;
}

.nav-cta {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 0.6rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s;
}

.nav-cta span {
	display: inline;
	background: transparent;
	padding: 0;
}

.nav-cta:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
}

/* Hero Section */
.hero {
	min-height: 100vh;  /* Comment to disable full-screen hero */
	display: flex;
	align-items: center;
	padding: 8rem 2rem 4rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 1;
}

@keyframes scale-hero {
  from {
		/*transform: translateX(-200px) scale(0.25);*/
    opacity: 0;
  }
  to {
    /*transform: translateY(0px) scale(1);*/
    opacity: 1;
  }
}

.hero-content {
  animation-name: scale-hero;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
}


.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.hero h1 .highlight {
	color: var(--accent);
}

h2 .highlight {
	color: var(--accent);
}



.highlight {
	color: var(--accent);
}

.hero-description {
	font-size: 1.15rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	max-width: 480px;
}

  /* CUSTOM TOOLTIP ON TOP OF THE PAGE */
  .custom-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dashed #ccc; /* Visual cue for users */
    cursor: help;
		z-index: 9999;
  }

  .custom-tooltip::after {
    content: attr(data-title);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background-color: #E7C462;
    color: #222;
		font-weight: 600;
    padding: 16px 16px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    font-size: 16px;
		z-index: 9999;
  }

  .custom-tooltip:hover::after {
    opacity: 1;
		z-index: 9999;
		white-space: pre-wrap;
		width: 400px; 
		box-sizing: border-box; 
		text-align: left;
  }

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
}

.btn-primary {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-2px);
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
	background: var(--accent);
	font-size: 0.9rem;
	color: var(--bg-dark);
	padding: 0.2rem 1.2rem;
	margin-top: 1rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.btn-secondary:hover {
	background: var(--accent-light);
	transform: translateY(-2px);
	text-decoration: none;
	box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.btn-tertiary {
	background: var(--bg-card);
	color: var(--text-primary);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	border: 0px solid var(--border);
	transition: all 0.2s;
}

.btn-tertiary:hover {
	border-color: var(--text-primary-2);
	transform: translateY(-2px);
	text-decoration: none;
	background: var(--bg-card-2);
}

.hero-stats {
	display: flex;
	gap: 3rem;
}

.stat {
	text-align: left;
}

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* Guitar Section */
.demo-loop video{
	position: relative;
	z-index: 0;
	border-radius: 15px;
}

@keyframes scale-demo {
  from {
		transform: translateX(200px) scale(0.25);
    opacity: 0;
  }
  to {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}

.demo-loop {
  animation-name: scale-demo;
  animation-duration: 0.7s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
}

/* Features Section */
.features {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 6rem 2rem;
	background: var(--bg-dark);
}

/* Sample clips Section */
.sample-clips {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 6rem 2rem;
	background: var(--bg-card);
}

/* Screenshots Section */
.screenshots {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 6rem 2rem;
	background: var(--bg-dark);
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-label {
	font-size: 0.85rem;
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
	margin-top: 0.5rem;
}

.section-title {
	font-size: clamp(1.4rem, 4vw, 1.9rem);
	font-weight: 600;
	margin-bottom: 0.5rem;
	letter-spacing: 0.02em;
}

.section-description {
	font-size: 1.0rem;
	color: var(--text-secondary);
	max-width: 800px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
}

.feature-card {
	background: var(--bg-card);
	border: 2px solid var(--border);
	border-radius: 16px;
	padding: 1.5rem;
	transition: all 0.5s;
}

.feature-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}
.card-top {
	display: flex; 
	align-content: center;
}

.card-title {
	margin: 5px 0px 0px 10px;
}

.feature-icon {
	width: 36px;
	height: 36px;
	background: var(--bg-card);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.7rem;
	color: var(--accent);
	transition: all 0.5s;
}

.feature-card:hover .feature-icon {
	background: var(--accent);
	color: var(--bg-dark);
}

.feature-card span {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 0.85rem;
}

/* Pricing Section */
.pricing {
	padding: 6rem 2rem;
}

/* quick-guide */
.quick-guide {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.quick-guide-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.quick-guide-card {
	background: var(--bg-dark);
	border: 2px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.5s;
}

.quick-guide-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}

.quick-guide-stars {
	color: var(--text-primary-1);
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 1rem;
	/*text-transform: uppercase;*/
}

.guide-icon {
	color: var(--accent);
	font-size: 1.35rem;
	margin-right: 8px;
}

.coffee-icon {
	color: ;
	text-decoration: none;
	font-size: 1.35rem;
	margin-right: 8px;
}

.quick-guide-list {
	color: var(--text-primary-2);
	padding-left: 20px;
	padding-bottom: 15px;
}

.quick-guide-text {
	color: var(--text-primary-2);
	font-size: 1rem;
	line-height: 1.3;
	margin-bottom: 1.1rem;
}

.quick-guide-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.quick-guide-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.quick-guide-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.quick-guide-name {
	font-weight: 600;
	font-size: 0.95rem;
}

.quick-guide-title {
	color: var(--text-muted);
	font-size: 0.8rem;
}

/* CTA Section */
.cta {
	padding: 6rem 2rem;
	background: var(--bg-card); /* Original: "var(--bg-card)" - Restore to it after bringing back the Screenshots section*/
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1000px;
	height: 600px;
	
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
	padding-top: 50px;
}

.cta h2 {
	font-size: clamp(2rem, 4vw, 2rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* Footer */
footer {
	padding: 4rem 2rem 2rem;
	border-top: 1px solid var(--border);
	background: var(--bg-dark);  /* Remove this line after bringing back the Screenshots section */
}

.footer-container {
	max-width: 1200px;
	margin: auto auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 40% 15% 45%;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-top: 1rem;
	/*max-width: 280px;*/
}

.footer-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
	border-bottom: 2px solid #777;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.4rem;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--accent);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.footer-bottom a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-bottom a:hover {
	color: var(--accent-light);
}

/* Mobile Menu */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content {
		order: 1;
	}

	.demo-loop {
		order: 0;
		max-width: 500px;
		margin: 0 auto;
	}

	.hero-description {
		margin: 0 auto 2rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.features-grid,
	.pricing-grid,
	.quick-guide-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

	.billing-toggle {
		flex-wrap: wrap;
		justify-content: center;
	}

	.billing-option {
		padding: 0.6rem 1.2rem;
		font-size: 0.85rem;
	}

	.instructors-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 880px) {

	.nav-links,
	.nav-cta {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	/* Mobile Menu */
	.nav-links.active {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(13, 13, 13, 0.98);
		backdrop-filter: blur(20px);
		padding: 0.5rem 0 0 0;
		gap: 0;
	}

	.nav-links.active li {
		border-bottom: 1px solid var(--border);
	}

	.nav-links.active li:last-child {
		border-bottom: none;
	}

	.nav-links.active a {
		display: block;
		padding: 1.35rem 2rem;
		font-size: 1.1rem;
	}

	.nav-cta.active {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		text-align: center;
		background: var(--bg-dark);
		padding: 1.5rem 2rem;
		border-top: 1px solid var(--border);
	}

	.nav-cta.active span {
		display: block;
		background: var(--accent);
		color: var(--bg-dark);
		padding: 1rem;
		border-radius: 8px;
		font-weight: 600;
	}

	.hero {
		padding: 6rem 1rem 3rem;
	}

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

	.hero-buttons {
		flex-direction: column;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.stat {
		text-align: center;
	}

	.guitar-card {
		padding: 1rem;
	}

	.fretboard-grid {
		grid-template-rows: repeat(6, 28px);
	}

	.string-labels {
		height: calc(6 * 28px);
		left: -24px;
	}

	.string-label {
		height: 28px;
		font-size: 0.6rem;
	}

	.note-marker {
		width: 14px;
		height: 14px;
		font-size: 0.4rem;
	}

	.instructors-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-brand p {
		margin: 1rem auto;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}