@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');

/* Reset window default padding */

.content-wrapper {
    max-width: 1572px;   /* Same as video */
    margin: 0 auto;      /* Center everything */
    width: 100%;
    margin-top: 80px;
}
.responsive-window.z-window {
    padding: 60px 15% !important;
    background-color: #ffffff;
    border: none;
    padding-top: 0px !important;
}

.responsive-window > .z-window-content {
    background: none;
    padding: 0;
}

.back-link {
	margin-bottom: 20px;
	font-size: 14px;
	color: #555;
	cursor: pointer;
}

/* Header Styles */
.header-container {
    margin-bottom: 50px;
    margin-top: 150px;
}

.tagline {
    font-size: 15px;
    color: #000000;
    text-transform: capitalize;
}

.main-title {
	color: #000;
	font-family: "Tiempos Headline";
	font-size: 64px;
	font-weight: 500;
	margin-bottom: 30px;
}

/* .desc-wrapper {
    max-width: 600px;
}

.description {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
} */
/* 
.description {
    font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    color: #0F0E0D;
    display: block;
    white-space: normal;
}
 */
 
.description {
    /* Font Choice */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Decrease black shade: #374151 is a soft charcoal, #1F2937 is a deeper navy-black */
    color: #374151; 
    
    /* Keep the sharpness from the brand look */
    font-size: 15px;
    font-weight: 450;
    letter-spacing: -0.02em;
    line-height: 1.4;
    
    /* Ensures the color renders smoothly */
    -webkit-font-smoothing: antialiased;
    display: block;
}
.desc-wrapper {
    max-width: 600px;
    margin-top: 8px;
}

/* Video Card Layout */
.video-card {
    display: flex;
    position: relative;
    width: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden; /* Clips the image and corners */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Left Section */
.card-left {
    flex: 1;
    background-color: #2c3333; /* Dark Slate */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.card-title {
    font-family: serif;
    font-size: 38px;
    line-height: 1.1;
    display: block;
}

.logo-square {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-letter {
    font-family: serif;
    font-size: 30px;
    font-weight: bold;
}

/* Right Section */
.card-right {
    flex: 1.2;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 45%; /* Positioned on the seam */
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* RESPONSIVE BREAKPOINTS */

/* Tablet (Portrait) */
@media (max-width: 992px) {
    .main-title { font-size: 32px; }
    .card-title { font-size: 28px; }
}

/* Mobile (Phone) */
@media (max-width: 768px) {
    .video-card {
        flex-direction: column; /* Stack the card vertically */
    }

    .card-left {
        min-height: 250px;
        padding: 30px;
    }

    .card-right {
        min-height: 250px;
    }

    .play-btn {
        left: 50%; /* Center the play button on mobile stack */
        top: 50%;
    }

    .main-title {
        font-size: 28px;
    }
    
    .responsive-window.z-window {
        padding: 30px 18px !important;
        padding-top: 0px !important;
    }
    #videoPlayOverlay {
		width: 48px !important; /* Reduced from 72px */
		height: 48px !important; /* Reduced from 72px */
		border-width: 1px !important;
	}
	#videoPlayOverlay svg {
		width: 22px !important; /* Reduced from 32px */
		height: 22px !important; /* Reduced from 32px */
	}
	#playIcon {
		margin-left: 2px !important;
	}
	
}
@media only screen and (max-width: 480px) {
        
        #videoPlayOverlay {
            width: 44px !important;     
            height: 44px !important;
            border-width: 1.5px !important;
        }

        #videoPlayOverlay svg {
            width: 20px !important;   
            height: 20px !important;
        }

        #playIcon {
            margin-left: 2px !important;
        }

        #videoControlBar {
            padding: 6px 10px !important;
            bottom: 5px !important;
            gap: 10px !important;
        }
}