@font-face {
    font-family: 'New Romantics';
    src: url('/fonts/NewRomantics.eot');
    src: url('/fonts/NewRomantics.eot?#iefix') format('embedded-opentype'),
        url('/fonts/NewRomantics.woff2') format('woff2'),
        url('/fonts/NewRomantics.woff') format('woff'),
        url('/fonts/NewRomantics.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site {
  width:1100px;
  margin:0 auto;   /* zentriert alles */
  background: #010001; /* oder was du hast */
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

body {
    color: #010001;
    font: 14pt Helvetica,sans-serif;
    margin: 0px; /* Aussenabstand */
    line-height: 17pt;
    text-align: justify;
    background: radial-gradient(circle at 40% 70%, #940ec5 0%, #dd0b1a 100%);
}

b, strong { 
	color: #dd0b1a; 
	font-weight: 900; 
}

i, em { 
	color: ##5f43ac; 
	font-weight: 600; 
}

u { 
	color: #940ec5; 
	font-weight: 600; 
	text-decoration: underline; 
}

ul {
        list-style: none;
}

ol {
        list-style: hiragana;
}

a:link, a:visited, a:active {
	color:#940ec5;
	text-decoration:underline;
}

a:hover{
	color:#5f43ac;
	font-weight: bold;
	text-decoration:none;
}

#header-image{
  height:652px;
  background:url("images/kagura-fl-header.jpg") center/cover no-repeat;
}

/* Navi */
#topnavi{ 
	background:#010001; 
	font-family:'New Romantics', Helvetica; 
}

#topnavi .topnavi-list{ 
	list-style:none; 
	margin:0; 
	padding:0; 
	display:flex; 
	justify-content: center;
}

#topnavi a {
	display:inline-block;
	font-size:24pt;
	text-decoration: none;
	color:#f9e048;
	width:13%;
	padding:18px 8px;
	text-align: center;
}

#topnavi a:after {
	content:none;
}

#topnavi a:hover {
	color:#dd0b1a;
	background:	#f9e049;
	font-weight: normal;
}

.content {
  padding: 10px 40px 40px 40px;
  background: #fdf9e5;
  max-width: 1100px;  
  margin: 0 auto;    
}

h1 {
  font-family: 'New Romantics';
  font-size: 42pt;
  line-height: 44px;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  padding: 25px 0 5px 5px;
  margin: 30px 0 15px 0;
  border-bottom: 2px solid #f9e049;
  
  /* Gradient Text */
  background: linear-gradient(to bottom, #940ec5, #dd0b1a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

h2{
font-family: 'New Romantics';
font-size:36pt;
line-height: 38px;
letter-spacing:1px;
text-align:left;
font-weight:normal;
font-style: normal;
color:#dd0b1a;
border-left:20px solid #f9e049;
padding-left: 28px;
padding-top: 5px;
padding-bottom: 5px;
margin-top: 40px;
margin-bottom: 20px;
}

h3{
font-family: 'New Romantics', Georgia;
font-size:28pt;
line-height: 30px;
letter-spacing:1px;
text-align:left;
text-transform: lowercase;
font-weight:normal;
font-style: italic;
padding-left: 10px;
padding:5px;
margin:20px 0 15px 0;
color:#940ec5;
border-bottom:1px solid #dd0b1a;
}

h4{
font-family: 'New Romantics', Georgia;
font-size:18pt;
line-height: 16px;
letter-spacing:-1px;
text-align:left;
text-transform: normal;
font-weight:bold;
font-style: italic;
padding-left: 0px;
padding:5px;
margin:5px;
color: #5f43ac;
}

blockquote {
    margin: 0 auto;
    font-family: Helvetica, Verdana;
    text-align: right;
    color: #010001;
    background-color: #f9e049;
    background-image: url("images/kagura-blockquote.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto;
    border-left: 10px dotted #5f43ac;
    border-right: 1px solid #5f43ac;
    border-top: 1px solid #940ec5;
    border-bottom: 1px solid #940ec5;
	padding-top: 10px;
    padding-bottom: 40px;
    padding-left: 150px;
	padding-right: 10px;
    background-origin: padding-box;
    border-radius: 4px;
	height: 220px;
	width: 60%;
}

blockquote strong,
blockquote b {
  color: #dd0b1a;
}

#footer {
  background: transparent; /* keine Farbe am äußeren Footer */
  padding: 5px;
	margin-top: 30px;
}

.footer-box {
  background: #f9e049;
  color: #010001;
  font-family: Helvetica, Verdana;
  font-size: 12px;
  text-align: center;   /* jetzt wirkt’s */
  padding: 15px;
  margin: 0 auto;
  letter-spacing: 1px;
  max-width: 1100px;
}

.footer-box a:link,
.footer-box a:visited,
.footer-box a:active {
  font-weight: 300;
  color: #dd0b1a;
  text-decoration: none; /* falls du keine Unterstreichung willst */
  transition: color 0.3s ease;
}

.footer-box a:hover {
  color: #940ec5; /* kleines Highlight beim Hover, kannst du anpassen */
  font-weight: 300; /* bleibt gleich, nur Farbe ändert sich */
}

/* Allgemeine Formularfelder */
input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
  color: #010001;
  border: 1px solid #dd0b1a;
  background: #f9e049;
  font-size: 14pt;
  font-family: Verdana, serif;
  width: 320px;
  margin: 5px 0;
  padding: 6px 10px;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Submit-Button */
input[type="submit"] {
  background: #dd0b1a;
  color: #f9e049;
  border: none;
  font-size: 14pt;
  font-family: Verdana, serif;
  padding: 8px 20px;
  margin-top: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

input[type="submit"]:hover {
  background: #5f43ac;
  color: #fff; /* dunkler für Kontrast */
}

