/* Swiss Noble Partners - style.css */

/* ==================================================
   01. GRUNDDEFINITIONEN
   ================================================== */

body{
    margin:0;
    padding:0;
    background:#0b0b0b;
    color:#d7c188;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.seo-title{
    font-size:32px;
    color:#BB9633;
    font-family:"Cormorant Garamond", Georgia, serif;
    font-weight:bold;
    margin:10px 0 5px 0;
}

.seo-subtitle{
    font-size:26px;
    color:#DCC074;
    font-family:"Cormorant Garamond", Georgia, serif;
    font-weight:normal;
    margin:0 0 20px 0;
}


/* ==================================================
   02. SEITENLAYOUT
   Container / Content
   ================================================== */

.container{
    display:flex;
    min-height:100vh;
}

.content{
    flex:1;
    padding:180px 50px 50px 50px;
}

.intro-table {
	padding-top: 200px;
}


/* ==================================================
   03. LINKE NAVIGATION
   Sidebar
   ================================================== */

.sidebar{
    width:280px;
    background:#111111;
    border-right:2px solid #b08d57;
	border-bottom: 2px solid #b08d57;
    padding:25px;
    box-sizing:border-box;
	height: fit-content;
	align-self: flex-start;
	
	border-bottom-right-radius:25px;
	overflow:hidden;
}

.logo{
    color:#d4af37;
    text-align:center;
    margin-bottom:30px;
    letter-spacing:2px;
}

.sidebar ul{
    list-style:none;
    margin:0;
    padding:0;
	padding-bottom:10px; /* Kleiner Abstand zwischen letztem Button und Rand */
}

.sidebar li{
    margin-bottom:12px;
}

.sidebar a{
    display:block;
    width:100%;
    box-sizing:border-box;
    padding:14px 20px;
    background:#1b1b1b;
    color:#d4af37;
    text-decoration:none;
    text-align:center;
    font-size:17px;
    font-weight:bold;
    border:1px solid #b08d57;
    border-radius:6px;
    transition:all .3s ease;
}

.sidebar a:hover{
    background:#b08d57;
    color:#000;
    box-shadow:0 0 12px rgba(212,175,55,.8);
}


/* ==================================================
   04. RECHTE NAVIGATION
   Cockpit
   ================================================== */

.sidebar-right{

    position:fixed;

    right:10px;              /* Abstand zum rechten Bildschirmrand */

    top:calc(50% + 20px);

    transform:translateY(-50%);

    width:130px;

    background:rgba(0,0,0,0.70);

    border:2px solid #b08d57; /* kompletter goldener Rand */

    padding:15px 10px;

    box-sizing:border-box;

    border-radius:25px;      /* alle vier Ecken abgerundet */

    overflow:hidden;

    z-index:5000;

}


.sidebar-right ul{

    list-style:none;

    margin:0;

    padding:0;

}


.sidebar-right li{

    margin-bottom:4px;

}


.sidebar-right a{

    display:block;

    width:90%;
	
	margin:0 auto;

    box-sizing:border-box;

    padding:7px 3px;

    background:rgba(27,27,27,0.90);

    color:#d4af37;

    text-decoration:none;

    text-align:center;

	font-family: Verdana, Arial, sans-serif;

    font-size:11px;

	font-weight:normal;
	
    border:1px solid #b08d57;

    border-radius:5px;

    transition:all .3s ease;

}


.sidebar-right a:hover{

    background:#b08d57;

    color:#000;

    box-shadow:0 0 12px rgba(212,175,55,.8);

}

.cockpit-title{

    color:#D4AF37;

    text-align:center;

    font-family:"Cormorant Garamond", Georgia, serif;

    font-size:16px;

    font-weight:bold;

    letter-spacing:1px;

    margin-bottom:12px;

}


/* ==================================================
   05. HEADER
   ================================================== */

.header-bereich{
	position:fixed;
	top:0;
	left:280px;
	width:calc(100% - 280px);
	text-align:center;
	z-index:1000;
}

.header-banner{
    display:inline-block;
    background:#111111;
	border-left:1px solid #BB9633;
	border-right:1px solid #BB9633;
	border-bottom:1px solid #BB9633;
	border-top:none;
    border-radius:0 0 20px 20px;
    overflow:hidden;
    box-shadow:0 0 15px rgba(187,150,51,.25);
}

.header-image{
    display:block;
    width:400px;
    max-width:100%;
    height:auto;
}

.header-ornament{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:5px;
}

.header-ornament img{
    width:160px;
    height:auto;
    display:block;
}


/* ==================================================
   06. HAUPTINHALT
   Boxen, Tabellen, Texte
   ================================================== */

.luxury-box{
	background: rgba(0,0,0,0.76);
	border: 1px solid rgba(187,150,51,0.75);
	border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0,0,0,0.60);
    padding: 35px;
}

.snp-box{
    background:#000000;
    border:1px solid rgba(187,150,51,0.75);
    border-radius:24px 24px 0 0;
    overflow:hidden;
    box-shadow:0 8px 35px rgba(0,0,0,0.60);
    padding:0px;
}

.snp-box td{
    background:#000000;
    padding:10px;
	text-align:center;
	vertical-align:middle;
}

.intro-box{
	background: rgba(0,0,0,0.76);
	border: 1px solid rgba(187,150,51,0.75);
	border-radius: 0 0 24px 24px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0,0,0,0.60);
    padding: 35px;
}

.intro-box td{
    padding:0;
}

.logo-image{
    width:60%;
    height:auto;
}


/* ==================================================
   07. BUTTONS
   Navigation Buttons
   ================================================== */

.nav-button{
    display:block;
    width:230px;          /* gleiche nutzbare Breite wie in der Sidebar */
    box-sizing:border-box;
    margin:12px auto;

    padding:14px 20px;

    background:#1b1b1b;
    color:#d4af37;

    text-decoration:none;
    text-align:center;

    font-size:17px;
    font-weight:bold;

    border:1px solid #b08d57;
    border-radius:6px;

    transition:all .3s ease;
}

.nav-button:hover{
    background:#bb9633;
    color:#000;
    box-shadow:0 0 15px rgba(187,150,51,.5);
}

.navhor-buttons{
    display:flex;
    justify-content:center;   /* ganze Button-Gruppe zentrieren */
    align-items:center;
    gap:12px;                 /* Abstand zwischen den Buttons */
}

.navhor-button{
    display:block;
    width:230px;              /* gleiche Breite für alle Buttons */
    box-sizing:border-box;

    padding:14px 20px;

    background:#1b1b1b;
    color:#d4af37;

    text-decoration:none;
    text-align:center;

    font-size:17px;
    font-weight:bold;

    border:1px solid #b08d57;
    border-radius:6px;

    transition:all .3s ease;
}

.navhor-button:hover{
    background:#bb9633;
    color:#000;
    box-shadow:0 0 15px rgba(187,150,51,.5);
}


/* ==================================================
   07b. SPRACHBUTTONS
   ================================================== */

.language-box{

    display:table;

    margin:20px auto 25px auto;

    background:rgba(0,0,0,0.76);

    border:1px solid rgba(187,150,51,0.75);

    border-radius:18px;

    padding:3px 8px;

    box-sizing:border-box;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.60);

}


.language-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:3px;

}


.language-buttons img{

    display:block;

    width:35px;

    height:35px;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;

}


.language-buttons a:hover img{

    transform:translateY(-5px);

    filter:
        drop-shadow(0 0 8px rgba(212,175,55,0.9))
        brightness(1.25);

}


/* ==================================================
   SPRACHBUTTONS ÜBER COCKPIT
   ================================================== */

.language-box-right{

    position:fixed;

    right:10px;

    top:10px;

    width:160px;

    height:auto;

    background:rgba(0,0,0,0.40);

    border:2px solid #b08d57;

    border-radius:25px;

    padding:2px 5px;

    box-sizing:border-box;

    z-index:5001;

    box-shadow:
        0 0 15px rgba(187,150,51,.25);

}


.language-buttons-right{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:0px;

}


.language-buttons-right img{

    display:block;

    width:50px;

    height:50px;

    transition:
        transform .3s ease,
        filter .3s ease;

}


.language-buttons-right a:hover img{

    transform:translateY(-3px);

    filter:
        drop-shadow(0 0 8px rgba(212,175,55,.9))
        brightness(1.25);

}


/* ==================================================
   08. FORMULARE
   Registration
   ================================================== */

.registration-form{
    width:100%;
}

.registration-form table{
    width:100%;
    border-collapse:collapse;
}

.registration-form td{
    padding:10px 0;
}

.registration-form label{
    color:#DCC074;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:16px;
    margin-bottom:6px;
}

.registration-form label.checkbox-label{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.registration-form input:not([type="checkbox"]),
.registration-form select,
.registration-form textarea{

    width:100%;
    box-sizing:border-box;

    padding:12px;

    background:#111111;

    color:#DCC074;

    border:1px solid #BB9633;

    border-radius:6px;

    font-size:15px;

    font-family:Verdana, Arial, Helvetica, sans-serif;

    transition:.25s;
}

.registration-form textarea{

    resize:vertical;
    min-height:120px;
}

.registration-form input:focus,
.registration-form textarea:focus,
.registration-form select:focus{

    outline:none;

    border-color:#D4AF37;

    box-shadow:0 0 12px rgba(212,175,55,.45);
}

.registration-form h2{

    color:#BB9633;

    margin-top:35px;
}

.registration-form .submit{

    display:block;

    width:280px;
    box-sizing:border-box;

    margin:30px auto;

    padding:14px 20px;

    background:#1b1b1b;

    color:#D4AF37;

    text-align:center;

    border:1px solid #b08d57;

    border-radius:6px;

    cursor:pointer;

    font-size:17px;

    font-weight:bold;

    font-family:Verdana, Arial, Helvetica, sans-serif;

    transition:all .3s ease;
}

.registration-form .submit:hover{

    background:#bb9633;

    color:#000;

    box-shadow:0 0 15px rgba(187,150,51,.5);
}

.registration-form input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.checkbox-zeile{
    margin:3px 0;
    color:#DCC074;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:16px;
	line-height:1.2;
}

.checkbox-zeile input[type="checkbox"]{
    width:auto;
    margin-right:8px;
	transform:scale(1.15);
	vertical-align:middle;
 }


/* ==================================================
   09. FOOTER
   Bilderleiste / SVG-Footer
   ================================================== */

.footer-bereich{
    position:fixed;
	left:280px;
	bottom:0;
	width:calc(100% - 280px);
	text-align:center;
	z-index:9999;
}

.footer-bilderleiste{
	display:table;
	margin:0 auto;
	padding:8px;

	border-left:1px solid #BB9633;
	border-right:1px solid #BB9633;
	border-top:1px solid #BB9633;
	border-bottom:none;

	border-radius:18px 18px 0 0;
	background:rgba(0,0,0,0.55);

	box-shadow:0 0 15px rgba(187,150,51,.25);
}

.footer-tabelle{
    border-collapse:separate;
    border-spacing:0;
}

.footer-bilderleiste td{
	border:none;
	padding:0;
}

.footer-bilderleiste img{

	display:block;

	height:100px;

	width:auto;

	transition:transform 0.3s ease,
	           filter 0.3s ease;

}

/* Rollover Effekt Footer SVG Buttons */
.footer-bilderleiste a:hover img{

	transform:translateY(-5px);

	filter:
		drop-shadow(0 0 8px rgba(212,175,55,0.9))
		brightness(1.25);

}


/* ==================================================
   10. SONDERANPASSUNGEN
   Responsive / Browser
   ================================================== */

html, body{

    min-width:0;

}


/* Kleine Browserfenster:
   Desktop-Layout beibehalten */

@media (max-width:1200px){

    .sidebar-right,
    .language-box-right,
    .footer-bereich{

        display:none;

    }

}
