/*
 * CormackCoreWeb 2.0 - Main Stylesheet
 * Author: Charlie - Cormack Advertising
 */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 10px 0;
    background: #fff;
}

/* Footer Styles */
footer {
    padding: 40px 0;
    background: #f8f8f8;
    margin-top: none;
}

/* Hero Styles */
.hero {
    padding: 80px 0;
    background: #f5f5f5;
}

/* Main Content */
main {
    padding: 40px 0;
}

/* Video Section */
.video-section {
    background: linear-gradient(90deg, #0D0F1C 0%, #4E5C66 100%);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-title {
    font-family: 'Grandis Extended', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 30px;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    color: white;
    margin-bottom: 40px;
}

.video-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    object-fit: contain;
}

.video-container .vimeo-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.video-control-btn {
    width: 44px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    padding: 0;
}

.video-control-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.video-control-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
    pointer-events: none;
}

.video-control-btn svg path,
.video-control-btn svg polygon,
.video-control-btn svg line {
    fill: white;
    stroke: white;
}

.video-control-btn svg line {
    fill: none;
}

/* Video Section Responsive */
@media (max-width: 1024px) {
    .video-section {
        padding: 50px 0;
    }

    .video-wrapper {
        padding: 0 20px;
    }

    .video-controls {
        top: 12px;
        right: 12px;
    }

    .video-control-btn {
        width: 35px;
        height: 35px;
    }

    .video-control-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }

    .video-title {
        font-size: 11px;
        margin-bottom: 25px;
    }

    .video-controls {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 30px 0;
    }

    .video-title {
        font-size: 10px;
        margin-bottom: 20px;
    }

    .video-wrapper {
        padding: 0 15px;
    }

    .video-controls {
        top: 8px;
        right: 8px;
        gap: 8px;
    }

    .video-control-btn {
        width: 32px;
        height: 32px;
    }

    .video-control-btn svg {
        width: 16px;
        height: 16px;
    }
}
