@import url("reset.css");

body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
}

p {
    padding: 10px;
    line-height: 1.6;
}

a {
    color: #2f5fa5;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

h1 {
  padding: 10px;
  font-family: Georgia, serif;
}

body {
  	background-image: linear-gradient(to bottom, #3f8a87, #4a7573);
}

#mainlayout {
    margin-top: 20px;
    padding: 0 40px;
  	padding-top: 10px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

#header {
    background: #475d80;
    border-radius: 10px;
    border: 1px solid #354661;
    margin: 5px;
	
  	color: white;
  	
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 5px;

    height: auto;
}

#header img {
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.4));
}

#header h1 {
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

#headerwrap {
    width: 100%;
    float: left;
    margin: 0 auto;
}

#navigationwrap {
    width: 100%;
    float: left;
    margin: auto;
}

#navigation {
    background: #475d80;
    border-radius: 10px;
    border: 1px solid #354661;
    margin: 5px;
	
  	color: white;	
  	
    display: flex;
    align-items: center;
    justify-content: center;
}

#navigation h2 {
    font-size: 20px;
    letter-spacing: 1px;
}

#information {
    flex: 1;
  	margin-left: 20px;
    background: #D1D1D1;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    line-height: 1.7;
    border: 1px solid #bdbdbd;
    padding: 15px;
    max-width: 1350px;
}

#information img {
    width: 100%;
    height: auto;
    max-width: 1280px;
    display: block;
    margin: 0 auto 20px;
}

#information h2 {
    font-size: 26px;
    font-weight: bold;
    margin: 40px auto 30px;
    padding-bottom: 8px;
    border-bottom: 2px solid #b5b5b5;
    color: #2f2f2f;
    text-align: center;
    letter-spacing: 0.5px;
    width: fit-content;
}

#information p {
    margin-bottom: 12px;
}

#contentwrap {
    float: left;
    flex: 1;
}

#content {
    background: #D1D1D1;
    border-radius: 10px;
    border: 1px solid #bdbdbd;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

#leftcolumn {
    background: #475d80;
    border-radius: 10px;
    border: 1px solid #354661;
    padding: 10px;
    width: 100%;
}

#leftcolumn ul {
    list-style: none;
    padding: 0;
}

#leftcolumn ul li {
    margin-bottom: 6px;
}

#leftcolumn li a {
    display: block;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
  	color: white;
    transition: transform 0.1s ease-in-out;
}

#leftcolumn li a:hover {
    background: #bad7ff;
    color: black;
    transform: scale(1.1);
}


#leftcolumn li a {
    color: white;
}

#leftcolumnwrap {
    width: 180px;
	flex-shrink: 0;
}

#footerwrap {
    width: 100%;
    margin-top: 40px;
}

#footer {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    margin: 0 50px;
    background: #475d80;
    border-radius: 12px;
    border: 1px solid #354661;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    min-width: 180px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 6px 0;
}

.footer-section ul li a {
    color: #d9e6ff;
    text-decoration: none;
    font-weight: normal;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-icons img {
    width: 30px;
    height: 30px;
    margin-right: 12px;
    transition: transform 0.2s ease-in-out;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.4));
}

.footer-icons img:hover {
    transform: scale(1.18);
}

#footer-bottom {
    text-align: center;
    margin-top: 18px;
    color: white;
    font-size: 12px;
    opacity: 0.8;
}

.content-row {
    display: flex;
    margin: 20px;
}

.ad-box {
	background: linear-gradient(#ffffff, #f7f7f7);
    border: 1px solid #bfc9d4;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.12);
    transition: transform 0.15s ease-in-out;
    padding: 20px;
    width: 700px;
    max-width: 700px;
    line-height: 1.6;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    margin: 0 auto;
}

.ad-box:hover {
    transform: scale(1.01);
}

.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    padding: 5px 0;
}

.offer-list li {
    padding-left: 20px;
    position: relative;
}

.offer-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a7573;
    font-weight: bold;
}

.join-box {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    background: #e8f0ff;
    border: 1px solid #99baff;
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.06);
}

.join-button {
    display: inline-block;
    box-shadow: 0 2px #2c2c2c;
    margin-top: 8px;
    padding: 8px 16px;
    background: #59acff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 2px 3px #000000;
    transition: transform 0.3s ease-in-out;
}

.join-button:hover {
    background: #3c91e6;
    transform: scale(1.15);
}

.footer-tag {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    color: #555;
}

#page-transition {
    position: fixed;
    inset: 0;
    background: #4a7573;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.1s ease-in;
    pointer-events: none;
}
#page-transition.hide {
    opacity: 0;
}

@media screen and (max-width: 1100px) {
    #mainlayout {
        flex-direction: column;
        padding: 0 20px;
    }

    #leftcolumnwrap {
        width: 100%;
    }
}
