@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Light.woff2') format('woff2'),
        url('../fonts/OpenSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-SemiBold.woff2') format('woff2'),
        url('../fonts/OpenSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.woff2') format('woff2'),
        url('../fonts/OpenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Medium.woff2') format('woff2'),
        url('../fonts/OpenSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

}


html,
body {
    height: 100vh;
    width: 100%;
    font-family: 'Open Sans';
}

body {
    font-family: 'Open Sans';
    color: #231f20;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.d-none {
    display: none !important
}

.radius-0 {
    border-radius: 0
}


img {
    max-width: 100%;
    height: auto
}

/* ============typography============== */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px 0px 25px;
    color: #231f20;
}

h1 {
    font-size: 55px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 50px;
}

h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
}

h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
}

h5 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.6;
}

h6 {
    font-size: 22px;
    line-height: 1.8;
    font-weight: 600;

}

p {
    margin: 0px 0px 25px;
    font-size: 22px;
    line-height: 1.8;
    font-weight: 300;
}

/* section p:last-child {
    margin-bottom: 0px;
} */

a {
    text-decoration: none;
    color: #f26823;
    transition: all 0.3s ease;
}

b,
strong {
    font-weight: 600;
}

/* ============typography close here============== */



/* ==================form and button ========== */

/* ==================form and button  close here========== */


/* ============  layout =============== */



section {
    display: flex;
    width: 100%;
    flex-direction: column;
    position: relative;
    padding: 120px 0px;
    overflow: hidden;
    background-color: #fff;
}

.container-fluid {
    width: 100%;
    padding-left: 3vw;
    padding-right: 3vw;
    position: relative;
}

.container {
    width: 1250px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    margin: 0px auto;
}

.pl-0 {
    padding-left: 0px;
}

.pt-0 {
    padding-top: 0px;
}

.pr-0 {
    padding-right: 0px;
}

.pb-0 {
    padding-bottom: 0px;
}

.p-0 {
    padding: 0px;
}

.ml-0 {
    margin-left: 0px;
}

.mr-0 {
    margin-right: 0px;
}

.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.m-0 {
    margin: 0px;
}

.thik-border {
    border: 10px solid #f26823;
    width: 100%;

}

/* ===============btn css========= */

.btn-container {
    display: flex;
    width: 100%;
    column-gap: 30px;
    margin-top: 25px;
}

.btn,
button {
    background: #f26823;
    color: #ffffff;
    line-height: 1;
    padding: 15px 30px;
    text-decoration: none;
    outline: none;
    border: 0px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 0px;
}

.btn:hover,
button:hover,
.btn:focus,
button:focus {
    background: #147375;
    color: #ffffff;
    border: 0px;
    outline: none;
     border-radius: 0px;
}

/* ============  layout close here =============== */

/* ====color scheme ====*/

.white-bg {
    background-color: #ffffff;
}

.white-text {
    color: ##ffffff;
}

.black-text {
    color: #231f20;
}

.orange-bg {
    background-color: #f26823;
}

.orange-text {
    color: #f26823;
}

.gray-bg {
    background-color: #e7e7e8;
}

.gray-text {
    color: #e7e7e8;
}

.green-bg {
    background-color: #147375;
}

.green-text {
    color: #147375;
}

/* ========color scheme colose here */

/* ===========header and section css start from here============ */
/* =============header=============== */


header {
    display: flex;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;

}

header.sticky {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    column-gap: 30px;
}
.brand img {
    max-width: 100%;

    transition: all 0.3s ease;
}
a.brand{
    width: 200px;
}

 

 





.menu-toggle {
    display: none;
  
    cursor: pointer;
    margin-left: 0px;
}
.menu-toggle svg{
    width: 45px;
    height: 45px;
    margin-right: -5px;
        margin-top: 10px;
}


/* menu item css */

.main-nav {
    /* margin-left: calc(max(3vw, (100vw - 1250px) / 2) - 400px - 15px); */
}

.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    column-gap: 4vw;
    /* this gap is only for greated then 1920px scren resolution  */
}

.main-nav ul li a {
    text-decoration: none;
    font-weight: 600;
    color: #231f20;
}

.main-nav ul li a:hover,
.main-nav ul li a:focus,
.main-nav ul li .menu-active {
    color: #f26823;
}

.header-actions a {
    display: flex;

}
a.mail-link img {
    width: 50px;
}


/* ==========after header ================ */
.after-header-intro {
    padding-top: 350px;
}



/* ====motorboot======== */

.motorboot-wrap,
.segeln-wrap {
    display: flex;
    align-items: stretch;
    padding: 0px;
    /* your container spacing */
    position: relative;
    gap: 0;
}


.motorboot-image {
    flex: 1 1 50%;
    margin-left: 0px;

}

.motorboot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT CONTENT */
.motorboot-content,
.segeln-content-left {
    flex: 1 1 50%;
    padding: 60px 3vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.segeln-content-left{
    position: relative;
}

/* ================= Segeln section ================ */

.segeln-image-right {
    flex: 1 1 50%;
    margin-right: 0px;

}

.segeln-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========= */
ul.bullets {
    list-style-type: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 0px;
}

ul.bullets li {
    position: relative;
    padding-left: 25px;
}

ul.bullets li:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 14px;
    width: 9px;
    height: 9px;
    background-color: #147375;
    -webkit-mask: url("../images/circle.svg") no-repeat center / contain;
    mask: url("../images/circle.svg") no-repeat center / contain;

}

/* ======golbe section========== */

.gelbe-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.gelbe-card {
    width: 60%;
    padding: 130px 60px 130px 180px;
}

.gelbe-image {
    width: 50%;
    position: relative;
    z-index: 1;
    margin-right: -10%;
}

.gelbe-image img {
    width: 100%;
}

/* =============chronic section============= */

.chronic-wrapper {
    display: flex;
    column-gap: 4vw;
    justify-content: space-between;
}

.chronic-left {
    padding-top: 120px;
}


.chronic-col {
    width: 50%;
}

.chronic-right .chronic-image {
    margin-right: -3vw;
    margin-bottom: 25px;
}


.chronic-image img {
    width: 100%;
}

/* ===========kontakt section======== */

#kontakt p {
    margin-bottom: 5px;
}

ul.phone-email {
    margin: 0px;
    padding: 0px;
    display: flex;
    list-style-type: none;
}

ul.phone-email a {
    color: #231f20;
}

ul.phone-email a:hover,
ul.phone-email a:focus {
    color: #f26823;
}

iframe {
    width: 100%;
    margin-top: 40px;
}

/* ==footer====== */
footer {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-top {
    margin-top: 10px;
    display: flex;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.footer-top-inner {
    display: flex;
    justify-content: space-between;
    /* align-items: end; */
    width: 100%;
    column-gap: 30px;
}

.footer-col {
    flex: 0 0 20%;
    flex-grow: 1;
    flex-shrink: 1;

}

.footer-col.footer-col-2 {
    flex: 0 0 30%;

}

.footer-col-2-ul-container {
    height: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.footer-col.footer-col-3 {
    flex: 0 0 30%;
}

.footer-col.footer-col-4 {
    align-content: end;
}

footer ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 3px;

}

footer ul li a {
    color: #ffffff;
    font-weight: 500;
}

footer .footer-contct-info li a {
    font-weight: 300;
}

footer,
footer li,
footer p,
footer span,
footer h6 {
    color: #ffffff;
}

footer .email a {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 0px;
}

.footer-social {
    display: flex;
    width: auto;
    column-gap: 15px;
    justify-content: space-between;
    flex-direction: row;
    margin-right: 0px;
    margin-left: auto;
    max-width: fit-content;
}

.footer-social svg {
    width: 35px;
    height: 35px;
}

.footer-bottom {
    padding: 5px 0px;
}

.copyright {
    color: #147375;
    font-weight: 600;
}

/* datensutch page */

.datensutch-info-ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 3px;
}

.datensutch-info-ul li a {
    color: #231f20;
}

.content-page section a:hover {
    color: #f26823;
    text-decoration: underline;
}

.content-page-other-info h4 {
    margin-bottom: 10px;
    margin-top: 40px;
}


/* ===gsap animation section wise====*/

/* Intro GSAP initial state */
#intro h1,
#intro .btn-container {
    opacity: 0;
    transform: translateY(40px);
}



/* Verein GSAP initial state (intro-style) */
#varein .varein-icon,
#varein h2,
#varein p {
    opacity: 0;
    transform: translateY(40px);
}

/* Motorboot GSAP initial state */
#motorboot .motorboot-image,
#motorboot .motorboot-icon,
#motorboot h2,
#motorboot p {
    opacity: 0;
    transform: translateY(40px);
}

/* image ko thoda side se lana better feel deta hai */
#motorboot .motorboot-image {
    transform: translateX(-120px);
}


/* Segeln initial states (same as motorboot logic) */
#segeln .segeln-image-right {
    opacity: 0;
    transform: translateX(60px);
    /* RIGHT se */
}

#segeln .segeln-icon,
#segeln h2,
#segeln p {
    opacity: 0;
    transform: translateY(40px);
}

/* Jugend GSAP initial state (same as Verein) */
#jugend img,
#jugend h2,
#jugend>.container>p,
#jugend .was-wir-biete h5,
#jugend .was-wir-biete>p,
#jugend .bullets li,
#jugend .btn-container {
    opacity: 0;
    transform: translateY(40px);
}

/* Gelbe Welle GSAP initial state */
#gelbe_welle .gelbe-image {
    opacity: 0;
    transform: translateY(-90px);
    /* pehle -60 ya -40 hoga */
}

#gelbe_welle h2,
#gelbe_welle .gelbe-card p {
    opacity: 0;
    transform: translateY(40px);
}

/* Gesellschaft – Verein style initial state */
#gesellschaft .varein-icon,
#gesellschaft h2,
#gesellschaft p {
    opacity: 0;
    transform: translateY(40px);
}

/* Chronik initial states – ALL bottom → top */
#chronic h2,
#chronic .chronic-group {
    opacity: 0;
    transform: translateY(40px);
}

/* Chronik image – RIGHT → LEFT initial state */
#chronic .chronic-image {
    opacity: 0;
    transform: translateX(120px);
    /* right se */
}


/* Kontakt initial states */
#kontakt h2,
#kontakt p,
#kontakt .phone-email,
#kontakt .location {
    opacity: 0;
    transform: translateY(40px);
}

/* ====parallax image gsap animation  ========= */

/* Common parallax section setup */
#sunset,
#parallax_two,
#parallax_three {
    position: relative;
    overflow: hidden;
    height: 80vh;
    /* adjust if needed */
}

#sunset img,
#parallax_two img,
#parallax_three img {
    width: 100%;
    height: 120%;
    /* image bigger for movement */
    object-fit: cover;
    display: block;
    will-change: transform;
}


/* =========back to top css======== */


/* Back to Top Button */
body #backToTop {
    position: fixed;
    right: 1vw;
    bottom: 2vw;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0px;
    background: rgba(20, 115, 117, 0.65);
    /* theme ke hisaab se change */
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    z-index: 999;
    transition: background 0.3s ease;
}

#backToTop:hover {
    background: rgba(20, 115, 117, 0.9);
}

body #backToTop svg {
    width: 25px;
    height: 25px;
}

/* ============section icon css========= */

.section-icon {
    position: absolute;
    z-index: 0;
    width: 320px;
    
}

.varein-icon.section-icon {
    bottom: -50px;
    left:0px;
}

img.motorboot-icon.section-icon {
    left: auto;
    right: 100px;
}

img.jugend-icon.section-icon {
    right: 0px;
    top: 35%;
}

img.gesssellschaft-icon.section-icon {
    right: -150px;
    bottom: -70px;
    width: 280px;
}

img.segeln-icon.section-icon {
    right: 100px;
}
.gelbe-card p:last-child {
    margin-bottom: 0px;
}

.chronic-mobile-image{
    display: none;
}

 
/* ================================
   GSAP Popups (Impressum + Datenschutz)
================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  width: min(92%, 1200px);
  max-height: 85vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
 
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 26px;
    cursor: pointer;
    padding: 15px !important;
    width: 45px !important;
    height: 45px !important;
    line-height: 1 !important;
    display: flex;
    align-items: center;
}

@media (max-width: 600px) {
  .popup-box {
    padding: 22px;
  }
}

