@font-face {
font-family: 'Roboto';
src: url(//ogrod-opole.pl/wp-content/themes/bywitek-theme/assets/fonts/Roboto-Regular.woff) format('woff');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Roboto';
src: url(//ogrod-opole.pl/wp-content/themes/bywitek-theme/assets/fonts/Roboto-Medium.woff) format('woff');
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Roboto';
src: url(//ogrod-opole.pl/wp-content/themes/bywitek-theme/assets/fonts/Roboto-SemiBold.woff) format('woff');
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Roboto';
src: url(//ogrod-opole.pl/wp-content/themes/bywitek-theme/assets/fonts/Roboto-Bold.woff) format('woff');
font-weight: 700;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Roboto';
src: url(//ogrod-opole.pl/wp-content/themes/bywitek-theme/assets/fonts/Roboto-ExtraBold.woff) format('woff');
font-weight: 800;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Roboto';
src: url(//ogrod-opole.pl/wp-content/themes/bywitek-theme/assets/fonts/Roboto-Black.woff) format('woff');
font-weight: 900;
font-style: normal;
font-display: swap;
}
:root {
--primary: #378036;
--secondary: #6bb449;
--header-height: 80px;
--header-bg: #fff;
--drawer-bg: #fff;
--text-color: #000;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
color: var(--text-color);
line-height: 1.6;
}
body.menu-open {
overflow: hidden;
}
.topbar {
width: 100%;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.topbar-inner {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 1rem;
padding: 0.45rem 1rem;
flex-wrap: nowrap;
}
.topbar-link {
color: #fff;
text-decoration: none;
font-size: 0.8rem;
font-weight: 500;
line-height: 1.2;
white-space: nowrap;
}
.topbar-link:hover {
opacity: 0.9;
}
@media (min-width: 768px) {
.topbar-inner {
justify-content: flex-end;
gap: 1.5rem;
padding: 0.5rem 3.5rem;
}
.topbar-link {
font-size: 0.95rem;
}
}
@media (min-width: 992px) {
.topbar-inner {
padding: 0.5rem 6rem;
}
}
@media (min-width: 1200px) {
.topbar-inner {
padding: 0.5rem 9rem;
}
}
.site-header {
position: sticky;
top: 0;
left: 0;
width: 100%;
background-color: var(--header-bg);
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header-inner {
display: flex;
justify-content: space-between;
align-items: center;
height: var(--header-height);
width: 100%;
padding: 0 1rem;
}
@media (min-width: 768px) {
.header-inner {
padding: 0 3.5rem;
}
}
@media (min-width: 992px) {
.header-inner {
padding: 0 6rem;
}
}
@media (min-width: 1200px) {
.header-inner {
padding: 0 9rem;
}
}
.header-col {
display: flex;
align-items: center;
}
.header-left {
justify-content: flex-start;
gap: 3rem;
}
.header-right {
justify-content: flex-end;
}
.main-navigation ul {
list-style: none;
display: flex;
gap: 2rem;
align-items: center;
margin: 0;
padding: 0;
flex-wrap: nowrap;
}
.main-navigation a {
text-decoration: none;
color: var(--text-color);
font-weight: 500;
font-size: 1rem;
text-transform: none;
transition: color 0.2s ease;
}
.main-navigation a:hover {
color: var(--primary);
}
.main-navigation a.btn-cta {
background-color: var(--secondary);
color: #fff;
padding: 0.8rem 2rem;
border-radius: 50px;
font-weight: 600;
transition: background-color 0.3s ease;
}
.main-navigation a.btn-cta:hover {
background-color: var(--primary);
color: #fff;
}
.site-branding img {
max-height: 60px;
width: auto;
display: block;
}
.header-socials {
display: flex;
gap: 1rem;
align-items: center;
}
.social-icon {
display: block;
line-height: 0;
}
.social-icon img {
height: 30px;
width: 30px;
display: block;
filter: brightness(0);
transition: filter 0.2s ease;
}
.social-icon:hover img {
filter: invert(44%) sepia(35%) saturate(996%) hue-rotate(76deg) brightness(95%) contrast(90%);
}
.menu-toggle {
background: none;
border: none;
cursor: pointer;
padding: 0;
line-height: 0;
}
.menu-toggle img {
height: 36px;
width: 36px;
}
.mobile-drawer {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: var(--drawer-bg);
z-index: 2000;
transform: translateX(100%);
transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
display: flex;
flex-direction: column;
}
.mobile-drawer.is-active {
transform: translateX(0);
}
.drawer-header {
display: flex;
justify-content: flex-end;
padding: 0 1rem;
height: var(--header-height);
align-items: center;
}
@media (min-width: 768px) {
.drawer-header {
padding: 0 3.5rem;
}
}
@media (min-width: 992px) {
.drawer-header {
padding: 0 6rem;
}
}
.drawer-close {
background: none;
border: none;
cursor: pointer;
padding: 0;
opacity: 1;
}
.drawer-close img {
height: 36px;
width: 36px;
}
.drawer-content {
flex: 1;
padding: 2rem 1.5rem;
display: flex;
flex-direction: column;
align-items: flex-start;
overflow-y: auto;
}
.mobile-navigation ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 1.5rem;
margin-bottom: 2rem;
width: 100%;
}
.mobile-navigation a {
font-size: 1.8rem;
font-weight: 600;
color: var(--text-color);
text-decoration: none;
display: block;
}
.mobile-navigation a.btn-cta {
display: inline-block;
background-color: var(--secondary);
color: #fff;
padding: 0.8rem 2rem;
border-radius: 50px;
font-size: 1.5rem;
margin-top: 1rem;
transition: background-color 0.3s ease;
}
.mobile-navigation a.btn-cta:hover {
background-color: var(--primary);
}
.mobile-socials {
display: flex;
flex-direction: row;
gap: 1.5rem;
}
.mobile-socials .social-icon img {
height: 40px;
width: 40px;
filter: brightness(0);
}
.mobile-socials .social-icon:hover img {
filter: invert(44%) sepia(35%) saturate(996%) hue-rotate(76deg) brightness(95%) contrast(90%);
}
.desktop-only {
display: flex !important;
}
.mobile-only {
display: none !important;
}
@media (max-width: 1145px) {
.desktop-only {
display: none !important;
}
.mobile-only {
display: flex !important;
}
.header-center {
display: none;
}
.header-left {
justify-content: flex-start;
flex: 0 0 auto;
}
.header-right {
justify-content: flex-end;
flex: 1;
}
.site-branding img {
max-height: 50px;
}
}
.site-footer {
background: linear-gradient(135deg, var(--primary) 0%, #1a5a1a 100%);
color: rgba(255, 255, 255, 0.9);
position: relative;
overflow: hidden;
}
.site-footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
pointer-events: none;
}
.footer-top {
padding: 4rem 1rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
position: relative;
z-index: 1;
}
.footer-columns {
display: flex;
flex-direction: column;
gap: 3rem;
}
.footer-cta {
flex: 1;
}
.footer-logo {
font-size: 1.8rem;
font-weight: 900;
color: #fff;
margin: 0 0 1rem 0;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.footer-description {
font-size: 1rem;
line-height: 1.6;
margin: 0 0 1.5rem 0;
max-width: 400px;
color: rgba(255, 255, 255, 0.95);
}
.footer-contact {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-bottom: 1.5rem;
}
.footer-phone,
.footer-email {
display: inline-flex;
align-items: center;
gap: 0.75rem;
color: #fff;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}
.footer-phone:hover,
.footer-email:hover {
opacity: 0.8;
}
.footer-phone img,
.footer-email img {
flex-shrink: 0;
filter: brightness(0) invert(1);
}
.btn-footer-contact {
display: inline-block;
padding: 0.75rem 0;
width: 200px;
text-align: center;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
background-color: #fff;
color: var(--primary);
border: 2px solid #fff;
transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
margin-top: 0.5rem;
}
.btn-footer-contact:hover {
background-color: rgba(255, 255, 255, 0.9);
border-color: rgba(255, 255, 255, 0.9);
}
.footer-right {
display: flex;
flex-direction: column;
gap: 2.5rem;
}
.footer-column-title {
font-size: 1.1rem;
font-weight: 700;
color: #fff;
margin: 0 0 1rem 0;
text-transform: uppercase;
letter-spacing: 0.5px;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.footer-menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.footer-menu a {
color: rgba(255, 255, 255, 0.95);
text-decoration: none;
font-size: 1rem;
transition: opacity 0.3s ease;
}
.footer-menu a:hover {
opacity: 0.7;
}
.footer-social {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
gap: 1rem;
}
.footer-social a {
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.3s ease;
}
.footer-social a:hover {
opacity: 0.7;
}
.footer-social img {
filter: brightness(0) invert(1);
}
.footer-bottom {
padding: 1rem 1rem;
position: relative;
z-index: 1;
}
.footer-bottom-content {
display: flex;
flex-direction: column;
gap: 1rem;
font-size: 0.9rem;
}
.footer-bottom-left {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.footer-bottom-left p {
margin: 0;
color: rgba(255, 255, 255, 0.85);
}
.footer-bottom-left a {
color: rgba(255, 255, 255, 0.95);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-bottom-left a:hover {
color: #fff;
}
.footer-bottom-right p {
margin: 0;
color: rgba(255, 255, 255, 0.85);
}
.footer-bottom-right a {
color: #fff;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.footer-bottom-right a:hover {
color: rgba(255, 255, 255, 0.9);
text-decoration: underline;
}
@media (min-width: 768px) {
.footer-top {
padding: 5rem 2rem;
}
.footer-columns {
flex-direction: row;
gap: 4rem;
}
.footer-right {
flex-direction: row;
gap: 3rem;
}
.footer-bottom-content {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.footer-bottom-left {
flex-direction: row;
gap: 2rem;
align-items: center;
}
}
@media (min-width: 1200px) {
.footer-top {
padding: 6rem 12rem;
}
.footer-bottom {
padding: 1.25rem 12rem;
}
}.lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.95);
z-index: 9999;
display: none;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.lightbox.active {
display: flex;
opacity: 1;
}
.lightbox-content {
position: relative;
max-width: 90%;
max-height: 90%;
display: flex;
align-items: center;
justify-content: center;
}
.lightbox-image {
max-width: 100%;
max-height: 90vh;
object-fit: contain;
border-radius: 4px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
position: fixed;
top: 20px;
right: 20px;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 4px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s ease;
z-index: 10000;
}
.lightbox-close:hover {
background: rgba(255, 255, 255, 0.2);
}
.lightbox-close svg {
width: 24px;
height: 24px;
stroke: #fff;
stroke-width: 2;
}
.lightbox-nav {
position: fixed;
bottom: 20px;
right: 20px;
display: flex;
gap: 10px;
z-index: 10000;
}
.lightbox-nav button {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 4px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s ease;
}
.lightbox-nav button:hover:not(:disabled) {
background: rgba(255, 255, 255, 0.2);
}
.lightbox-nav button:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.lightbox-nav svg {
width: 20px;
height: 20px;
stroke: #fff;
stroke-width: 2;
fill: none;
}
.lightbox-counter {
position: fixed;
bottom: 20px;
left: 20px;
color: #fff;
font-size: 16px;
font-weight: 500;
background: rgba(0, 0, 0, 0.5);
padding: 8px 16px;
border-radius: 4px;
z-index: 10000;
}
.gallery-mosaic-item {
cursor: pointer;
transition: opacity 0.2s ease;
}
.gallery-mosaic-item:hover {
opacity: 0.9;
}
@media (max-width: 768px) {
.lightbox-close {
top: 10px;
right: 10px;
width: 36px;
height: 36px;
}
.lightbox-nav {
bottom: 10px;
right: 10px;
}
.lightbox-nav button {
width: 36px;
height: 36px;
}
.lightbox-counter {
bottom: 10px;
left: 10px;
font-size: 14px;
padding: 6px 12px;
}
}.hero-section {
position: relative;
height: 70vh;
width: 100%;
overflow: hidden;
display: flex;
align-items: flex-end;
justify-content: flex-start;
color: #fff;
text-align: left;
border-radius: 0 0 8px 8px;
}
.hero-slider {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.hero-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
opacity: 1;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
width: 100%;
padding: 0 1rem 3rem 1rem;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.hero-location {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 0.5rem;
font-size: 0.9rem;
font-weight: 600;
text-transform: none;
margin-bottom: 0.2rem;
color: var(--secondary);
letter-spacing: 0.05em;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
.hero-location img {
width: 18px;
height: 18px;
filter: invert(61%) sepia(55%) saturate(543%) hue-rotate(54deg) brightness(93%) contrast(89%);
}
@media (min-width: 768px) {
.hero-content {
padding: 0 6rem 3rem 6rem;
}
}
@media (min-width: 1200px) {
.hero-content {
padding: 0 12rem 3rem 12rem;
}
}
.hero-title {
font-size: 3rem;
font-weight: 900;
margin-bottom: 0.5rem;
text-transform: none;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.2rem;
margin-bottom: 1.5rem;
line-height: 1.5;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
max-width: 600px;
}
@media (min-width: 768px) {
.hero-title {
font-size: 4.5rem;
}
.hero-subtitle {
font-size: 1.5rem;
}
}
.hero-buttons {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
gap: 1.5rem;
}
.btn-hero-primary,
.btn-hero-secondary {
display: inline-block;
padding: 0.75rem 0;
width: 200px;
text-align: center;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-hero-primary {
background-color: var(--secondary);
color: #fff;
border: 2px solid var(--secondary);
}
.btn-hero-primary:hover {
background-color: var(--primary);
border-color: var(--primary);
}
.btn-hero-secondary {
background-color: transparent;
color: #fff;
border: 2px solid #fff;
}
.btn-hero-secondary:hover {
background-color: #fff;
color: var(--text-color);
}
.services-section {
padding: 5rem 1rem;
background-color: transparent;
}
@media (min-width: 768px) {
.services-section {
padding: 5rem 6rem;
}
}
@media (min-width: 1200px) {
.services-section {
padding: 5rem 12rem;
}
}
.gallery-section {
padding: 5rem 1rem;
background-color: transparent;
}
@media (min-width: 768px) {
.gallery-section {
padding: 5rem 6rem;
}
}
@media (min-width: 1200px) {
.gallery-section {
padding: 5rem 12rem;
}
}
.gallery-mosaic {
display: grid;
grid-template-columns: 1fr;
gap: 2px;
margin-top: 2rem;
}
@media (min-width: 768px) {
.gallery-mosaic {
grid-template-columns: repeat(7, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 2px;
max-height: 500px;
}
.gallery-mosaic-item.gallery-item-1 {
grid-column: 1 / 5;
grid-row: 1;
}
.gallery-mosaic-item.gallery-item-2 {
grid-column: 5 / 8;
grid-row: 1;
}
.gallery-mosaic-item.gallery-item-3 {
grid-column: 1 / 3;
grid-row: 2;
}
.gallery-mosaic-item.gallery-item-4 {
grid-column: 3 / 6;
grid-row: 2;
}
.gallery-mosaic-item.gallery-item-5 {
grid-column: 6 / 8;
grid-row: 2;
}
.gallery-mosaic-item.gallery-item-1 {
border-top-left-radius: 8px;
}
.gallery-mosaic-item.gallery-item-2 {
border-top-right-radius: 8px;
}
.gallery-mosaic-item.gallery-item-3 {
border-bottom-left-radius: 8px;
}
.gallery-mosaic-item.gallery-item-5 {
border-bottom-right-radius: 8px;
}
}
.gallery-mosaic-item {
position: relative;
overflow: hidden;
background: transparent;
cursor: pointer;
height: 100%;
}
.gallery-mosaic-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.gallery-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.gallery-mosaic-item:hover .gallery-overlay {
opacity: 1;
}
.gallery-icon {
width: 50px;
height: 50px;
background: var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
transform: translateY(20px);
transition: transform 0.3s ease;
}
.gallery-mosaic-item:hover .gallery-icon {
transform: translateY(0);
}
.gallery-carousel-controls {
display: none;
align-items: center;
justify-content: space-between;
gap: 1rem;
margin-top: 1rem;
width: 100%;
}
.gallery-carousel-viewport {
width: 100%;
}
.gallery-carousel-controls.is-visible {
display: flex;
}
.gallery-slide-counter {
font-size: 0.95rem;
font-weight: 600;
color: #666;
white-space: nowrap;
}
.gallery-control-arrows {
display: flex;
align-items: center;
gap: 1rem;
}
@media (max-width: 767px) {
.gallery-carousel-viewport {
overflow: hidden;
padding: 0;
box-sizing: border-box;
margin-top: 2rem;
border-radius: 8px;
position: relative;
}
.gallery-mosaic.gallery-carousel-mobile {
display: flex;
gap: 0;
margin-top: 0;
width: 100%;
will-change: transform;
backface-visibility: hidden;
}
.gallery-mosaic.gallery-carousel-mobile .gallery-mosaic-item {
flex: 0 0 auto;
width: 100%;
min-width: 100%;
max-width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.gallery-mosaic-item {
aspect-ratio: 4/3;
}
}
@media (min-width: 768px) {
.gallery-carousel-viewport {
overflow: visible;
padding: 0;
margin-top: 0;
}
.gallery-carousel-controls {
display: none !important;
}
}
.services-wrapper {
margin: 0 auto;
}
.services-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
position: relative;
z-index: 0;
}
@media (min-width: 768px) {
.services-grid {
grid-template-columns: 1fr 1fr;
}
}
.service-box {
background: #fff;
padding: 2.5rem;
border-radius: 8px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 1.5rem;
height: 100%;
position: relative;
}
.service-box::before {
content: '';
position: absolute;
top: 6px;
left: -6px;
width: 100%;
height: 100%;
background-color: var(--primary);
transform: none;
z-index: -1;
border-radius: 8px;
opacity: 1;
}
.service-icon {
flex: 0 0 auto;
margin-top: 0.2rem;
display: flex;
align-items: center;
justify-content: center;
}
.service-icon svg {
width: 42px;
height: 42px;
fill: var(--primary);
}
.service-content {
display: flex;
flex-direction: column;
}
.service-content h3 {
font-size: 1.4rem;
margin-bottom: 0.5rem;
color: var(--text-color);
font-weight: 700;
line-height: 1.2;
}
.service-content p {
font-size: 1rem;
color: #555;
line-height: 1.6;
margin: 0;
}
.cta-section {
position: relative;
padding: 3rem 1rem;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
overflow: hidden;
}
@media (min-width: 768px) {
.cta-section {
padding: 4rem 3.5rem;
}
}
@media (min-width: 992px) {
.cta-section {
padding: 5rem 6rem;
}
}
@media (min-width: 1200px) {
.cta-section {
padding: 5rem 9rem;
}
}
.cta-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
pointer-events: none;
}
.cta-content {
position: relative;
z-index: 1;
max-width: 1000px;
margin: 0 auto;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.cta-text {
flex: 1;
text-align: left;
}
.cta-title {
font-size: 1.5rem;
font-weight: 900;
color: #fff;
margin: 0 0 0.5rem 0;
line-height: 1.3;
}
.cta-description {
font-size: 1rem;
color: rgba(255, 255, 255, 0.95);
margin: 0;
line-height: 1.5;
}
.cta-button {
display: inline-block;
padding: 0.75rem 0;
width: 200px;
text-align: center;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
background-color: #fff;
color: var(--secondary);
border: 2px solid #fff;
transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
white-space: nowrap;
flex-shrink: 0;
}
.cta-button:hover {
background-color: rgba(255, 255, 255, 0.9);
border-color: rgba(255, 255, 255, 0.9);
color: var(--primary);
}
@media (max-width: 767px) {
.cta-content {
flex-direction: column;
text-align: center;
gap: 1.5rem;
}
.cta-text {
text-align: center;
}
}
@media (min-width: 768px) {
.cta-title {
font-size: 1.5rem;
}
.cta-description {
font-size: 1.05rem;
}
}
@media (min-width: 1200px) {
.cta-title {
font-size: 1.5rem;
}
.cta-description {
font-size: 1.1rem;
}
}
.equipment-section {
padding: 5rem 1rem;
background-color: transparent;
}
.section-header {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 3rem;
gap: 1.5rem;
}
@media (min-width: 768px) {
.section-header {
flex-direction: row;
align-items: flex-end;
}
}
.section-header-left {
flex: 1;
}
.section-header-right {
flex: 0 0 auto;
}
.section-title {
text-align: left;
font-size: 2.5rem;
font-weight: 900;
margin-bottom: 0.5rem;
text-transform: none;
color: var(--text-color);
}
.section-description {
font-size: 1.1rem;
color: #666;
max-width: 600px;
line-height: 1.6;
}
.btn-section-link {
display: inline-block;
padding: 1rem 2rem;
min-width: 200px;
text-align: center;
border-radius: 50px;
font-size: 1.1rem;
background-color: var(--secondary);
color: #fff;
border: 2px solid var(--secondary);
text-decoration: none;
font-weight: 600;
text-transform: none;
transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-section-link:hover {
background-color: var(--primary);
border-color: var(--primary);
color: #fff;
}
.equipment-carousel {
width: 100%;
}
.equipment-progress {
width: min(180px, 42%);
height: 6px;
margin: 0.9rem auto 0;
background: rgba(0, 0, 0, 0.15);
border-radius: 999px;
overflow: hidden;
opacity: 0;
transition: opacity 0.2s ease;
}
.equipment-progress.is-active {
opacity: 1;
}
.equipment-progress-fill {
display: block;
width: 100%;
height: 100%;
background: var(--primary);
border-radius: inherit;
transform-origin: left center;
transform: scaleX(0);
will-change: transform;
}
.equipment-carousel-viewport {
width: 100%;
overflow: hidden;
}
.equipment-carousel-track {
display: flex;
gap: 20px;
transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
will-change: transform;
}
.equipment-slide {
flex: 0 0 calc((100% - 40px) / 3);
min-width: calc((100% - 40px) / 3);
max-width: calc((100% - 40px) / 3);
}
.equipment-card {
position: relative;
width: 100%;
aspect-ratio: 4 / 3;
overflow: hidden;
border-radius: 10px;
cursor: pointer;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
transform: translateZ(0);
}
.equipment-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.equipment-card-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.35);
color: #fff;
padding: 1.2rem;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
gap: 0.5rem;
opacity: 1;
transition: opacity 0.35s ease;
pointer-events: none;
}
.equipment-card-overlay h3 {
font-size: 1.15rem;
font-weight: 700;
line-height: 1.2;
margin: 0;
}
.equipment-card-overlay p {
font-size: 0.9rem;
line-height: 1.45;
margin: 0;
}
.equipment-card.is-revealed .equipment-card-overlay {
opacity: 0;
}
@media (min-width: 768px) {
.equipment-section {
padding: 5rem 6rem;
}
.equipment-slide {
flex: 0 0 calc((100% - 20px) / 2);
min-width: calc((100% - 20px) / 2);
max-width: calc((100% - 20px) / 2);
}
.equipment-card-overlay h3 {
font-size: 1.2rem;
}
.equipment-card-overlay p {
font-size: 0.95rem;
}
}
@media (min-width: 1200px) {
.equipment-section {
padding: 5rem 12rem;
}
.equipment-slide {
flex: 0 0 calc((100% - 40px) / 3);
min-width: calc((100% - 40px) / 3);
max-width: calc((100% - 40px) / 3);
}
}
@media (max-width: 767px) {
.equipment-slide {
flex: 0 0 100%;
min-width: 100%;
max-width: 100%;
}
.equipment-card-overlay {
padding: 1rem;
}
.equipment-card-overlay h3 {
font-size: 1.05rem;
}
.equipment-card-overlay p {
font-size: 0.85rem;
}
.equipment-progress {
width: min(170px, 58%);
}
}
.promo-section {
padding: 5rem 1rem;
background-color: transparent;
}
.promo-content {
display: flex;
flex-direction: column;
gap: 3rem;
align-items: center;
}
.promo-image {
width: 100%;
max-width: 600px;
border-radius: 8px;
overflow: hidden;
}
.promo-image img {
width: 100%;
height: auto;
display: block;
}
.promo-text {
flex: 1;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.promo-title {
font-size: 1.5rem;
font-weight: 900;
color: var(--text-color);
margin: 0;
line-height: 1.2;
text-transform: uppercase;
}
.promo-title .highlight {
color: var(--secondary);
}
.promo-description {
font-size: 1.1rem;
color: var(--text-light);
margin: 0;
line-height: 1.6;
}
.btn-promo {
display: inline-block;
padding: 0.75rem 0;
width: 200px;
text-align: center;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
background-color: var(--secondary);
color: #fff;
border: 2px solid var(--secondary);
transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-promo:hover {
background-color: var(--primary);
border-color: var(--primary);
}
@media (min-width: 1024px) {
.promo-content {
flex-direction: row;
gap: 4rem;
align-items: center;
}
.promo-image {
flex: 0 0 50%;
max-width: none;
}
.promo-title {
font-size: 1.5rem;
}
}
@media (min-width: 1200px) {
.promo-section {
padding: 6rem 12rem;
}
.promo-image {
flex: 0 0 48%;
}
.promo-title {
font-size: 2rem;
}
.promo-description {
font-size: 1.2rem;
}
}