/*   
Theme Name: [Företag] Theme
Theme URI: https://[Företag].se
Description: The official [Företag] Wordpress Theme
Author: Ola Eborn
Author URI: https://eborninteractive.se
Version: 1.0
*/

/* CSS Document */

/* 

Färger:



*/


@font-face {
    font-family: 'CormorantGaramond';
    src: url('fonts/CormorantGaramond.woff2') format('woff');
    font-weight: 300 900;
    font-stretch: 25% 150%;
}

@font-face {
    font-family: 'CormorantGaramond Italic';
    src: url('fonts/CormorantGaramond-Italic.woff2') format('woff');
    font-weight: 300 700;
    font-stretch: 25% 150%;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto.woff2') format('woff');
    font-weight: 100 900;
    font-stretch: 25% 150%;
}

@font-face {
    font-family: 'Roboto Italic';
    src: url('fonts/Roboto-italic.woff2') format('woff');
    font-weight: 100 900;
    font-stretch: 25% 150%;
}

* {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
}

:root {
	--black: #000;
	--white: #fff;
	--lightblue:  #D7E9F6;
	
}

body {
	background:var(--lightblue);
	color:var(--black);
	margin:0;
	padding:0;
	font-family:'Roboto', Helvetica ,Arial,  sans-serif;
	font-weight: 370;
	line-height:1.5;
	font-size:16px;
}

body b, body strong {
	font-weight: 600;
}

h1,h2,h3,h4,h5,h6 {
	font-family:'CormorantGaramond Italic', serif;
	font-weight: 700;
	line-height: 1 !important;
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong, h1 b, h2 b, h3 b, h4 b, h5 b, h6 b {
	font-weight:700;
}

#page-wrap {
	width:100%;
	position:relative;
}

.inner-content {
	margin:0 auto;
	overflow:hidden;
	max-width:600px;
	width:90%;
	position:relative;
}

header {
	background: var(--white);
	max-width: 600px;
	margin: 0 auto;
}

header .inner-content {
	background: var(--white);
	padding: 20px 30px;
	width: 100%;
}

header .inner-content #logo {
	width: 160px;
}

#main-content {
	
}

#main-content .inner-content {
	
}

footer .footersection {
	margin-bottom: 15px;
	text-align: center;
}

footer {
	margin-top: 30px;
}

footer .socials {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

footer .socials .soc-icon {
	width: 36px;
}

footer .unsubscribe a {
	text-transform: uppercase;
	font-size: 12px;
}

footer .inner-content {
	background: var(--white);
	padding: 30px;
}

footer .logo-section {
	display: flex;
	align-items: center;
	justify-content: center;
}

footer a {
	color: inherit;
	text-underline-offset:3px;
}

footer a:hover {
	text-decoration:underline;
}

footer .logo-section .footer-logo {
	width: 150px;
}

footer .kontaktinfo {
	margin-top: 40px;
	text-align: center;
}

.block {
	position: relative;
	margin-bottom: 30px;
}

/* image/text block */
.imagetext-block .inner-content {
	width:100%;
}

.imagetext-block .text {
	color: var(--white);
	padding: 20px 30px 30px;
	background: var(--black);
}

.imagetext-block .text :is(h1,h2,h3,h4,h5,h6) {
	color: var(--white);
}

.imagetext-block .text :is(h1,h2) {
	font-size: 36px;
	margin-bottom: 10px;
}

.imagetext-block .text p:last-child {
	margin-bottom: 0;
}
/* end image/text block */

/* calendar block */
.calendar-block {
	background: transparent;
	padding: 20px 30px 30px;
}

.calendar-block h2 {
	font-size: 32px;
}

.calendar-block .event-item {
	display: flex;
	padding: 20px;
	gap:	30px;
}

.calendar-block .event-item:nth-child(even) {
    background: var(--white);
}

.calendar-block .event-item .date {
	display: flex;
	flex-direction: column;
	background: var(--black);
	color: var(--white);
	font-size:39px;
	flex: 0 0 80px;
	height: 80px;
	align-items: center;
	justify-content: center;
	font-family: 'CormorantGaramond Italic';
	font-weight: 900;
}

.calendar-block .event-item .date .day {
	line-height: 1;
	margin-top: -12px;
}

.calendar-block .event-item .date .mounth {
	font-family:'Roboto', Helvetica ,Arial,  sans-serif; 
	font-size:16px;
	font-weight: 400;
	text-transform: uppercase;
}

.calendar-block .event .event-info {
	font-weight: 700;
	margin-bottom: 5px;
	line-height: 1.3;
}

.calendar-block .event .event-desc p:last-child {
	margin-bottom: 0;
}

/* event-item som länk */
a.event-item {
    display: flex;
    text-decoration: none;
    color: var(--black);
    transition: opacity 0.15s ease;
}

a.event-item:hover {
    opacity: 0.75;
}
/* end calendar block */

/* featured block */
.featured-block {
    background: var(--white);
    padding: 25px 0;
    max-width: 600px;
    margin: 0 auto;
}

.featured-block .text-section {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 30px;
}

.featured-block .image {
	margin-bottom: 20px;
}

.featured-block .text-section h2 {
	font-size: 32px;
}

.featured-block .text-section .right-section {
	flex: 0 0 150px;
}

.featured-block .text-section .datebox {
	padding: 10px;
	border: 1px solid var(--black);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	text-transform:uppercase;
	font-size: 14px;
	min-height: 100px;
}

.featured-block .text-section .datebox .day {
    font-size: 52px;
    font-weight: 700;
    line-height: 0.9;
}

.svs-btn {
	display: block;
	background: var(--lightblue);
	font-size: 13px;
	text-align:center;
	color: inherit;
	text-transform: uppercase;
	font-weight: 700;
	padding: 8px 20px;
	transition:0.2s all ease;
}

.svs-btn:hover {
	background-color: var(--black);
	color: var(--white);
}
/* end featured block */


/* event single page */


.svs-single-hero-content h1 {
    font-family: 'CormorantGaramond Italic', serif !important;
}

body.svs-event-single {
    margin: 0;
    padding: 0;
    background: #D7E9F6;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 370;
    color: #000;
}

/* ── Header ── */
.svs-header {
    background: #fff;
    width: 100%;
    padding: 15px 0;
    position: relative;
    z-index: 10;
    max-width: unset;
}

.svs-header .inner-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 5px;
    width: 90%;
}

.btn-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px 0;
}

.btn {
	border: 1.5px solid var(--black);
	padding: 12px 38px 12px 30px;
	border-radius: 30px;
	color: var(--black);
	display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
	transition:0.2s all ease;
	position: relative;
}

.btn:hover {
	background-color:var(--lightblue);
	border-color:var(--lightblue);
	text-decoration: none;
}

.btn:after {
    content: url(images/downarrow.svg);
    width: 22px;
    transform: rotate(-90deg);
    position: absolute;
    right: 10px;
    top: 11px;
}

.svs-header img {
    width: 160px;
    display: block;
}

/* ── Hero ── */
.svs-hero {
    position: relative;
	min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.svs-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.svs-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.svs-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 6vw 60px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.svs-hero-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 1;
    margin-bottom: 14px;
    font-weight: 700;
}
.svs-hero-title {
    font-family: 'CormorantGaramond Italic', serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 28px 0;
    color: #fff;
    max-width: 1200px;    
}
.svs-hero-signup-btn {
    display: inline-block;
    background: var(--lightblue);
    color: var(--black);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    text-decoration: none;
   transition:0.2s all ease;
    margin-bottom: 40px;
}
.svs-hero-signup-btn:hover { background: #000; color: #fff; }

/* Nedräknare */
.svs-countdown {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.svs-countdown-unit {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 14px 18px;
    text-align: center;
    min-width: 72px;
    backdrop-filter: blur(4px);
    border-radius: 0;
}
.svs-countdown-num {
	font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 550;
    line-height: 1;
    display: block;
    color: #fff;
}
.svs-countdown-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.75);
    display: block;
    margin-top: 0;
}

/* ── Innehåll ── */
.svs-content-section {
    background: #fff;
    padding: 70px 6vw;
}

.svs-content-inner:not(.twocol) {
    max-width: 660px;
    margin: 0 auto;
}

.svs-content-inner.twocol {
   display: flex;
   max-width: 1100px;
   margin: 0 auto;
}

.svs-content-inner .svs-desc {
    font-size: 17px;
    line-height: 1.75;
    color: #222;
}
.svs-content-inner .svs-desc p { margin: 0 0 18px 0; }
.svs-content-inner .svs-desc h2, .svs-content-inner .svs-desc h3 {
    font-family: 'CormorantGaramond Italic', serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px;
}

.svs-content-inner .svs-desc strong,
.svs-content-inner .svs-desc b { font-weight: 600; }
.svs-content-inner .svs-desc ul { padding-left: 22px; }

/* Info-ikoner */
.svs-info-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 0;
    padding-left: 80px;
    flex: 0 0 350px;
}
.svs-info-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.svs-info-icon {
    width: 64px;
    height: 64px;
    background: #D7E9F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translate(0, -8px);
}
.svs-info-icon svg {
    width: 30px;
    height: 30px;
    stroke: #000;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.svs-info-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 3px;
}
.svs-info-value {
    font-size: 15px;
    line-height: 1.5;
    color: #222;
}
.svs-info-value a { color: inherit; text-underline-offset: 3px; }

/* ── Sponsorer ── */
.svs-sponsors-section {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 50px 6vw;
    text-align: center;
}
.svs-sponsors-title {
    font-family: 'CormorantGaramond Italic', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #000;
}
.svs-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.svs-sponsor-item {
    border: 1px solid #e0e0e0;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    aspect-ratio: 1;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s;
}


/*.svs-sponsor-item:hover { border-color: #000; }*/

.svs-sponsor-item img {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
    display: block;
}
.svs-sponsor-item span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #666;
}

/* ── Formulär ── */
.svs-form-section {
    background: #D7E9F6;
    padding: 70px 6vw;
}
.svs-form-inner {
    max-width: 580px;
    margin: 0 auto;
}
.svs-form-inner h2 {
    font-family: 'CormorantGaramond Italic', serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 8px 0;
}
.svs-form-inner .svs-form-sub {
    font-size: 16px;
    color: #444;
    margin-bottom: 36px;
}
.svs-form-group { margin-bottom: 18px; }
.svs-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 7px;
}
.svs-form-group input[type="text"],
.svs-form-group input[type="email"],
.svs-form-group input[type="tel"],
.svs-form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #bbb;
    background: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 370;
    transition: border-color 0.2s;
}
.svs-form-group input:focus,
.svs-form-group textarea:focus {
    outline: none;
    border-color: #000;
}
.svs-form-group textarea { min-height: 90px; resize: vertical; }
.svs-form-options { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.svs-form-options label {
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 370;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    align-items: flex-start;
}

.svs-submit-btn {
    display: inline-block;
    width: auto;
    background: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 18px 60px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 10px;
    transition:0.3s all ease;
}

.svs-submit-btn:hover { 
	background-color:#555c7c;
}



.svs-form-msg {
    padding: 14px 18px;
    font-family: 'Roboto', sans-serif;
    border-radius:0;
    font-size: 16px;
    font-weight:500;
    margin-top: 16px;
    display: none;
}
.svs-form-msg.success { background: var(--white); color: var(--black) display: block; }
.svs-form-msg.error   { background: #ffebee; color: #c62828; display: block; }

/* ── Karta ── */
.svs-map-section { line-height: 0; }
.svs-map-section iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* ── Footer ── */
.svs-footer {
    background: #fff;
    padding: 30px 6vw;
    text-align: center;
}
.svs-footer-logo { width: 120px; margin: 0 auto 16px; display: block; }
.svs-footer-info {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}
.svs-footer-info a { color: inherit; text-underline-offset: 3px; }
.svs-back {
    display: inline-block;
    margin-top: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    text-decoration: none;
}

.svs-back:hover { color: #000; }
/* end event single page */