@import "https://fontcdn.hostkurd.com/cgkurd/v2/cgkurdweb.css";
@import "https://fontcdn.hostkurd.com/hostkurd/hostkurdweb.css";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root{
    --font-family:'Outfit', sans-serif, CGKurdWeb, HostKurdWeb;
    --elinore-bg: #4C1F47;
    --primary-color: #f8cb2e;
    --secondary-color:#F2A2A1;
    --dark-color: #000000;
    --white-color: #ffffff;
    --h1-font-size:50px;
    --h5-font-size:22px;
    --font-weight-bold:700;
    --p-color:#717275;
    --p-font-size: 18px;
    --font-weight-light: 300;
    --border-radius-large:100px;
    --copyright-font-size:16px;
}

body{
    background-color: var(--elinore-bg);
    font-family: var(--font-family);
}
.elinore-font{
    font-family: "Playfair Display";
    font-weight: 400;
}
.elinore-logo{
    width: 70%;
    max-width: 300px;
}
.elinore-text{
    font-weight: 900;
}
.site-header {
    background-color: var(--primary-color);
    padding-top: 12px;
    padding-bottom: 12px;
}

.section-overlay {
    background-color: var(--elinore-bg);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 0;
    height: 100vh;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-bottom: 50px;
}

.hero-section .container .row {
    height: 100%;
}

.hero-section .section-overlay {
    z-index: 2;
    opacity: 0.80;
}

.hero-section small {
    color: var(--white-color);
    text-transform: uppercase;
}

h1 {
  font-size: var(--h1-font-size);
}
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
}
h5 {
    font-size: var(--h5-font-size);
}
.custom-icon {
    color: var(--secondary-color);
}
.social-icon {
    margin: 0;
    padding: 0;
}
.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}
ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
}

.social-icon-link {
    background: var(--secondary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--copyright-font-size);
    display: block;
    margin-right: 10px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 36px;
    transition: background 0.2s, color 0.2s;
}
.social-icon-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.custom-video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.video-wrap {
    z-index: -100;
}
@media (max-width: 768px) {

    h1 {
        font-size: 25px;
    }
    h5 {
        font-size: 16px;
    }
}