/* TEMPLATE */
/* Main Content Section */
.main-content {
  height: 70vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* TODO(Miky): Fix this */
.privacy-content {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Content Block */
.content-block {
  width: 90%;
  max-width: 1200px;
  height: 100%;
}

.navbar-highlight {
  color: black;
  font-weight: 850;
}


/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header */
header {
  background-color: #f8f8f8;
  color: #666;
  padding: 5px 0;
}

header .branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo Icon */
.logo-icon {
  width: auto;
  height: 40px;
}

.logo {
  font-size: 1.2em;
  font-weight: bold;
  margin-right: 8px;
  color: #444;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.subtitle {
  font-size: 1.2em;
  font-weight: normal;
  color: #999;
}

.subtitle a {
  text-decoration: none;
  color: inherit;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul li a {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #000;
}

/* Hero Section */
.hero {
  background: #5B5AC3;
  height: 70vh;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.text-section {
  max-width: 650px;
}

.hero h2 {
  font-size: 3em;
  font-weight: bold;
  color: #e1ddfd;
  letter-spacing: -0.05em;
}

.hero p {
  font-size: 1.1em;
  color: #c8c0ff;
  margin-bottom: 20px;
}

.download-btn {
  background-color: #000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.apple-logo {
  width: 1.2rem;
  height: auto;
  margin-right: 8px;
}

.download-btn:hover {
  background-color: #555;
}

/* Image Section */
.image-section {
  display: flex;
  gap: 20px;
}

.phone-img {
  height: 600px;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 40px 0;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-section {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero h2 {
    font-size: 2.5em;
  }

  .hero p {
    font-size: 1em;
  }

  .image-section {
    justify-content: center;
  }

  .phone-img {
    padding-left: 5%;
    height: 400px;
  }
}

/* Features Section */
.features {
  padding: 40px 0;
  background-color: #ffffff;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.feature-item {
  flex: 1 1 300px;
  padding: 30px;
  background-color: #f3f3fd;
  border: 4px solid #5B5AC3;
  /* Yellow border */
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: left;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
  font-size: 1.3em;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1em;
  color: #555;
}

.feature-item .icon {
  font-size: 2em;
  position: absolute;
  top: 20px;
  right: 25px;
}

/* New Features Section */
.features-new {
  padding-bottom: 80px;
  background-color: #fff;
}

.features-container {
  flex-direction: column;
  background-color: #f3f3fd;
  padding: 2rem;
  border-radius: 1rem;
  gap: 60px;
}

.features-title {
  font-size: 2.5em;
  text-align: center;
  color: #333;
  margin-bottom: 40px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 1.1em;
  color: #666;
  line-height: 1.6;
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-image img {
  max-width: 300px;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-row {
    flex-direction: column;
    text-align: center;
  }

  .feature-row.reverse {
    flex-direction: column;
  }

  .feature-image img {
    max-width: 250px;
  }

  .features-title {
    font-size: 2em;
  }

  .container {
    display: block;

  }
}


/* Testimonials Section */
.testimonials {
  padding: 40px 0;
  background-color: #f3f3fd;
}

.testimonials-container {
  flex-direction: column;
}

.testimonials-title {
  font-size: 2.5em;
  text-align: center;
  color: #333;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}

.testimonial-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  color: #ffd700;
  font-size: 1.2em;
}

.testimonial-card h3 {
  font-size: 1.2em;
  color: #333;
  font-weight: bold;
}

.testimonial-card p {
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

.reviewer-info {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviewer-name {
  font-weight: bold;
  color: #333;
}

.reviewer-location {
  color: #666;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-title {
    font-size: 2em;
  }

  .testimonial-card {
    margin: 0 20px;
  }
}

/* Promotional Banner */
.promo-banner {
  background-color: #1e2432;
  padding: 60px 20px;
  text-align: center;
  margin-top: 80px;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.banner-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.banner-title {
  font-size: 2.8em;
  color: #ffffff;
  font-weight: bold;
  margin: 0;
}

.banner-text {
  font-size: 1.2em;
  color: #a0a7b8;
  margin-bottom: 10px;
}

.banner-button {
  background-color: #ffffff;
  color: #1e2432;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.banner-button:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-title {
    font-size: 2em;
  }

  .banner-text {
    font-size: 1.1em;
  }

  .banner-button {
    padding: 10px 20px;
    font-size: 1em;
  }
}

/* Promo Banner Section */
.promo-banner {
  background-color: #1e293b;
  max-width: 64rem;
  margin: 40px auto;
  padding: 5rem;
  border-radius: 12px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.banner-mascot {
  margin-bottom: 0px;
}

.banner-mascot img {
  width: 320px;
  height: auto;
}

.banner-title {
  font-size: 3.8em;
  font-weight: 400;
  color: #ffffff;
  /* margin-bottom: 20px; */
}

.banner-subtitle {
  font-size: 1.2em;
  color: #a0aec0;
  /* margin-bottom: 30px; */
  margin-top: -25px;
}

.banner-cta {
  display: inline-block;
  background-color: #ffffff;
  color: #1a222e;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.banner-cta:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .promo-banner {
    margin: 20px;
    padding: 40px 20px;
  }

  .banner-title {
    font-size: 2em;
  }

  .banner-subtitle {
    font-size: 1.1em;
  }

  .banner-mascot img {
    width: 100px;
  }
}


/* Socials Section */
.socials {
  max-width: 64rem;
  margin: 40px auto;
  padding-top: 1rem;
  text-align: center;
}

.social-media {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 5rem;
  /* Consistent spacing on desktop */
}

.social-link img {
  filter: brightness(0);
  width: 3rem;
  height: auto;
  transition: transform 0.3s ease;
}

.social-link img:hover {
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .socials {
    margin: 20px auto;
    /* Reduced margin for mobile */
    padding-top: 0.5rem;
  }

  .social-media {
    gap: 2rem;
    /* Reduced gap for mobile to fit in row */
    justify-content: center;
    /* Ensures icons stay centered */
  }

  .social-link img {
    width: 40px;
    /* Slightly smaller icons to fit on mobile screens */
  }

  .social-link img:hover {
    transform: none;
    /* Disable hover effect on mobile for better UX */
  }
}

/* Footer Section */
.invisible-box {
  visibility: hidden;
}

.footer {
  background-color: #131244;
  padding: 3rem 1rem;
  padding-bottom: 2rem;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}

.footer-logo {
  margin-left: -150px;
}

.footer-logo img {
  width: 8rem;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  /* margin: auto; */
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
  gap: 150px;
  /* Mezera mezi sloupci */
  justify-content: center;
}

.footer-column {
  text-align: center;
}

.footer-heading {
  font-size: 1em;
  font-weight: bold;
  color: #e1ddfd;
  margin-bottom: 0.5rem;
}

.footer-link {
  display: block;
  font-size: 0.9em;
  color: #c8c0ff;
  text-decoration: none;
  margin: 0.2rem 0;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #e1ddfd;
}

.footer-logo img {
  margin-bottom: 1rem;
  margin-right: auto;
}

.footer-content {
  margin-bottom: 1rem;
}

/* Copyright */
.footer-copyright {
  font-size: 0.85em;
  color: #c8c0ff;
  margin-top: 1.0rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}




/* ------------------------------------------------------------------------------------- */
/* PRIVACY */
/* ------------------------------------------------------------------------------------- */

/* Privacy Content Section */
.privacy-content {
  padding: 80px 20px;
  /* Adjusted padding for better spacing */
  background-color: #f9f9f9;
  /* Light background consistent with body */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Align content at the top */
  min-height: 80vh;
  /* Ensure it takes up reasonable vertical space */
}

/* Content Block */
.content-block-privacy {
  width: 90%;
  max-width: 900px;
  /* Narrower max-width for better readability */
  background-color: #ffffff;
  /* White background for contrast */
  padding: 40px;
  /* Inner padding for breathing room */
  border-radius: 12px;
  /* Rounded corners for a modern look */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* Subtle shadow for depth */
}

/* Typography for Privacy Policy */
.content-block-privacy h1 {
  font-size: 2.8em;
  /* Larger, bold title */
  color: #333;
  /* Dark gray for readability */
  font-weight: 700;
  /* Bold weight */
  margin-bottom: 20px;
  /* Spacing below title */
  text-align: center;
  /* Centered for emphasis */
}

.content-block-privacy h2 {
  font-size: 1.8em;
  /* Section headings */
  color: #5B5AC3;
  /* Brand purple for consistency */
  font-weight: 600;
  /* Slightly less bold than h1 */
  margin-top: 40px;
  /* Spacing above sections */
  margin-bottom: 15px;
  /* Spacing below headings */
}

.content-block-privacy h3 {
  font-size: 1.4em;
  /* Sub-section headings */
  color: #333;
  /* Darker for contrast */
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
}

.content-block-privacy p {
  font-size: 1.1em;
  /* Readable paragraph size */
  color: #666;
  /* Softer gray for text */
  line-height: 1.8;
  /* Improved readability */
  margin-bottom: 20px;
  /* Spacing between paragraphs */
}

.content-block-privacy ul {
  margin-left: 20px;
  /* Indent lists */
  margin-bottom: 20px;
  /* Spacing below lists */
}

.content-block-privacy ul li {
  font-size: 1.1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
  /* Spacing between list items */
}

.content-block-privacy ul ul {
  margin-left: 40px;
  /* Nested list indent */
  margin-top: 10px;
}

.content-block-privacy a {
  color: #5B5AC3;
  /* Brand purple for links */
  text-decoration: none;
  /* No underline by default */
  font-weight: 500;
  transition: color 0.3s ease;
  /* Smooth color transition */
}

.content-block-privacy a:hover {
  color: #3532d1;
  /* Yellow hover effect from submit-btn */
  text-decoration: underline;
  /* Underline on hover */
}

/* Strong text styling */
.content-block-privacy strong {
  color: #333;
  /* Darker for emphasis */
  font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .privacy-content {
    padding: 40px 15px;
    /* Reduced padding on smaller screens */
  }

  .content-block-privacy {
    width: 95%;
    /* Slightly wider on mobile */
    padding: 20px;
    /* Reduced padding */
  }

  .content-block-privacy h1 {
    font-size: 2em;
    /* Smaller title on mobile */
  }

  .content-block-privacy h2 {
    font-size: 1.5em;
    /* Smaller section headings */
  }

  .content-block-privacy h3 {
    font-size: 1.2em;
    /* Smaller sub-section headings */
  }

  .content-block-privacy p,
  .content-block-privacy ul li {
    font-size: 1em;
    /* Slightly smaller text */
  }
}






/* ------------------------------------------------------------------------------------- */
/* ABOUT */
/* ------------------------------------------------------------------------------------- */

.about-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  flex-direction: column;
}

.friends-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  flex-direction: column;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 3em;
  color: #000000;
  font-weight: bold;
  margin-bottom: 4rem;
}

.about-section p {
  font-size: 1.1em;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.about-section h3 {
  font-size: 1.5em;
  color: #333;
  font-weight: 700;
  text-align: left;
  margin-top: 30px;
}

.friend {
  display: flex;
  align-items: left;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.friend-logo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.friend-info {
  text-align: left;
}

.friend-info h4 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 2.5rem;
  margin-bottom: 1.25;
  font-weight: inherit;
}

.friend-info p {
  font-size: 1.1em;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.friend-info a {
  color: #000000;
  text-decoration: none;
  text-decoration-line: underline;
  font-size: 1em;
}

.friend-info a:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------------------------------- */
/* CONTACT */
/* ------------------------------------------------------------------------------------- */

/* CONTACT SECTION */
.contact-section {
  padding: 80px 20px;
  /* Generous padding for breathing room */
  background-color: #f9f9f9;
  /* Light background */
  min-height: 80vh;
  /* Ensure it takes up reasonable space */
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  /* Center all content */
  flex-direction: column;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
  /* Increased spacing below header */
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Contact Content */
.contact-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 15px;
    /* Reduced padding on mobile */
  }

  .contact-section .container {
    padding: 15px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-content {
    padding: 20px;
    /* Reduced padding on mobile */
  }

  .contact-email {
    font-size: 1.5em;
    /* Slightly smaller email on mobile */
  }

  .contact-text {
    font-size: 1em;
    /* Smaller text on mobile */
  }
}












/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  .features-grid,
  .steps,
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-item,
  .step,
  .testimonial {
    width: 80%;
  }
}