/* Reset CSS */
* {
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.welcome-text {
            color: #3498db; /* Set color of the text */
            font-size: 14px; /* Set font size */
        }
/* Global Styles */


body {
    font-family: 'OpenDyslexicAlta', Arial, sans-serif; /* Set default font family */
    background: linear-gradient(to bottom, #340707, #9D7B99); /* Apply gradient background */
}

.header {
    background-color: #2A2A2A; /* Set header background color */
    color: #E2C36F; /* Set text color */
    max-width: auto; /* Set maximum width for content */
    margin:  auto; /* Center content horizontally */
    padding: 0 60px; /* Add padding to the sides */
}

.logo img {
    max-width: 110%; /* Make logo responsive */
}

.links{
 padding-left: 0px ; /* Add padding */
}

.logo .left {
/*   float: left;*/
   top: 10px
   bottom: -10px;
   right: 1500px;
}

.logo .right {
/*    float: right; */
            position: absolute;
            top: 20px; /* Align to the top of the container */
            right: 0; /* Align to the right side of the container */
            width: 200px; /* Set width of the image */
            height: auto; /* Maintain aspect ratio */
}

.menu-column {
padding-left: 10%;
}

nav ul {
    list-style-type: none; /* Remove list bullets */
}

nav ul li {
    display: inline; /* Display list items inline */
    margin-right: 12px; /* Add spacing between list items */
}

nav ul li a {
    color: #E2C36F; /* Set link color */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Set font size */
}

/*main section*/
.main {
    padding: 50px 20px; /* Add padding */
    text-align: center; /* Center text */
}

.main h1 {
    font-size: 48px; /* Set font size */
    color: #E2C36F; /* Set text color */
    margin-bottom: 20px; /* Add margin */
}

.main p {
    font-size: 20px; /* Set font size */
    color: #E2C36F; /* Set text color */
}
   
.main h2 {
       font-size: 36px; /* Set font size */
       margin-bottom: 20px; /* Add margin */
       color: #E2C36F; /* Set text color */
   }
   
   .main h3 {
    font-size: 24px; /* Set font size */
    color: #E2C36F; /* Set text color */
    margin-bottom: 20px; /* Add margin */
   }
/* Footer Styles */
.footer {
    background-color: #2c3e50; /* Set footer background color */
    color: #E2C36F; /* Set text color */
    padding: 20px 0; /* Add padding */
    text-align: center; /* Center text */
    width: 100%;
}

.footer p {
    font-size: 16px; /* Set font size */
}

.social-icons {
    list-style-type: none; /* Remove list bullets */
    padding: 0; /* Remove padding */
    text-align: center; /* Center icons */
}

.social-icons li {
    display: inline-block; /* Display list items inline */
    margin-right: 10px; /* Add spacing between list items */
}

/* Define a font family */
@font-face {
    font-family: 'OpenDyslexicAlta'; /* Define font family */
    src: url('Fonts/OpenDyslexicAlta-Regular.woff2') format('woff2'); /* Specify font file */
    font-weight: normal; /* Set font weight */
    font-style: normal; /* Set font style */
}

/* Banner Styles */

@keyframes slide {
    from {
        transform: translateX(5px);
    }
    to {
        transform: translateX(-100%); /* End position of animation */
    }
}

.scroller {
    overflow: hidden; /* Hide overflowing content */
    padding: 50px 100px;
    white-space: nowrap; /* Prevent line breaks */
    position: relative; /* Set position */
}

.scroller:hover .scroller-slide {
    animation-play-state: paused;
}

.scroller-slide {
    display: inline-block;
    animation: 20s slide infinite linear;
}


/* Contact form */

.contact-container h2 {
    margin-bottom: 0px; /* Add some spacing below the heading */
    font-size: 36px; /* Decrease the font size slightly */
    color: #E2C36F; /* Set text color */
    text-align: center;
}

.contact-container label {
    margin-bottom: 0px; /* Add some spacing below the heading */
    font-size: 36px; /* Decrease the font size slightly */
    color: #E2C36F; /* Set text color */
    text-align: center;
}


.contact-container {
    max-width: 900px; /* Increase the maximum width */
    margin: auto 35%;  /* Center the container horizontally */
    padding-bottom: 2.5%; /* Add more padding for spacing */
    text-align: center;
}

.form-group {
    margin-bottom: 30px; /* Increase the margin between form elements */
}

button {
    width: 200px; /* Set a fixed width for the button */
    margin-top: 20px; /* Add some spacing above the button */
    font-family: 'OpenDyslexicAlta', Arial, sans-serif;
}

input[type="text"],input[type="email"],textarea {
    width: 80%; /* Reduce the width of input fields */
    max-width: 400px; /* Set a maximum width for input fields */
    width: 500px; /* Adjust the width as needed */
    height: 25px; /* Adjust the height as needed */
}

input[type="message"], textarea {
    width: 500px; /* Adjust the width as needed */
    height: 250px; /* Adjust the height as needed */
    font-size: 32px;
}


/* podcasts stuff */
.main .podcasts {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns items to the left */
}

.main .podcasts .container {
    display: flex; /* Makes the container a flex container */
    align-items: flex-start; /* Aligns items to the top */
    padding: 20px;
    max-width: 800px;
    width: 100%;
    border-radius: 5px;
}

.main .podcasts .container_image {
    margin-right: 10px; /* Adds some space between the image and the text */
}

.main .podcasts .container_text {
    flex: 1; /* Takes up the remaining space */
    text-align: center
}

.main .about-us .container_text {
    flex: 1; /* Takes up the remaining space */
    text-align: center
    
}


a {
    color: #ffbb00; /* Link color */
    text-decoration: none; /* Remove underline */
}

a:hover {
    text-decoration: underline; /* Underline on hover */
}

a:visited {
    color: #ffbb00; /* Color of visited links */
}

 /* Additional inline styles for individual letters */
 .red { color: #C32D17; }
 .orange { color: #F0810F; }
 .green { color: #0ABA81; }
 .red { color: #C32D17; }
 .orange { color: #F0810F; }
 .orange { color: #F0810F; }
 .red { color: #C32D17; }
 .orange { color: #F0810F; }
 .green { color: #0ABA81; }

 /* Prevent letters from breaking into a new line */
 h1 span {
     display: inline;
 }

 /* Align text and letters on the same line */
 .container_text h1 {
     display: inline; /* Ensures "Welcome to" and "DAPPER" stay on the same line */
 }

 button[type="submit"] {
    font-family: 'OpenDyslexicAlta'; /* Define font family */
    font-size: inherit;
    color: #E2C36F;
    background-color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #444;

}

@media only screen and (max-width:500px) {}
    /* For mobile phones: */
    .menu, .main, .right {
      width: 100%;
    }
