* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.background-section {
    background-image: url('assets/background.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
}

.corner {
    position: fixed;
    z-index: 100;
    pointer-events: none;
    max-width: 300px;
}

.top-left {
    top: 0;
    left: 0;
}

.bottom-right {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

/* Logo Styles */
.logo-container {
    width: 180px;
    height: 180px;
    background-color: #f8f6f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #d4af37;
    /* Gold border */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Follow Us Section */
.follow-us-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.follow-us-section .line {
    width: 40px;
    height: 1px;
}

.follow-us-section .line:first-child {
    background: linear-gradient(to right, transparent, #d4af37);
}

.follow-us-section .line:last-child {
    background: linear-gradient(to right, #d4af37, transparent);
}

.follow-us-section .text {
    font-size: 14px;
    font-weight: 600;
    color: #a88132;
    letter-spacing: 2px;
}

/* Title Styles */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2c1a45;
    /* Dark Purple */
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 60%;
    margin: 0 auto;
}

.title-divider .line {
    flex-grow: 1;
    height: 1px;
}

.title-divider .line:first-child {
    background: linear-gradient(to right, transparent, #d4af37);
}

.title-divider .line:last-child {
    background: linear-gradient(to right, #d4af37, transparent);
}

.title-divider .ornament {
    color: #d4af37;
    font-size: 12px;
    line-height: 1;
}

.title-divider .dot {
    width: 4px;
    height: 4px;
    background-color: #d4af37;
    border-radius: 50%;
}

.title-divider.top {
    margin-bottom: 10px;
    width: 30%;
}

.title-divider.bottom {
    margin-top: 10px;
    margin-bottom: 30px;
    width: 20%;
}

/* Links Container */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Link Buttons */
.link-btn {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 2.5px solid #d4af37;
    /* Dark golden color */
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4), inset 0 0 5px rgba(212, 175, 55, 0.2);
    /* Shiny effect */
    transition: transform 0.2s, box-shadow 0.2s;
}

.link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.6), inset 0 0 8px rgba(212, 175, 55, 0.4);
}

.icon-wrapper {
    width: 45px;
    height: 45px;
    border: 2.5px solid #d4af37;
    /* Thicker dark gold border */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    background-color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    /* Inner glow */
}

.link-text {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 600;
    color: #2c1a45;
}

.chevron-icon {
    color: #d4af37;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    /* Shiny glow on the arrow */
}

/* Icon Colors */
.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
}

.facebook-icon {
    color: #1877F2;
    font-size: 22px;
}

.youtube-icon {
    color: #FF0000;
    font-size: 20px;
}

.website-icon {
    color: #2c1a45;
    font-size: 20px;
}

.linkedin-icon {
    color: #0077b5;
    font-size: 22px;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .corner {
        max-width: 200px;
    }

    .title {
        font-size: 24px;
    }

    .logo-container {
        width: 150px;
        height: 150px;
    }

    .link-btn {
        width: 80%;
        align-self: center;
    }
}