/* Suntelia.Studio Link Page | CSS Document */

body {
    margin-top: 120px;
	margin-bottom: 40px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('images/bg-main.png') no-repeat center fixed;
    background-size: cover;
	font-family: 'Metamorphous', serif;
	font-size: 12px;
	text-transform: uppercase;
	color: #ccc;
}

a:hover {
  cursor: url('images/suntelia-cursor.png'), auto;
}

.container {
	width: 400px;
	max-width: 90vw;
	padding-top: 320px;
    display: flex;
    flex-direction: column;
    background: url('images/bg-1.png') no-repeat center right;
    background-size: cover;
	position: relative;
	text-align: center;
}

@media (max-width: 450px) {
    .container {
        min-height: 100vh;
        padding-top: 20px;
	}
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
	position: absolute;
    top: -98px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.image-container img {
    max-width: 350px;
    border-radius: 0px;
    display: block;
}

.suntelia-container {
    display: flex;
    justify-content: center;
    align-items: center;
	position: absolute;
	top: 220px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.suntelia-container img {
    max-width: 345px;
    display: block;
}

.social-icons {
    display: flex;
    justify-content: center;
	position: relative;
    align-items: center;
    gap: 15px;
	z-index: 3;
}

.social-icons img {
    width: 25px;
	transition: transform 1.5s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.link-list {
    margin-top: 0px;
	margin-bottom: 80px;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 25px 20px 25px 20px;
    border-bottom: 1px solid #404040;
    transition: background-color 0.5s ease;
}

.list-item:hover {
    background-color: rgba(64, 64, 64, 0.5);
}

.list-item img {
    width: 112px;
    height: auto;
}

.list-btn {
    text-decoration: none;
	font-weight: 200;
	text-transform: uppercase;
    color: #ccc;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: none;
    transition: text-shadow 0.3s ease;
}

.list-btn:hover {
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.8);
}

.list-btn:hover .button-icon {
    opacity: 1;
}

.button-icon {
    width: 14px;
    height: 14px;
    max-height: 14px;
	max-width: 14px;
    flex-shrink: 0;
}

.list-btn:hover,
.list-btn:hover .button-icon {
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.5);
    filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.5));
}

.logo {
    margin-top: auto;
    margin-bottom: 20px;
	position: relative;
}

.logo img {
    width: 60px;
    height: auto;
    transition: transform 3s ease;
}

.logo img:hover {
    transform: scale(1.0);
}

/* ✅ Desktop Optimization */
@media screen and (min-width: 1025px) {
	.container {
        margin: 20px auto; /* Keeps it centered */
    }
}

/* ✅ Mobile Optimization */
@media screen and (max-width: 768px) {
	.container {
        width: 90vw;
        max-width: 350px;
		padding-top: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
}

    .image-container img {
        width: 360px;
        height: auto;
		padding-top: 25px;
}
	
	.suntelia-container img {
		max-width: 305px;
		display: block;
}
	
	.social-icons {
		margin-top: 115px;
}
	
	.link-list {
    	margin-top: 0px;
		
	}
}