/* Font imports */
@font-face {
  font-family: "SofiaPro Black";
  src: url("./fonts/SofiaPro-Black.otf");
}

@font-face {
  font-family: "SofiaPro Bold";
  src: url("./fonts/SofiaPro-Bold.otf");
}

@font-face {
  font-family: "SofiaPro Medium";
  src: url("./fonts/SofiaPro-Medium.otf");
}

@font-face {
  font-family: "SofiaPro SemiBold";
  src: url("./fonts/SofiaPro-SemiBold.otf");
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "SofiaPro Medium", sans-serif;
  font-size: 17px;
  color: white;
  background-image: url("./assets/bck.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: transparent;
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 150px;
  height: 60px;
  position: relative;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #406b8c;
}

/* Main content styles */
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  text-align: center;
  padding: 100px 0;
}

h1 {
  font-family: "SofiaPro Bold", sans-serif;
  font-size: 36px;
  margin-bottom: 10px;
}

h2 {
  font-family: "SofiaPro SemiBold", sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* App features section */
.app-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
}

.feature {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
}

.feature h3 {
  font-family: "SofiaPro SemiBold", sans-serif;
  margin-bottom: 10px;
  font-size: 22px;
}

/* App store buttons */
.app-stores {
  margin-top: 50px;
}

.app-stores h3 {
  font-family: "SofiaPro SemiBold", sans-serif;
  margin-bottom: 20px;
  font-size: 24px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.store-buttons a {
  width: 200px;
  transition: transform 0.3s ease;
}

.store-buttons a:hover {
  transform: scale(1.05);
}

.store-buttons img {
  width: 100%;
  height: auto;
}

/* Footer styles */
footer {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px 0;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-links a {
  color: white;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #406b8c;
}

footer p {
  font-size: 14px;
  margin: 0;
}

/* Button styles */
button {
  background-color: #2563eb; /* blue-600 */
  color: white;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 9999px; /* rounded-full */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0 10px;
}

button:hover {
  background-color: #406b8c;
}

button a {
  color: white;
  text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .app-features {
    flex-direction: column;
    align-items: center;
  }
  
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  p {
    font-size: 16px;
  }
}
