:root {
    --biskly-gray: #1d1d1f;
    --biskly-light-gray: #f5f5f7;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--biskly-gray);
    padding-top: 76px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
    margin-top: auto !important;
}


  .final-cta-section {
    padding: 60px 0;
    background: #f8f9fa;
  }
  
  .cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .btn-primarys {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
  }
  
  @media (max-width: 576px) {
    .btn-primarys {
      flex-direction: column;
      align-items: center;
    }
    
    .btn-primarys .btn-primary {
      width: 100%;
      max-width: 280px;
    }
  }

.feature-link {
    color: #1d1d1f;
}

.feature-link a:hover{
    color: #1d1d1f;
}

/* Global Styles */
:root {
--primary-color: #0071e3;
--primary-hover: #0077ed;
--secondary-color: #86868b;
--text-color: #1d1d1f;
--light-text: #86868b;
--background-color: #ffffff;
--light-background: #f5f5f7;
--border-color: #d2d2d7;
--border-radius: 12px;
--spacing-small: 16px;
--spacing-medium: 32px;
--spacing-large: 64px;
--spacing-xl: 96px;
--transition: all 0.3s ease;
--shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
--shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}

section {
padding: var(--spacing-large) 0;
overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-weight: 600;
line-height: 1.2;
}

h1 {
font-size: 56px;
letter-spacing: -0.5px;
}

h2 {
font-size: 48px;
letter-spacing: -0.5px;
margin-bottom: var(--spacing-medium);
}

h3 {
font-size: 28px;
margin-bottom: var(--spacing-small);
}

p {
margin-bottom: var(--spacing-small);
color: var(--light-text);
}

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


.cta-button {
display: inline-block;
background-color: var(--primary-color);
color: white;
padding: 12px 24px;
border-radius: 30px;
font-weight: 500;
text-align: center;
transition: var(--transition);
}

.cta-button:hover {
background-color: var(--primary-hover);
color: white;
transform: translateY(-2px);
}

/* Przyciski w grupie */
.btn-group {
    display: flex;
}

.btn-group .btn:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.btn-group .btn:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group form {
    display: contents;
}

.cta-button.secondary {
background-color: transparent;
color: var(--primary-color);
border: 1px solid var(--primary-color);
}

.cta-button.secondary:hover {
background-color: rgba(0, 113, 227, 0.1);
color: var(--primary-color);
}

.section-title {
text-align: center;
margin-bottom: var(--spacing-small);
}

.section-description {
text-align: center;
max-width: 700px;
margin: 0 auto var(--spacing-medium);
}

/* Hero Slider Section */
.hero-slider {
position: relative;
height: 40vh;
min-height: 700px;
overflow: hidden;
background-color: var(--background-color);
}

.slider-container {
position: relative;
height: 100%;
width: 100%;
}

.slider-track {
height: 100%;
width: 100%;
position: relative;
}

.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
opacity: 1;
transition: opacity 1s ease;
}

.slide-image {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.slide-content {
position: relative;
z-index: 2;
max-width: 600px;
padding: var(--spacing-large);
color: white;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-content h1 {
margin-bottom: var(--spacing-medium);
}

.slide-content p {
font-size: 24px;
margin-bottom: var(--spacing-medium);
color: rgba(255, 255, 255, 0.9);
}

.slider-nav {
position: absolute;
bottom: var(--spacing-medium);
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 3;
}

.slider-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
border: none;
cursor: pointer;
transition: var(--transition);
}

.slider-dot.active {
background-color: white;
transform: scale(1.2);
}

/* Headline Section */
.headline-section {
text-align: center;
padding: var(--spacing-xl) 0;
background-color: var(--background-color);
}

.headline {
font-size: 48px;
max-width: 800px;
margin: 0 auto var(--spacing-small);
}

.subheadline {
font-size: 24px;
max-width: 700px;
margin: 0 auto;
}

/* Features Section */
.features-section {
padding: var(--spacing-xl) 0;
background-color: var(--light-background);
}

.feature-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-medium);
}

.feature-item {
background-color: var(--background-color);
border-radius: var(--border-radius);
padding: var(--spacing-medium);
box-shadow: var(--shadow);
transition: var(--transition);
}

.feature-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-hover);
}

.feature-icon {
margin-bottom: var(--spacing-small);
display: flex;
justify-content: center;
}

.feature-image {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 20px;
}

.feature-item h3 {
margin-bottom: var(--spacing-small);
}

.feature-item p {
margin-bottom: var(--spacing-small);
color: var(--light-text);
}

.feature-link {
display: inline-block;
font-weight: 500;
margin-top: var(--spacing-small);
}

/* Community Section */
.community-section {
padding: var(--spacing-xl) 0;
background-color: var(--background-color);
}

.community-content {
display: flex;
align-items: center;
gap: var(--spacing-large);
}

.community-text {
flex: 1;
}

.community-image {
flex: 1;
}

.rounded-image {
width: 100%;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
}

.community-features {
list-style-type: none;
margin: var(--spacing-medium) 0;
}

.community-features li {
margin-bottom: 12px;
padding-left: 28px;
position: relative;
}

.community-features li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--primary-color);
font-weight: bold;
}

/* Special Users Section */
.special-users-section {
padding: var(--spacing-xl) 0;
background-color: var(--light-background);
}

.special-features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-medium);
margin-bottom: var(--spacing-large);
}

.special-feature {
text-align: center;
padding: var(--spacing-medium);
}

.special-feature img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 20px;
margin-bottom: var(--spacing-small);
}

.special-users-cta {
text-align: center;
margin-top: var(--spacing-medium);
}

/* Blog Preview Section */
.blog-preview-section {
padding: var(--spacing-xl) 0;
background-color: var(--background-color);
}

.blog-preview-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-medium);
margin-bottom: var(--spacing-large);
}

.blog-card {
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
background-color: white;
}

.blog-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-hover);
}

.blog-image {
height: 200px;
overflow: hidden;
}

.blog-thumbnail {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumbnail {
transform: scale(1.05);
}

.blog-content {
padding: var(--spacing-medium);
}

.blog-link {
display: inline-block;
margin-top: var(--spacing-small);
font-weight: 500;
}

.blog-cta {
text-align: center;
}

/* Final CTA Section */
.final-cta-section {
padding: var(--spacing-xl) 0;
background-color: var(--light-background);
}

.cta-container {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.cta-buttons {
display: flex;
justify-content: center;
gap: var(--spacing-medium);
margin-top: var(--spacing-medium);
}

/* Responsive Design */
@media (max-width: 1024px) {
h1 {
font-size: 48px;
}

h2 {
font-size: 40px;
}

.feature-grid, .special-features-grid, .blog-preview-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
h1 {
font-size: 40px;
}

h2 {
font-size: 32px;
}

.community-content {
flex-direction: column;
}

.feature-grid, .special-features-grid, .blog-preview-grid {
grid-template-columns: 1fr;
}

.cta-buttons {
flex-direction: column;
gap: var(--spacing-small);
}
}

@media (max-width: 480px) {
h1 {
font-size: 32px;
}

h2 {
font-size: 28px;
}

.hero-slider {
min-height: 500px;
}

section {
padding: var(--spacing-medium) 0;
}
}

.navbar {
    background-color: rgba(22, 22, 23, .8);
    backdrop-filter: saturate(180%) blur(20px);
}

.navbar .nav-link,
.navbar .navbar-brand {
    color: #ffffff !important;
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
    position: relative;
    z-index: 1030;
}

.navbar .navbar-collapse {
    z-index: 1029;
}

#sentinel {
    display: none;
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
}
.hero-section {
    background-color: var(--biskly-light-gray);
    padding: 6rem 0;
    text-align: center;
    
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 2rem;
}
.btn-primary {
    background-color: var(--biskly-gray);
    border-color: var(--biskly-gray);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
}
.btn-primary:hover {
    background-color: #2d2d2f;
    border-color: #2d2d2f;
}

.btn-danger {
    padding: 0.75rem 2rem;
    border-radius: 2rem;
}
footer.footer {
    background-color: rgba(22, 22, 23, .8);
    margin-top: 25px;
}

.navbar-logo {
    height: 50px;
    width: auto;
    margin-right: 1rem;
    vertical-align: middle;
}

