/* Swiss Noble Partners - style.css */

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

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

.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);
}

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

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

.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;
}

.footer-bilderleiste{
	display:block;
	width:760px;
	margin:0 auto;
    padding:10px;
    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:#111111;
    box-shadow:0 0 15px rgba(187,150,51,.25);
}

.footer-bilderleiste table{
    border-collapse:collapse;
}

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

.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;
}

.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: 0px;
}

.intro-box td{
    padding:8px 20px;
}

.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);
}

/* ============================= */
/* Registration Form             */
/* ============================= */

.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{

    width:280px;

    margin:30px auto;

    display:block;

    background:#1b1b1b;

    color:#D4AF37;

    border:1px solid #BB9633;

    cursor:pointer;

    font-size:18px;

    font-weight:bold;
}

.registration-form .submit:hover{

    background:#BB9633;

    color:#000;
}

.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;
 }