@charset "utf-8";
/* CSS Document */
/* General Styles */
body {
    margin-top: 120px;
	margin-bottom: 40px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	min-height: 100vh;
    background: url('images/bg-main.png') no-repeat center fixed;
    background-size: cover;
    font-family: 'Abel', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	color: #ffffff;
}

/* Container */
.container {
	width: 400px;
	max-width: 90vw;
	height: auto; /* Expands as needed */
	min-height: 90vh; /* Expands as needed */
	padding-top: 290px;
    display: flex;
    flex-direction: column;
	justify-content: flex-start;
	gap: 10px;
    background: url('images/bg.png') no-repeat center center;
    background-size: cover;
    border-radius: 30px;
	position: relative;
	text-align: center;
}
/* Image */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
	position: absolute;
    top: -130px; /* Adjust to control how much it sticks out */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Ensures it stays on top */
}

.image-container img {
    max-width: 400px;
    border-radius: 0px;
    display: block;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Aligns them vertically */
    gap: 15px; /* Adjust spacing between icons */
	z-index: 10; /* Ensures it stays on top */
}

/* Each Icon Wrapper */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons img {
    transition: transform 1.5s ease;
}
.icon-ig {
    width: 20px;
    height: auto;
}
.icon-x {
    width: 20px;
    height: auto;
}
/* Hover effect */
.social-icons img:hover {
    transform: scale(1.2);
}
/* Link List */
.link-list {
    margin-top: 0; /* Remove negative margin */
    display: flex;
    flex-direction: column;
}

.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.2); /* transparency */
}

.list-item img {
    width: 112px;
    height: auto;
}

.list-btn {
    text-decoration: none;
	font-weight: 200;
	text-transform: uppercase;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between text and icon */
    border: none;
    background: none;
    transition: text-shadow 0.3s ease;
}

/* Hover Effect: Text Only */
.list-btn:hover {
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.8); /* Glow effect on text */
}

/* Optional: Make the icon slightly more visible on hover */
.list-btn:hover .button-icon {
    opacity: 1;
}

.button-icon {
    width: 14px; /* Try reducing this value */
    height: 14px; /* Maintain aspect ratio */
    max-height: 14px; /* Prevent it from exceeding this height */
	max-width: 14px; /* Prevent it from exceeding this height */
    flex-shrink: 0; /* Prevent flexbox from stretching it */
}

.list-btn:hover,
.list-btn:hover .button-icon {
    text-shadow: 0 0 8px rgba(145, 27, 15, 0.9); /* Subtle glow */
    filter: drop-shadow(0 0 8px rgba(145, 27, 15, 0.9)); /* Glow effect for images */
}

/* Logo */
.logo {
    margin-top: auto; /* Pushes everything above it up */
    margin-bottom: 20px;
	position: relative;
}

.logo img {
    width: 125px;
    height: auto;
}
.logo img {
    transition: transform 3s ease;
}
/* Hover effect */
.logo img:hover {
    transform: scale(1.1);
}

/* ✅ Desktop Optimization */
@media screen and (min-width: 1025px) {
	.container {
        min-height: 70vh;
        height: auto; /* Expands as needed */
        margin: 20px auto; /* Keeps it centered */
    }
}

/* ✅ Mobile Optimization */
@media screen and (max-width: 768px) {
	body {
        background: url('images/bg-ph.png') no-repeat center !important;
        background-size: cover !important;
	}
	.container {
        width: 90vw;
		height: auto; /* Expands as needed */
		min-height: 100vh;
        max-width: 350px;
		padding-top: 120px; /* Push content down */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .image-container img {
        width: 300px; /* Ensure image scales properly */
    }
	.social-icons {
        z-index: 10; /* Ensures it stays on top */
		margin-top: 180px;
	}
	.link-list {
        margin-top: -100px;
	}
} 
@media screen and (max-width: 450px) {
    body {
        background: url('images/bg-ph.png') no-repeat center !important;
        background-size: cover !important;
	}
	.container {
        height: auto; /* Expands as needed */
		min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
	}
	.social-icons {
        z-index: 10; /* Ensures it stays on top */
		margin-top: 180px;
	}
	.link-list {
        margin-top: -100px;
	}
} 
@media screen and (max-width: 700px) {
	.container {
        height: auto; /* Expands as needed */
		min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
	}
	.social-icons {
        z-index: 10; /* Ensures it stays on top */
		margin-top: 180px;
	}
	.link-list {
        margin-top: 0px;
	}
} 
@media screen and (max-height: 740px) {
	.container {
        height: auto; /* Expands as needed */
		min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
	}
	.social-icons {
        z-index: 10; /* Ensures it stays on top */
		margin-top: 180px;
	}
	.link-list {
        margin-top: 0px;
	}
	.logo {
    margin-top: 100px; /* Pushes everything above it up */
	}
}
@media screen and (min-height: 1024px) {
    .container {
        min-height: 90vh; /* Ensures it doesn't take too much space */
        padding-top: 10vh; /* Moves content down */
    }
	.social-icons {
        z-index: 10; /* Ensures it stays on top */
		margin-top: 200px;
	}
	.link-list {
        margin-top: 0px;
	}
	.logo {
    margin-top: auto; /* Pushes everything above it up */
	}
}