/* Basic Resets & Global Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #000000; /* Black background */
    color: #FFFFFF; /* White text by default */
    font-family: 'Inter', sans-serif; /* Placeholder for Garet */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 100vh; /* Full viewport height */
    overflow: hidden; /* Hide scrollbars if content slightly exceeds viewport */
    text-rendering: optimizeLegibility; /* Improves font rendering */
    -webkit-font-smoothing: antialiased; /* Smoother fonts on macOS */
    -moz-osx-font-smoothing: grayscale; /* Smoother fonts on macOS */
}

    @font-face {
        font-family: 'Garet';
        src: url('Garet-Heavy.ttf') format('truetype');
        font-weight: normal; /* Adjust this based on your Garet font weights (e.g., 900 for a heavy weight) */
        font-style: normal;
        font-display: swap;
    }


.container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally within the column */
    justify-content: center; /* Center items vertically within the container */
    padding: 20px;
    max-width: 90%; /* Limit overall width */
    text-align: center; /* Center text within its own elements */
}

.logo-area {
    margin-bottom: 40px; /* Space below the logo */
}

.abstract-logo {
    max-width: 300px; /* Adjust size of the logo */
    height: auto;
    display: block; /* Remove extra space below image */
    user-select: none; /* Prevent selection of the image */
    -webkit-user-drag: none; /* Prevent dragging of the image */
    /* --- Circular Mask for the Logo --- */
    clip-path: circle(50% at 50% 50%); /* Crops the square image into a perfect circle, hiding the black corners */
}

/* Style for potential video logo (inherits .abstract-logo properties) */
.video-logo {
    object-fit: cover; /* Ensures video fills the circular space without distortion */
}

.collective-name {
    font-size: clamp(4rem, 10vw, 7rem); /* Significantly larger font size for impactful display */
    color: #f0ea1a; /* Your specified logo text color */
    margin-top: 0;
    margin-bottom: 40px; /* Space below the name */
    font-weight: 900; /* Heavier weight for more impact, similar to the poster's "PEEL" */
    letter-spacing: 3px; /* Slightly increased letter spacing for readability at large sizes */
    text-transform: uppercase;
    line-height: 1; /* Ensures text has no extra line height, keeping it tight */
}

.links-area {
    display: flex;
    gap: 20px; /* Space between social links */
    margin-bottom: 25px; /* Space below social links */
    flex-wrap: wrap; /* Allow links to wrap on smaller screens */
    justify-content: center;
}

.social-link {
    color: #FFFFFF;
    text-decoration: none;
    border: 1px solid #FFFFFF; /* White border */
    padding: 12px 25px; /* Padding inside the button */
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover */
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.social-link:hover {
    background-color: #FFFFFF;
    color: #000000; /* Text turns black on hover */
}

.email-link a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    opacity: 0.8; /* Slightly less prominent */
}

.email-link a:hover {
    color: #f0ea1a; /* Email turns logo color on hover */
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .abstract-logo, .video-logo {
        max-width: 250px; /* Slightly smaller logo on small screens */
    }

    .collective-name {
        font-size: clamp(3rem, 8vw, 5rem); /* Adjust clamp values for smaller screens, still keeping it large */
        letter-spacing: 2px;
    }

    .links-area {
        flex-direction: column; /* Stack social links vertically on small screens */
        gap: 15px;
    }

    .social-link {
        width: 180px; /* Fixed width for social links on small screens */
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .email-link a {
        font-size: 0.9rem;
    }
}

@media (max-height: 700px) and (min-width: 600px) {
    /* Adjust spacing for shorter screens to prevent content overflow */
    .logo-area {
        margin-bottom: 25px;
    }
    .collective-name {
        margin-bottom: 25px;
    }
    .links-area {
        margin-bottom: 15px;
    }
}