:root {
--white: #f8f8f8;
--black: #0f0f0f;
--color-font-body: #616161;
--primary: #0191d8;
--secondary: #012c33;
--font-raleway: 'Raleway', sans-serif;
--font-poppins: 'Poppins', sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
overflow-x: hidden;
} @font-face {
font-display: swap;
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
src: url(//grpbuilders.com/wp-content/themes/bywitek-theme/assets/fonts/poppins-v24-latin-regular.woff2) format('woff2');
} @font-face {
font-display: swap;
font-family: 'Poppins';
font-style: normal;
font-weight: 600;
src: url(//grpbuilders.com/wp-content/themes/bywitek-theme/assets/fonts/poppins-v24-latin-600.woff2) format('woff2');
} @font-face {
font-display: swap; font-family: 'Poppins';
font-style: normal;
font-weight: 700;
src: url(//grpbuilders.com/wp-content/themes/bywitek-theme/assets/fonts/poppins-v24-latin-700.woff2) format('woff2'); }.site-header {
position: sticky;
top: 0;
left: 0;
width: 100%;
background: #fff;
border-bottom: 1px solid #ddd;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
z-index: 1000;
font-family: var(--font-raleway);
}
.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 24px;
display: flex;
align-items: center;
justify-content: space-between;
height: 80px;
}
.header-logo {
flex-shrink: 0;
}
.header-logo a {
display: block;
}
.header-logo img {
height: 70px;
width: auto;
display: block;
}
.mobile-menu-toggle {
display: none;
background: none;
border: none;
padding: 8px;
cursor: pointer;
z-index: 1001;
}
@media (min-width: 993px) {
.mobile-menu-toggle {
display: none !important;
}
}
.mobile-menu-toggle img {
width: 28px;
height: 28px;
display: block;
}
.mobile-menu-close {
display: none;
position: fixed;
top: 20px;
right: 16px;
background: none;
border: none;
padding: 8px;
cursor: pointer;
z-index: 1003;
}
.mobile-menu-close img {
width: 28px;
height: 28px;
display: block;
}
.main-navigation {
flex: 1;
display: flex;
justify-content: center;
padding: 0 40px;
}
.main-navigation ul {
display: flex;
gap: 32px;
list-style: none;
margin: 0;
padding: 0;
align-items: center;
}
.main-navigation li {
margin: 0;
}
.main-navigation a {
color: var(--black);
text-decoration: none;
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
transition: color 0.3s ease;
display: block;
padding: 8px 0;
}
.main-navigation a:hover {
color: var(--primary);
}
.header-language {
display: flex;
gap: 16px;
align-items: center;
flex-shrink: 0;
}
.main-navigation .header-language {
display: none;
}
.header-language .lang-link {
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.3s ease;
opacity: 0.7;
}
.header-language .lang-link:hover {
opacity: 1;
}
.header-language .lang-link.active {
opacity: 1;
}
.header-language svg {
width: 60px;
height: auto;
display: block;
}
@media (max-width: 992px) {
.mobile-menu-toggle {
display: block;
}
.main-navigation.is-open~.mobile-menu-toggle {
display: none;
}
.header-container>.header-language {
display: none;
}
.main-navigation {
position: fixed;
top: 0;
left: -100%;
width: 100%;
height: 100vh;
background: var(--white);
padding: 80px 24px 24px;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
overflow-y: auto;
z-index: 1001;
}
.main-navigation.is-open {
left: 0;
}
.main-navigation.is-open .mobile-menu-close {
display: block;
}
.main-navigation ul {
flex-direction: column;
gap: 0;
width: 100%;
align-items: flex-start;
margin-bottom: 32px;
}
.main-navigation li {
width: 100%;
border-bottom: none;
}
.main-navigation a {
font-size: 18px;
padding: 16px 0;
width: 100%;
}
.main-navigation .header-language {
display: flex;
order: 1;
margin-top: 0;
}
}
@media (max-width: 768px) {
.header-container {
height: 80px;
padding: 0 16px;
position: relative;
}
.header-logo img {
height: 65px;
}
.mobile-menu-toggle {
position: absolute;
right: 16px;
top: 50%;
transform: translateY(-50%);
}
}.site-footer {
background: var(--white);
color: var(--black);
margin-top: 3rem;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-main {
display: grid;
grid-template-columns: 1fr 1fr 1.2fr;
gap: 3rem;
padding: 4rem 7.5rem;
}
.footer-column {
display: flex;
flex-direction: column;
}
.footer-logo {
height: 60px;
width: auto;
object-fit: contain;
object-position: left;
margin-bottom: 1.5rem;
}
.footer-title {
font-family: var(--font-raleway);
font-size: 1.25rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0 0 1.5rem 0;
color: var(--black);
}
.footer-info {
display: flex;
flex-direction: column;
gap: 1rem;
}
.footer-link {
font-family: var(--font-raleway);
font-size: 0.95rem;
color: rgba(0, 0, 0, 0.7);
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.75rem;
transition: color 0.3s ease;
width: fit-content;
}
.footer-link:hover {
color: var(--primary);
}
.footer-icon {
flex-shrink: 0;
opacity: 0.7;
}
.footer-nav {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-bottom: 2rem;
}
.footer-nav-link {
font-family: var(--font-raleway);
font-size: 0.95rem;
color: rgba(0, 0, 0, 0.7);
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
width: fit-content;
}
.footer-nav-link:hover {
color: var(--primary);
}
.footer-social {
display: flex;
gap: 1rem;
}
.footer-social-link {
display: flex;
align-items: center;
justify-content: center;
color: var(--black);
transition: all 0.3s ease;
}
.footer-social-link:hover {
color: var(--primary);
}
.footer-map-iframe {
width: 100%;
height: 250px;
border-radius: 8px;
}
.footer-bottom {
border-top: 1px solid rgba(0, 0, 0, 0.1);
padding: 2rem 7.5rem;
}
.footer-credits {
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
}
.footer-copyright {
font-family: var(--font-raleway);
font-size: 0.875rem;
color: rgba(0, 0, 0, 0.5);
margin: 0;
}
.footer-links-bottom {
display: flex;
align-items: center;
gap: 1rem;
}
.footer-bottom-link {
font-family: var(--font-raleway);
font-size: 0.875rem;
color: rgba(0, 0, 0, 0.5);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-bottom-link:hover {
color: var(--primary);
}
.footer-separator {
color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 998px) {
.footer-main {
padding: 3.5rem;
gap: 2.5rem;
}
.footer-bottom {
padding: 1.5rem 3.5rem;
}
}
@media (max-width: 768px) {
.site-footer {
margin-top: 2rem;
}
.footer-main {
grid-template-columns: 1fr;
padding: 2.5rem 2rem;
gap: 3rem;
}
.footer-map-iframe {
height: 300px;
}
.footer-bottom {
padding: 1.5rem 2rem;
}
.footer-credits {
flex-direction: column;
align-items: flex-start;
gap: 1rem;
}
}
@media (max-width: 480px) {
.site-footer {
margin-top: 1.5rem;
}
.footer-main {
padding: 2rem 1rem;
gap: 2.5rem;
}
.footer-title {
font-size: 1.125rem;
}
.footer-link,
.footer-nav-link {
font-size: 0.875rem;
}
.footer-map-iframe {
height: 250px;
}
.footer-bottom {
padding: 1.5rem 1rem;
}
.footer-links-bottom {
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
}
.footer-separator {
display: none;
}
.footer-copyright,
.footer-bottom-link {
font-size: 0.8rem;
}
}.hero {
width: calc(100% - 1rem);
margin: 0.5rem;
min-height: 600px;
border-radius: 42px;
background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(//grpbuilders.com/wp-content/themes/bywitek-theme/assets/images/grpbuilders-producent-kompozytow-jachtowych-image-hero.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.hero-content {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
padding: 7.5rem;
color: var(--white);
}
.hero-title {
font-family: var(--font-raleway);
font-size: 3.5rem;
font-weight: 700;
line-height: 1.2;
margin: 0 0 0.75rem 0;
text-transform: uppercase;
letter-spacing: 1px;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-title-gradient {
background: linear-gradient(90deg, #0191d8 0%, #02b8f0 50%, #0191d8 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
display: inline-block;
}
.hero-description {
font-family: var(--font-raleway);
font-size: 1.25rem;
font-weight: 400;
line-height: 1.6;
margin: 0 0 2.5rem 0;
max-width: 600px;
opacity: 0.85;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-cta {
font-family: var(--font-raleway);
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1.5px;
padding: 1rem 2.5rem;
background: var(--white);
color: var(--black);
text-decoration: none;
border-radius: 4px;
transition: all 0.3s ease;
display: inline-block;
}
.hero-cta:hover {
background: var(--primary);
color: var(--white);
transform: translateY(-2px);
} .offer-section {
padding: 7.5rem;
}
.offer-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 4rem;
}
.offer-header-content {
text-align: left;
}
.offer-title {
font-family: var(--font-raleway);
font-size: 2.5rem;
font-weight: 700;
margin: 0 0 0.5rem 0;
color: var(--black);
text-transform: uppercase;
letter-spacing: 1px;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.offer-subtitle {
font-family: var(--font-raleway);
font-size: 1.125rem;
font-weight: 400;
margin: 0;
color: var(--color-font-body);
opacity: 0.85;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.offer-cta {
font-family: var(--font-raleway);
font-size: 0.95rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1.5px;
padding: 0.875rem 2rem;
background: var(--black);
color: var(--white);
text-decoration: none;
border-radius: 4px;
transition: all 0.3s ease;
display: inline-block;
white-space: nowrap;
}
.offer-cta:hover {
background: var(--primary);
transform: translateY(-2px);
}
.offer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
}
.offer-item {
display: flex;
flex-direction: column;
text-align: left;
}
.offer-image {
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 1.25rem;
}
.offer-item-title {
font-family: var(--font-raleway);
font-size: 1.375rem;
font-weight: 600;
margin: 0 0 0.75rem 0;
color: var(--black);
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.offer-item-description {
font-family: var(--font-raleway);
font-size: 1rem;
font-weight: 400;
line-height: 1.6;
margin: 0;
color: var(--color-font-body);
opacity: 0.85;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
} .cta-section {
width: calc(100% - 1rem);
margin: 4rem 0.5rem 0 0.5rem;
background: linear-gradient(135deg, #0191d8 0%, #0275b8 100%);
position: relative;
overflow: hidden;
border-radius: 42px;
}
.cta-content {
display: flex;
align-items: center;
justify-content: space-between;
padding: 2.5rem 7.5rem;
position: relative;
min-height: 250px;
}
.cta-text {
flex: 0 0 auto;
max-width: 600px;
z-index: 2;
word-wrap: break-word;
overflow-wrap: break-word;
}
.cta-title {
font-family: var(--font-raleway);
font-size: 2.5rem;
font-weight: 700;
margin: 0 0 1rem 0;
color: var(--white);
line-height: 1.2;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.cta-description {
font-family: var(--font-raleway);
font-size: 1.125rem;
line-height: 1.6;
margin: 0 0 2rem 0;
color: var(--white);
opacity: 0.95;
word-wrap: break-word;
overflow-wrap: break-word;
}
.cta-button {
font-family: var(--font-raleway);
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1.5px;
padding: 1rem 2.5rem;
background: var(--white);
color: var(--primary);
text-decoration: none;
border-radius: 4px;
transition: all 0.3s ease;
display: inline-block;
}
.cta-button:hover {
background: var(--secondary);
color: var(--white);
transform: translateY(-2px);
}
.cta-image {
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 50%;
z-index: 1;
}
.cta-bg {
width: 100%;
height: 100%;
object-fit: cover;
mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.8) 100%);
-webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.8) 100%);
} .about-section {
padding: 7.5rem;
margin-top: 4rem;
}
.about-images {
position: relative;
height: 500px;
margin-bottom: 6rem;
margin-top: 4rem;
}
.about-image-wrapper {
border-radius: 8px;
overflow: hidden;
position: absolute;
}
.about-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.about-image-1 {
width: 28%;
height: 320px;
left: 0;
top: 0;
z-index: 3;
}
.about-image-2 {
width: 42%;
height: 420px;
left: 24%;
top: 40px;
z-index: 4;
}
.about-image-3 {
width: 32%;
height: 350px;
right: 0;
top: 0;
z-index: 3;
}
.about-decoration {
position: absolute;
}
.about-decoration-orange {
width: 20%;
height: 180px;
left: 5%;
bottom: 0;
background: var(--primary);
z-index: 2;
clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}
.about-decoration-navy {
width: 22%;
height: 140px;
right: 5%;
bottom: 20px;
background: var(--secondary);
z-index: 2;
clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%, 0 75%);
}
.about-content {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 3rem;
}
.about-text {
flex: 1;
max-width: 800px;
}
.about-title {
font-family: var(--font-raleway);
font-size: 2.5rem;
font-weight: 700;
margin: 0 0 1.5rem 0;
color: var(--black);
text-transform: uppercase;
letter-spacing: 1px;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.about-description {
font-family: var(--font-raleway);
font-size: 1.125rem;
font-weight: 400;
line-height: 1.8;
margin: 0 0 2rem 0;
color: var(--color-font-body);
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.about-cta {
font-family: var(--font-raleway);
font-size: 0.95rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1.5px;
padding: 0.875rem 2rem;
background: var(--black);
color: var(--white);
text-decoration: none;
border-radius: 4px;
transition: all 0.3s ease;
display: inline-block;
white-space: nowrap;
align-self: flex-end;
}
.about-cta:hover {
background: var(--primary);
transform: translateY(-2px);
} .gallery-section {
margin-top: 4rem;
padding: 0;
}
.gallery-grid {
display: flex;
gap: 0.5rem;
padding: 0 0.5rem;
}
.gallery-item {
flex: 1;
min-width: 0;
}
.gallery-img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
display: block;
cursor: pointer;
}
.gallery-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 3rem 7.5rem;
gap: 2rem;
}
.gallery-text {
font-family: var(--font-raleway);
font-size: 2rem;
font-weight: 700;
color: var(--black);
margin: 0;
text-transform: uppercase;
letter-spacing: 1px;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
max-width: 600px;
line-height: 1.3;
}
.gallery-social {
display: flex;
gap: 1rem;
}
.gallery-social-btn {
font-family: var(--font-raleway);
font-size: 0.95rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1.5px;
padding: 0.875rem 2rem;
background: var(--black);
color: var(--white);
text-decoration: none;
border-radius: 4px;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
white-space: nowrap;
}
.gallery-social-btn:hover {
background: var(--primary);
transform: translateY(-2px);
}
.gallery-icon {
flex-shrink: 0;
} .why-choose-section {
padding: 0 3rem 7.5rem;
}
.why-choose-container {
max-width: 1400px;
margin: 0 auto;
}
.why-choose-title {
font-family: var(--font-raleway);
font-size: 2.5rem;
font-weight: 700;
color: var(--black);
margin: 0 0 1.5rem 0;
text-align: left;
text-transform: uppercase;
letter-spacing: 1px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.why-choose-intro {
font-family: var(--font-raleway);
font-size: 1.125rem;
line-height: 1.8;
color: var(--color-font-body);
margin: 0 0 4rem 0;
text-align: left;
max-width: 900px;
}
.why-choose-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
.why-choose-item {
background: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
padding: 2rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.why-choose-item:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.why-choose-item-title {
font-family: var(--font-raleway);
font-size: 1.5rem;
font-weight: 700;
color: var(--black);
margin: 0 0 1rem 0;
text-align: left;
}
.why-choose-item-description {
font-family: var(--font-raleway);
font-size: 1rem;
line-height: 1.7;
color: var(--color-font-body);
margin: 0;
text-align: left;
} .lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
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-backdrop {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.95);
cursor: pointer;
}
.lightbox-close {
position: absolute;
top: 2rem;
right: 2rem;
width: 48px;
height: 48px;
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 50%;
cursor: pointer;
z-index: 10001;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
padding: 0;
}
.lightbox-close:hover {
background: rgba(255, 255, 255, 0.2);
transform: scale(1.1);
}
.lightbox-close img {
width: 24px;
height: 24px;
filter: invert(1);
}
.lightbox-content {
position: relative;
z-index: 10000;
max-width: 90vw;
max-height: 85vh;
display: flex;
align-items: center;
justify-content: center;
}
.lightbox-content img {
max-width: 100%;
max-height: 85vh;
object-fit: contain;
border-radius: 8px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-counter {
position: absolute;
bottom: 2rem;
left: 2rem;
z-index: 10001;
font-family: 'Raleway', sans-serif;
font-size: 1rem;
font-weight: 600;
color: white;
background: rgba(0, 0, 0, 0.5);
padding: 0.75rem 1.25rem;
border-radius: 24px;
backdrop-filter: blur(10px);
}
.lightbox-arrows {
position: absolute;
bottom: 2rem;
right: 2rem;
z-index: 10001;
display: flex;
gap: 0.75rem;
}
.lightbox-arrow {
width: 48px;
height: 48px;
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
color: white;
backdrop-filter: blur(10px);
}
.lightbox-arrow:hover {
background: rgba(255, 255, 255, 0.2);
transform: scale(1.1);
}
.lightbox-arrow:active {
transform: scale(0.95);
}
.lightbox-arrow svg {
width: 24px;
height: 24px;
} @media (max-width: 1286px) {
.gallery-social {
flex-direction: column;
gap: 0.75rem;
}
}
@media (max-width: 998px) {
.hero-content {
padding: 3.5rem;
}
.hero-title {
font-size: 2.5rem;
}
.hero-description {
font-size: 1.125rem;
}
.offer-section {
padding: 3.5rem;
}
.offer-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.offer-title {
font-size: 2rem;
}
.offer-subtitle {
font-size: 1rem;
}
.cta-content {
padding: 2.5rem 3.5rem;
}
.cta-title {
font-size: 2rem;
}
.cta-description {
font-size: 1rem;
}
.cta-image {
width: 55%;
}
.about-section {
padding: 3.5rem;
}
.about-images {
height: 450px;
}
.about-image-1 {
width: 30%;
height: 280px;
}
.about-image-2 {
width: 45%;
height: 380px;
}
.about-image-3 {
width: 32%;
height: 300px;
}
.about-decoration-orange {
width: 22%;
height: 150px;
}
.about-decoration-navy {
width: 24%;
height: 120px;
}
.about-title {
font-size: 2rem;
}
.about-description {
font-size: 1rem;
}
.gallery-footer {
padding: 2.5rem 3.5rem;
}
.gallery-text {
font-size: 1.75rem;
}
.why-choose-section {
padding: 0 2.5rem 3.5rem;
}
.why-choose-title {
font-size: 2rem;
}
.why-choose-intro {
font-size: 1rem;
margin-bottom: 3rem;
}
.why-choose-grid {
gap: 1.5rem;
}
.why-choose-item {
padding: 1.5rem;
}
.why-choose-item-title {
font-size: 1.375rem;
}
} @media (max-width: 768px) {
.hero {
min-height: 500px;
border-radius: 12px;
}
.hero-content {
padding: 2rem;
}
.hero-title {
font-size: 2rem;
}
.hero-description {
font-size: 1rem;
margin-bottom: 2rem;
}
.hero-cta {
padding: 0.875rem 2rem;
font-size: 0.9rem;
}
.offer-section {
padding: 2rem;
margin-top: 2rem;
}
.offer-header {
flex-direction: column;
align-items: flex-start;
gap: 1.5rem;
margin-bottom: 2.5rem;
}
.offer-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.offer-title {
font-size: 1.75rem;
}
.offer-image {
height: 200px;
}
.cta-section {
margin-top: 2rem;
border-radius: 12px;
}
.cta-content {
padding: 2rem;
min-height: 250px;
}
.cta-title {
font-size: 1.75rem;
}
.cta-description {
font-size: 0.9375rem;
margin-bottom: 1.5rem;
}
.cta-image {
width: 60%;
}
.cta-bg {
mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.6) 100%);
-webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.6) 100%);
}
.about-section {
padding: 2rem;
margin-top: 2rem;
}
.about-images {
height: 400px;
}
.about-image-1 {
width: 35%;
height: 220px;
left: 0;
top: 0;
}
.about-decoration-orange {
width: 28%;
height: 180px;
left: 8%;
bottom: 0;
}
.about-image-2 {
width: 48%;
height: 340px;
left: 26%;
top: 30px;
}
.about-image-3 {
width: 35%;
height: 240px;
right: 0;
top: 0;
}
.about-decoration-navy {
width: 26%;
height: 150px;
right: 8%;
bottom: 20px;
}
.about-content {
flex-direction: column;
align-items: flex-start;
}
.about-title {
font-size: 1.75rem;
}
.about-cta {
margin-top: 1.5rem;
}
.gallery-section {
margin-top: 2rem;
}
.gallery-grid {
flex-wrap: wrap;
}
.gallery-item {
flex: 0 0 calc(50% - 0.25rem);
}
.gallery-footer {
flex-direction: column;
align-items: flex-start;
padding: 2rem;
gap: 1.5rem;
}
.gallery-text {
font-size: 1.5rem;
}
.why-choose-section {
padding: 0 2rem 2.5rem;
}
.why-choose-title {
font-size: 1.75rem;
}
.why-choose-grid {
grid-template-columns: 1fr;
gap: 1.25rem;
}
.why-choose-item-title {
font-size: 1.25rem;
}
.why-choose-item-description {
font-size: 0.95rem;
}
.lightbox-close {
top: 1rem;
right: 1rem;
width: 40px;
height: 40px;
}
.lightbox-close img {
width: 20px;
height: 20px;
}
.lightbox-content {
max-width: 95vw;
max-height: 80vh;
}
.lightbox-content img {
max-height: 80vh;
}
.lightbox-counter {
bottom: 1rem;
left: 1rem;
font-size: 0.875rem;
padding: 0.625rem 1rem;
}
.lightbox-arrows {
bottom: 1rem;
right: 1rem;
}
.lightbox-arrow {
width: 40px;
height: 40px;
}
.lightbox-arrow svg {
width: 20px;
height: 20px;
}
} @media (max-width: 480px) {
.hero {
min-height: 450px;
}
.hero-content {
padding: 1rem;
}
.hero-title {
font-size: 1.75rem;
}
.hero-description {
font-size: 0.95rem;
}
.offer-section {
padding: 1rem;
margin-top: 3rem;
}
.offer-title {
font-size: 1.5rem;
}
.offer-subtitle {
font-size: 0.95rem;
}
.offer-image {
height: 280px;
}
.offer-item-title {
font-size: 1.25rem;
}
.offer-item-description {
font-size: 0.95rem;
}
.offer-cta {
padding: 0.75rem 1.5rem;
font-size: 0.875rem;
}
.cta-section {
margin-top: 3rem;
background: transparent;
}
.cta-content {
padding: 0;
flex-direction: column-reverse;
align-items: flex-start;
min-height: 350px;
position: relative;
}
.cta-text {
max-width: 100%;
padding: 2.5rem 1rem;
z-index: 3;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
.cta-title {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.cta-button {
padding: 0.875rem 2rem;
font-size: 0.9rem;
}
.cta-image {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
}
.cta-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(1, 145, 216, 0.15);
z-index: 2;
pointer-events: none;
}
.cta-bg {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 0;
filter: brightness(0.85) saturate(1.3);
mask-image: none;
-webkit-mask-image: none;
}
.about-section {
padding: 1rem;
margin-top: 3rem;
}
.about-content {
gap: 1.5rem;
flex-direction: column;
align-items: flex-start;
}
.about-images {
height: 350px;
margin-bottom: 4rem;
}
.about-image-1,
.about-image-3,
.about-decoration-navy {
display: none;
}
.about-decoration-orange {
width: 55%;
height: 140px;
left: -15%;
bottom: 0;
}
.about-image-2 {
width: 100%;
height: 280px;
left: 0;
top: 20px;
}
.about-title {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.about-description {
font-size: 0.95rem;
margin-bottom: 0;
}
.about-cta {
margin-top: 0;
align-self: flex-start;
}
.gallery-section {
margin-top: 3rem;
}
.gallery-grid {
position: relative;
height: 0;
padding-left: 0.5rem;
padding-right: 0.5rem;
padding-bottom: calc(100% - 1rem);
border-radius: 12px;
overflow: hidden;
}
.gallery-item {
position: absolute;
top: 0;
left: 0.5rem;
right: 0.5rem;
width: calc(100% - 1rem);
height: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
}
.gallery-item.active {
opacity: 1;
z-index: 1;
}
.gallery-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.gallery-footer {
padding: 1.5rem 1rem;
}
.gallery-text {
font-size: 1.25rem;
}
.gallery-social {
flex-direction: column;
align-items: flex-start;
gap: 0.75rem;
}
.gallery-social-btn {
width: auto;
padding: 0.75rem 1.5rem;
font-size: 0.875rem;
}
.why-choose-section {
padding: 0 1rem 2rem;
}
.why-choose-title {
font-size: 1.5rem;
}
.why-choose-intro {
font-size: 0.9375rem;
margin-bottom: 2rem;
}
.why-choose-item {
padding: 1.25rem;
}
.why-choose-item-title {
font-size: 1.125rem;
}
.why-choose-item-description {
font-size: 0.9375rem;
}
} @keyframes lightboxFadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes lightboxImageIn {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}
.lightbox.active .lightbox-content img {
animation: lightboxImageIn 0.3s ease;
}