main {
    padding: 12px;
}

main h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 10px;
    text-shadow: 2px 2px 5px #ffc024c9;
    font-family: "Mozilla Headline", sans-serif;
    text-align: center;
    text-decoration: underline
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    cursor: pointer;
    border-radius: 7px;
    border: 7px double var(--primary);
    padding: 2px;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button::before {
    content: "";
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

@media screen and (max-width: 768px) {
    .video-wrapper {
        aspect-ratio: 16/9;
        border-radius: 0px;
        border: none;
        padding: 0px;
    }

    main h1 {
        font-size: 1.2rem;
    }

    main {
        padding: 0px;
    }
}

/* Social Medeia Styling Start  */
/* The main section container */
.creative-social-section {
    font-family: "Mozilla Headline", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Takes good vertical space */
    padding: 50px 20px;
    /* A rich, dark, radial gradient background */
    /* background: radial-gradient(circle, #3a2a1a, #1a120a); */
    overflow: hidden;
    /* Ensures no weird overflows */
}

.social-container {
    text-align: center;
}

/* Section Title "FIND US ON" */
.social-section-title {
    font-family: "Mozilla Headline", sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-color);
    /* Gold color */
    /* letter-spacing: 3px; */
    margin-top: 0px;
    /* Glowing text effect */
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 153, 51, 0.5);
    animation: fadeInDown 1s ease-out;
    margin-bottom: 42px;
}

/* Wrapper for all the social media icons */
.social-icons-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Good for responsiveness */
    gap: 25px;
}

/* Each social media link element */
.social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Transparent background */
    border: 1px solid var(--dark);
    /* Subtle gold border */
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    animation: popIn 0.5s ease-out backwards;
}

/* Staggered animation for icons */
.social-icon:nth-child(1) {
    animation-delay: 0.6s;
}

.social-icon:nth-child(2) {
    animation-delay: 0.7s;
}

.social-icon:nth-child(3) {
    animation-delay: 0.8s;
}

.social-icon:nth-child(4) {
    animation-delay: 0.9s;
}

.social-icon i {
    font-size: 1.8rem;
    color: var(--dark);
    /* Default icon color is gold */
    transition: all 0.3s ease;
}

/* Hover effects for the icon */
.social-icon:hover {
    transform: translateY(-10px) scale(1.1);
    /* Lifts up and grows */
    border-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icon:hover i {
    color: #fff;
    /* Icon turns white on hover */
}

.social-icon:hover .label {
    opacity: 1;
    /* Show label on hover */
    transform: translateY(0);
}

/* Specific brand color backgrounds on hover */
.social-icon.youtube:hover {
    background-color: #FF0000;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.facebook:hover {
    background-color: #1877F2;
}

.social-icon.google-maps:hover {
    background-color: #34A853;
}

/* Keyframe animations for entrance effects */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .social-section-title {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .social-icon {
        width: 60px;
        height: 60px;
    }

    .social-icon i {
        font-size: 1.6rem;
    }
}

/* Social Medeia Styling Ends */