@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;
}
}:root {
--contact-bg: #f9f9f9;
--contact-primary: var(--primary, #378036);
--contact-secondary: var(--secondary, #6bb449);
--text-main: #333;
--text-light: #666;
--input-border: #ddd;
--input-bg: #fff;
}
.contact-page-main {
background-color: var(--contact-bg);
min-height: 80vh;
padding-bottom: 60px;
}
.contact-header-section {
padding: 60px 0 0;
}
.contact-container {
width: 100%;
margin: 0 auto;
padding: 0 1rem;
}
@media (min-width: 768px) {
.contact-container {
padding: 0 3.5rem;
}
}
@media (min-width: 992px) {
.contact-container {
padding: 0 6rem;
}
}
@media (min-width: 1200px) {
.contact-container {
padding: 0 9rem;
}
}
.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-title {
text-align: left;
font-size: 2.5rem;
font-weight: 900;
margin-bottom: 0.5rem;
text-transform: none;
color: var(--text-main);
}
.section-description {
font-size: 1.1rem;
color: #666;
max-width: 600px;
line-height: 1.6;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-top: 0;
}
@media (max-width: 992px) {
.contact-grid {
grid-template-columns: 1fr;
gap: 40px;
}
}
.contact-info-column {
display: flex;
flex-direction: column;
gap: 20px;
}
.contact-item {
display: flex;
flex-direction: column;
gap: 8px;
}
.contact-label {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
color: #999;
margin-bottom: 4px;
}
.contact-link-large {
font-size: 3rem;
font-weight: 800;
color: #111;
text-decoration: none;
line-height: 1.1;
transition: color 0.3s;
}
.contact-link-large:hover {
color: var(--contact-primary);
}
.contact-link-medium {
font-size: 1.5rem;
font-weight: 700;
color: #111;
text-decoration: none;
transition: color 0.3s;
}
.contact-link-medium:hover {
color: var(--contact-primary);
}
.contact-sub {
font-size: 0.9rem;
color: var(--text-light);
}
.contact-address {
font-size: 1.1rem;
line-height: 1.5;
color: #111;
}
.contact-address strong {
font-weight: 700;
}
.map-wrapper {
margin-top: 20px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
height: 300px;
}
.contact-map iframe {
width: 100%;
height: 100%;
}
.contact-form-wrapper {
background: transparent;
padding: 0;
border-radius: 0;
box-shadow: none;
}
.form-title {
font-size: 1.5rem;
font-weight: 800;
margin-bottom: 25px;
color: #111;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 12px;
}
.form-row {
display: flex;
flex-direction: column;
gap: 15px;
}
.form-row--two {
flex-direction: row;
}
@media (max-width: 600px) {
.form-row--two {
flex-direction: column;
}
}
.form-group {
display: flex;
flex-direction: column;
gap: 4px;
flex: 1;
}
.form-group label {
font-size: 0.9rem;
font-weight: 700;
color: #333;
}
.form-group label .required {
color: #e53935;
}
.form-group input,
.form-group textarea {
padding: 12px 16px;
border: 1px solid var(--input-border);
border-radius: 25px;
font-size: 1rem;
font-family: inherit;
transition: border-color 0.3s, box-shadow 0.3s;
background-color: var(--input-bg);
}
.form-group textarea {
resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--contact-secondary);
box-shadow: 0 0 0 3px rgba(107, 180, 73, 0.1);
}
.form-group.has-error input,
.form-group.has-error textarea {
border-color: #e53935;
}
.field-error {
font-size: 0.8rem;
color: #e53935;
display: none;
margin-top: 2px;
}
.form-group.has-error .field-error {
display: block;
}
.form-actions {
margin-top: 10px;
}
.btn-submit {
display: inline-block;
padding: 0.75rem 0;
width: 200px;
text-align: center;
border-radius: 50px;
font-size: 1rem;
font-weight: 600;
text-transform: none;
text-decoration: none;
cursor: pointer;
transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
background-color: var(--contact-secondary);
color: #fff;
border: 2px solid var(--contact-secondary);
letter-spacing: normal;
position: relative;
}
.btn-submit:hover {
background-color: var(--contact-primary);
border-color: var(--contact-primary);
}
.btn-submit:disabled {
background-color: #ccc;
cursor: not-allowed;
transform: none;
}
.btn-loader {
display: none;
}
.btn-submit.loading .btn-text {
display: none;
}
.btn-submit.loading .btn-loader {
display: inline-block;
}
.form-notice {
font-size: 0.8rem;
color: #888;
margin-top: 0;
}
.form-notice a {
color: #333;
text-decoration: underline;
}
.form-message {
margin-top: 0;
padding: 0;
border-radius: 0;
text-align: left;
font-weight: 600;
background-color: transparent !important;
}
.form-message.success {
background-color: transparent;
color: #2e7d32;
}
.form-message.error {
background-color: transparent;
color: #c62828;
}
.honeypot-field {
display: none;
position: absolute;
left: -9999px;
}