
@font-face {
    font-family: "Didact Gothic";
    src: url(../fonts/DidactGothic-Regular.ttf) format("truetype");
  }
  @font-face {
    font-family: "Cormorant SC";
    src: url(../fonts/CormorantSC-Bold.ttf) format("truetype");
    src: url(../fonts/CormorantSC-Light.ttf) format("truetype");
    src: url(../fonts/CormorantSC-Medium.ttf) format("truetype");
    src: url(../fonts/CormorantSC-Regular.ttf) format("truetype");
    src: url(../fonts/CormorantSC-SemiBold.ttf) format("truetype");
  }


* {
    padding: 0;
    margin: 0;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 22px;
    letter-spacing: 0.05em; /* Slightly higher letter spacing */
}

img {
    border-radius: 20px;
}

.logo {
    display: flex;
}

.header {
    background: #504c47;
}

.right-header {
    background: #504c47;
    margin-right: 50px;
}

.navbar {
    background: #504c47;
}

ul {
    list-style-type: none;
}

.horizontal {
    padding-bottom: 20px;
    text-align: right;
}

.horizontal li{
    display: inline;
    padding-left: 40px;
    margin-top: 40px;
    
}

.horizonal a {
       background: #504c47;
    color: #f5e1bf;
}

.azahl {
    list-style: disc;
    background-color: #504c47;
    color: #f5e1bf; /* Button-like background color */
    padding: 10px 20px; /* Padding to make it look like a button */
    margin: 5px 0; /* Margin between list items */
    border-radius: 10px; /* Rounded corners */
    width: 100%; /* 25% of the overall site width */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    text-align: left;
}

a {
    text-decoration: none;
    color: #f5e1bf;
    margin: 0 10px;
}

a:hover {
    border-bottom: 2px solid rgb(225, 241, 191);
}

section {
    text-align: center;
}

section:nth-child(odd) {
    background: #504c47;
    color: #f5e1bf;
}
section:nth-child(even) {
    background: #f5e1bf;
    color: #000000;
}

header, section, footer {
    padding: 20px;
}

h1 {
    font-family: 'Cormorant SC', serif;
    font-size: 51px; /* Adjusted size */
}

h2 {
    font-family: 'Cormorant SC', serif;
    font-size: 41px; /* Reference size */
}

h3 {
    font-family: 'Cormorant SC', serif;
    font-size: 31px; /* Adjusted size */
}

.customh3 {
    font-family: 'cormorant SC', serif;
    font-size: 30px;
}

h4 {
    font-family: 'Cormorant SC', serif;
    font-size: 25px; /* Adjusted size */
}
h5 {
    font-family: 'Cormorant SC', serif;
    font-size: 20px; /* Adjusted size */
}
h6 {
    font-family: 'Cormorant SC', serif;
    font-size: 17px; /* Adjusted size */
}

.footer {
    position: static;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #f5e1bf;
    color: #504c47;
    text-align: center;
    padding-right: 50px;
}

.footer a {
    color: #504c47;
}

.footer a:hover {
    color: #504c47;
    border-bottom: 2px solid #504c47;
}

.footer ul {
    padding-top: 20px;
}

#map {
    position:static;
    height:400px; width: 550px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    max-width: 100%;
}

.ownfooter {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
    color: #504c47;
    border-bottom: 2px solid #504c47;
	text-align: center;
	padding: 10px;
 }

 .navbar-brand a:hover {
    border: 0px;
 }

 .no_margin_bottom {
    margin-bottom: 0;
 }