
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 100;
}

.icon {
    color: aliceblue;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,*::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


/* ============================================
====================HEADER==================
============================================ */

body {
  font-family: 'Inter', sans-serif;
  background: #000000;
}


.hero {
  position: relative;
  height: 550px;
  background: url('images/Background-img.JPG') no-repeat center center/cover;
  color: white;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(
    to bottom, 
    #000000, 
    transparent 20%,
    transparent 70%,
    #000000);
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.486);
}

.header {
  max-width: 1213px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  z-index: 2;
}


.header img {
  width: 120px;
  padding: 0 ;
}

.signin-btn {
  background-color: red;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 35%;
  transform: translateY(-35%);
  max-width: 650px;
  margin: 0 auto;
  padding: 0 30px;
  text-shadow: 0px 0px 20px #000000;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.start-btn {
  font-size: 20px;
  font-weight: bolder;
  padding: 10px;
  border-radius: 11px;
  border: 1px solid rgb(255, 0, 0);
  font-weight: bold;
  background-color: rgb(255, 0, 0);
  color: whitesmoke;
  box-shadow: 0px 0px 20px #ff00005d;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

.start-btn:hover{
  background-color: rgb(158, 0, 0);
}

.hero-content button svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* ===================================================== */
.faq-container {
  background-color: #000000;
  padding-bottom: 60px;
}

.faq-section {
  max-width: 740px;
  margin: auto;
  padding: 50px 30px;
}

.faq-section h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: white;
}

.faq {
  margin-bottom: 10px;
}

.faq input {
  display: none;
}

.faq-question {
  background: #2d2d2d;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.4rem;
}

.faq-question:hover {
  background: #444;
}

.faq-answer {
  background: #1c1c1c;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  padding: 0 20px;
  color: white;
}

.faq input:checked ~ .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.symbol {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq input:checked + label .symbol {
  transform: rotate(45deg);
}



/* ========mobile view========= */
@media (max-width: 600px) {
  .quick-start-card{
    width: 360px;
  }

  
  .icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    font-size: 20px;
    line-height: 25px;
  }

  .text .main-text {
    font-size: 19px;
    text-align: left;
  }

  .faq-question {
    font-size: 1rem;
  }
  

}

/* ====================================== */

.card-container {
  max-width: 980px;
  margin: 80px auto;
  margin-top: 20px;
  padding: 0 8px;
}

.card-title {
  color: white;
  font-size: 2.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.card-album {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.card-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  flex: 1;
}

.card-track::-webkit-scrollbar {
  display: none;
}

.card-track a {
  flex: 0 0 23%; /* ~4 cards per view on desktop */
  border-radius: 10px;
  overflow: hidden;
}

.card-track img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-track img:hover {
  transform: scale(1.05);
}

.arrow {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

.arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.arrow.left {
  margin-right: 10px;
}

.arrow.right {
  margin-left: 10px;
}

/* MOBILE VIEW: 2 cards per view */
@media screen and (max-width: 768px) {
  .card-track {
    gap: 10px;
  }
  
  .card-track a {
    flex: 0 0 50%;
  }

  .card-title {
    font-size: 2rem;
  }

  .arrow {
    font-size: 18px;
    padding: 8px 10px;
  }
}

/* ============================================ */
.reasons-container {
  max-width: 980px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.reasons-title {
  color: white;
  font-size: 2rem;
  margin-bottom: 40px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.reason-card {
  background: linear-gradient(135deg, #3a0d26, #1a002c);
  border-radius: 15px;
  padding: 25px;
 
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.35), 0 0 10px rgba(138, 43, 226, 0.2);
}

.reason-main {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}

.reason-sub {
  font-size: 0.95rem;
  color: #ffffff81;
  line-height: 1.4;
}
