@charset "utf-8";
/* CSS Document */

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: right;
}
.fontlinks {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
	color: #FFF;
	text-align: right;
}
.full-width-img {
    width: 100%;      /* Makes the image span the width of its container */
    height: auto;     /* Automatically adjusts height to maintain aspect ratio */
    display: block;   /* Helps with alignment issues */
}
.fontbodygeneral {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #000000;
	font-weight: normal;
	text-align: left;
}

.fontbodygenwhite {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #CCC;
}
.a {
	font-family:Tahoma, Geneva, sans-serif
	font-size: 13px;
	color: #FFFFFF;
	text-decoration:none;
	font-family: Tahoma, Geneva, sans-serif;
}

.fontboxheaderblack {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #000000;
	font-weight: bold;
}
.fontTitle {
	font-family:Tahoma, Geneva, sans-serif;
	font-size: 16px;
	color: #000000;
	font-weight: bold;
	text-align: left;
}
/*----------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.slider {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    width: 300%;
    height: 420px;
    animation: slideAnimation 30s infinite;
}

.slide {
    width: 100%;
    height: 420px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Background Images */
.slide-1 {
    background-image: url("images/sliderchatgpt1.jpg");
}

.slide-2 {
    background-image: url("images/sliderchatgpt2.jpgf");
}

.slide-3 {
    background-image: url("images/sliderchatgpt3.jpg");
}

/* Content */
.content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.5s;
}

.btn:hover {
    background: #e85c00;
}

/* Animation */
@keyframes slideAnimation {
    0% { transform: translateX(0); }
    33% { transform: translateX(0); }
    38% { transform: translateX(-100%); }
    66% { transform: translateX(-100%); }
    71% { transform: translateX(-200%); }
    100% { transform: translateX(-200%); }
}

/* Navigation Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s;
}

.arrow:hover {
    background: rgba(0,0,0,0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}
/* Responsive */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }
}
/*----------------------------------------------------*/

.aEvents {
  color: #000000; 
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-decoration: none; 
}

.aEvents:hover {
  color: #900;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-decoration: underline;
}