
/*----Main Stlye----*/
html {
    height: 100%; 
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f0f0;
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    font-size: 100%;
    text-align: center;
    box-sizing: border-box;
    overflow-x: hidden;
}
header {
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.4), rgba(51, 51, 51, 0.4)), url(../images/lbsunset.jpg);
    color: white;
    background-size: cover;
    background-position: center;
    padding: 3.2rem 0;
    width: 100%;
    height: 100%;
}
h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 350;
    letter-spacing: .125rem;
}
h2 {
    color:#000000;
    font-size: 1.8rem;
    font-weight: 300;
    margin: auto;
}
header h1 {
    text-shadow: 0 0 2px rgba(0, 0, 0, .1);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
}
header h2 {
    text-transform: uppercase;
    font-size: 1.25rem;
    color:  white;
    text-shadow: 0 0 2px rgba(0, 0, 0, .1);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
}
nav {
    background-color: #333;
    padding: .05rem 0;
    width: 100%;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;              
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}
nav ul li .nav-item {
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    padding: 1rem; 
    display: block;
    transition: color .3s ease;
}
nav ul li a.nav-item:hover {
    color: #7ad5c9;
}
nav ul li.active_page .nav-item {     
    color: #C59AEA;              
}
main {
    margin: 2rem auto;
    padding: 1rem;
    flex-grow: 1;
    align-items: center;
}
.content-area {
    width: 90%;
    max-width: 900px; 
    margin: 2rem auto;
    padding: 1rem 0;
}
.content-area p {
    text-align: left;
}
.text-block {
    max-width: 55rem;
    width: 95%;
    margin: 2rem auto;
    padding: 1rem .5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.text-block p {
    margin: 1rem;
    display: block;
    font-size: 1rem;
    text-align: left;
    overflow-wrap: anywhere;
}
footer {
    background-color: #222;
    color: white;
    text-align: center;
    font-size: .7rem;
    padding: .5rem 0;
    position: relative;    
    bottom: auto;
    width: 100%;
    margin-top: 30px;
}
footer a {
    text-decoration: none;
    color: #f0f0f0;
    padding: .5rem;
}
@media (max-width: 480px) {
    nav ul {
        font-size: x-small;
        gap: .5rem;
    }
    nav ul li .nav-item {
        padding: .5rem;
    }
}

/*----WIP----*/
.icon {
    font-size:4rem;
    margin-bottom:.5rem;
}
.wip p {
    text-align: center;
}

/*----About----*/
.profile {
    max-width: 55rem;
    width: 90%;
    margin: 2rem auto;
    padding: 1rem .5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: .9rem;
    align-items: center;
}
.profile img {
    width: auto;
    max-height: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.profile-txt {
    max-width: 55rem;
    width: 90%;
    background-color: white;
    border-radius: 12px;
    flex: 2;
}
.profile-txt p {
    margin: 1rem;
    font-size: 1rem;
    text-align: left;
}
@media (min-width: 820px) {
    .profile {
        margin: 1rem;
        justify-self: start;
    }
    .profile img {
        max-width: 300px;
        display: block;
    }
}
@media (max-width: 768px) {
    .profile {
        grid-template-columns: 1fr;
    }
    .profile-txt {
        padding: 1rem;
        justify-content: center;
    }
    .profile-img {
        height: auto;
        display: block;
        max-width: 300px;
        margin: 0 auto;
    }

}

/*----Projects----*/
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 55rem;
    margin: 4rem auto;
}
.project-card {
    background-color: white; 
    border: none;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px; 
    background: linear-gradient(to right, #ccc, #222); 
    transition: background 0.4s ease;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); 
}
.project-card:hover::before {
    background: linear-gradient(to right, #C59AEA, #9d77be);
}
.project-card h3 {
    color: #222; 
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700; 
    transition: color 0.3s ease;
}
.project-card p {
    color: #555; 
    font-size: 1rem;
    line-height: 1.6;
}
.project-card:hover h3 {
    color: #C59AEA; 
}
.back-link {
    text-align: left;
    margin: 10px auto 10px auto;
    max-width: 55rem;
    width: 90%;
    padding: 0 1rem;
    font-size: 0.9rem;
}
.back-link a {
    color: #555; 
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}
.back-link a:hover {
    color: #C59AEA;
}
@media (max-width: 650px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; 
    }
}

/*----Photos----*/
.gallery {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    gap: 1rem;
}
.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 250px;
    cursor: pointer;
}
.photo-essay-link {
    background: none; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    
}
.essay-content {
    margin: auto 0; 
    position: relative; 
    z-index: 2; 
    color: white; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.photo-essay-link h3 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.photo-essay-link p {
    text-align:center; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8)
}
.photo-essay-link img {
    position: absolute; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    z-index: 1;
}
.photo-essay-link:hover {
    transform: scale(1.05);
    z-index: 15;
}
.gallery a, .photo-essay-link img a {
    text-decoration: none;
}
.thumb {
    overflow: hidden; 
    position: relative; 
    transition: transform 0.3s ease;
}
.thumb:hover {
    transform: scale(1.05);
    z-index: 15;
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}
.thumb:hover .overlay {
    height: 100%;
    cursor: pointer;
}
.thumb .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}
@media (max-width:900px) {
    .gallery {
        grid-template-columns: repeat(24, 1fr);
    }
}
@media (max-width:600px) {
    .gallery {
        grid-template-columns: repeat(12, 1fr);
    }
}

/*----Essay----*/
.full-bleed-opener img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.essay-header {
    max-width: 55rem; 
    width: 90%;
    margin: 0 auto; 
    padding: 0 1rem;
    text-align: center;
}
.essay-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin: 2px;
    margin-top: 20px;
}
.essay-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin: 0px;
}
.essay-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px; 
    margin: 10px auto 0px auto; 
    text-align: center; 
    font-style: italic;
}
.full-bleed-opener {
    width: 100vw; 
    margin-top: 1rem;
    margin-left: calc(50% - 50vw); 
    height: 70vh;
    box-shadow: none !important;
    border-radius: 0 !important;
    z-index: 5;
    position: relative; 
}
.essay {
    max-width: 950px;
    padding: 20px 30px;
    margin: -95px auto 40px auto; 
    background-color: white; 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    position: relative; 
    font-size: 90%;
}
.story-block {
    display: flex;
    margin: 1.25rem 0;
    align-items: center; 
}
.story-text {
    max-width: 625px; 
    margin: 0 auto; 
    padding: 0;
    width: 100%; 
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}
.story-block .story-text {
    max-width: 500px;
    width: 100%; 
}
.story-text p {
    font-size: 1.30rem;
    line-height: 1.35;
    margin-bottom: .5rem;
    text-align: left;
}
.image-left-pull {
    flex-direction: row; 
    padding-right: 0;
}
.pull-out-left, .pull-out-right {
    width: 400px; 
    height: 500px; 
    flex-shrink: 0;
    transition: transform 0.3s ease; 
    overflow: hidden;
    display: flex;
    justify-content: center; 
    align-items: center;
}
.pull-out-left img, .pull-out-right img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    margin: 0;
    align-self: center;
}
.pull-out-left {
    margin-right: 40px;
    margin-left: -80px; 
}
.image-right-pull {
    flex-direction: row-reverse;
    padding-left: 0;
}
.pull-out-right {
    margin-left: 40px;
    margin-right: -80px;
}
.wide-text-block {
    max-width: 800px;
    margin: 20px auto; 
}
.visual-montage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 30px auto;
}
.small-montage {
    height: 280px;
}
.climax-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 60px auto;
    max-width: 900px;
}
.climax-img {
    height: 300px;
}
.conclusion {
    max-width: 55rem;
    width: 90%;
    margin: 4rem auto 2rem auto;
    padding: 0 1rem;
}
.conclusion-text {
    text-align: center;
    font-size: 1.4rem; 
    line-height: 1.6;
    font-weight: 500;
    font-style: italic; 
    color: #333;
    border-top: 2px solid #ccc;
    padding-top: 20px;
}
@media (max-width: 750px) {
    .story-block {
        flex-direction: column !important;
        align-items: center;
        margin: 20px 0;
    }
    .pull-out-left, .pull-out-right {
        width: 90%; 
        height: 400px; 
        margin-left: 0 !important; 
        margin-right: 0 !important; 
        margin-bottom: 20px; 
    }
    .pull-out-left img, .pull-out-right img {
        width: 100%; 
        height: 100%;
    }
    .story-text {
        max-width: 100%; 
        padding: 0 10px; 
    }
    .visual-montage {
        grid-template-columns: repeat(2, 1fr); 
        max-width: 100%;
    }
    .climax-grid {
        grid-template-columns: repeat(2, 1fr); 
        max-width: 100%;
    }
    .essay {
        max-width: 90%;
        padding: 20px; 
    }
    .visual-montage, .climax-grid {
        grid-template-columns: 1fr; 
    }
    .pull-out-left, .pull-out-right {
        height: 300px; 
        margin: 0 !important;
    }
}

/*----Photo Modal Styles----*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    margin-bottom: 1rem;
}
.modal-text {
    overflow-y: auto;
    max-height: 20vh;
    width: 100%;
    text-align: center;
}
.modal-text p {
    color: white;
    margin: 0;
}
.modal-caption {
    font-size: 1.2rem;
    font-weight: lighter;
    margin-bottom: 0.5rem;
}
.modal-details {
    color: #ccc;
    font-size: 0.75rem;
    font-style: italic;
}
.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease, color 0.2s ease;
    z-index: 1001;
}
.modal-close-btn:hover {
    color: #C59AEA; 
    opacity: 1;
}
.modal-content {
    position: relative; 
    max-width: 90%;
}

/* --- Writing --- */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 5px;
    border-bottom: 2px solid #ccc;
}
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.multimedia-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}
.multimedia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}
.media-placeholder {
    width: 100%;
    height: 150px;
    background-color: #f0f0f0;
    border: 1px dashed #C59AEA; 
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 8px;
    font-style: italic;
    font-size: 0.9em;
}
.multimedia-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222; 
    margin: 0 0 10px 0;
    text-align: center;
}
.multimedia-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    text-align: left; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.multimedia-card .card-image {
    height: 11.5rem;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.multimedia-card .card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover; 
}
.media-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #C59AEA; 
    color: white;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 5px;
    letter-spacing: 0.5px;
}
.btn-cta {
    display: block;
    width: 90%;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: auto; 
}
.btn-primary {
    background-color: #222; 
    color: white;
    padding: .5rem;
}
.btn-primary:hover {
    background-color: #444;
}
.external-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 3rem;
}
.external-link-item {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 15px 20px;
    border-left: 6px solid #C59AEA; /* Use accent color for distinction */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}
.external-link-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.link-icon {
    font-size: 2.2rem;
    margin-right: 20px;
    color: #555; 
}
.link-info {
    padding-left: .75rem;
    flex-grow: 1;
    text-align: left;
}
.link-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
}
.link-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}
.btn-secondary {
    padding: 8px 15px;
    background-color: #f0f0f0; 
    color: #222;
    border: 1px solid #ddd;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.btn-secondary:hover {
    background-color: #C59AEA;
    color: white;
    border-color: #C59AEA;
}
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr; 
    }
    .external-link-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        flex-wrap: wrap;
    }
    .link-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .link-info {
        flex: 0 0 100%;
        margin-bottom: 10px;
        padding-left: 0;
    }
    .btn-secondary{
        display:block; 
        width:90%; 
        text-align:center;
        margin-top:0;
    }
}

/*----Design----*/
.design-section-heading {
    color: #222;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 6px solid #C59AEA;
}
.software {
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: uppercase
}
.project-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    margin-bottom: 40px;
}
.design-card {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    text-align: left;
    position: relative;
    border-top: 5px solid transparent;
}
.design-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-top: 5px solid #C59AEA;
}
.card-wide {
    grid-column: span 2;
}
.card-narrow {
    grid-column: span 1;
}
.card-full {
    grid-column: 1 / -1;
}
.design-thumbnail {
    width: 100%;
    height: 200px;
    background-color: #f8f8f8;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 8px;
    font-style: italic;
    color: #888;
}
.design-card h4 {
    color: #222;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5px;
}
.design-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}
.software-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #7ad5c9;
    color: #333;
    padding: 5px 10px;
    font-size: 0.7em;
    font-weight: 700;
    border-radius: 5px;
}
.lightbox-overlay{
    display:none;  
    position:fixed;
    inset:0;  
    background:rgba(0,0,0,.9);
    z-index:10000; 
    justify-content:center;
    align-items:center;
    overflow:hidden; 
}
.lightbox-close{
    position:absolute;
    top:20px;
    right:30px;
    color:#7ad5c9;
    font-size:38px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}
.lightbox-close:hover{color:#bbb;}
.lightbox-content{
    max-width:90vw;  
    max-height:90vh;
    width:100%; 
    height:100%;   
    background:transparent;
    display:flex; 
    justify-content:center; 
    align-items:center;
    overflow:auto;  
}
.lightbox-content img{
    max-width:100%; 
    max-height:100%; 
    width:auto;
    height:auto;
    object-fit:contain;  
    display:block;
    margin:auto;
}
.lightbox-content iframe{
    width:100%;
    height:100%;
    border:none;
    display:block;
}
.lightbox-content pdf{
    width:90vw;
    height:90vh;
    border:none;
    box-shadow:0 8px 20px rgba(0,0,0,.5);
    border-radius:8px;
}
.lightbox-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 16px;
    max-width:90vw;
    max-height:90vh;
    overflow:auto;
    padding:12px;
}
.grid-thumb{
    width:100%;
    height:100%;
    object-fit: cover;
    cursor:pointer;
    border-radius:6px;
    transition:transform .2s ease, box-shadow .2s ease;
}
.lightbox-grid > img:last-child{
    grid-column: span 2;
}
.grid-thumb:hover{
    transform:scale(1.04);
    box-shadow:0 4px 12px rgba(0,0,0,.4);
}
.slide-wrapper{
    position:relative;
    max-width:90vw;
    max-height:90vh;
    width: 100%;
    height: 100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow: hidden;
}
.slide-img{
    max-width:100%;
    max-height:100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius:8px;
}
.slide-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:2.5rem;
    color:#fff;
    cursor:pointer;
    user-select:none;
    padding:0.4rem 0.6rem;
    background:rgba(0,0,0,.3);
    border-radius:4px;
}
.slide-arrow.left{ left:10px; }
.slide-arrow.right{ right:10px; }
.slide-arrow:hover{ background:rgba(0,0,0,.6); }
.slide-back{
    position:absolute;
    top:12px;
    left:12px;
    font-size:1rem;
    color:#fff;
    cursor:pointer;
    background:rgba(0,0,0,.4);
    padding:.3rem .6rem;
    border-radius:4px;
}
.slide-back:hover{ background:rgba(0,0,0,.7); }
@media (max-width: 768px) {
    .project-showcase-grid {
        grid-template-columns: 1fr;
    }
    .card-wide, .card-narrow, .card-full {
        grid-column: 1 / -1;
    }
}

/*----Video----*/
.video-showcase-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
}
.tv-unit-container{
    margin-top: .5rem;
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:9px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.1);
}
.tv-screen-bezel{
    position:relative;
    inset: 0;
    background-color:#111; 
    width:100%;
    aspect-ratio:610/430;
    background:url("../images/design/vintage_tv.png") no-repeat center/cover;
}
:root{
    --screen-top:    9.5%;
    --screen-left:   4.50%;
    --screen-width:  72%;
    --screen-height: 79.1%;
}
.video-player{
    position:absolute;
    top:var(--screen-top);
    left:var(--screen-left);
    width:var(--screen-width);
    height:var(--screen-height);
    overflow:hidden;
    background:#000;
    border-radius:38px;
}
.video-player iframe{
    position:absolute;
    inset:0; 
    width:100%; height:100%;
    border:none;
}
.tv-text-panel{
    background:#fff;
    padding:20px 30px;
    color:#222;
    border-top:1px solid #999;
}
.tv-text-panel h4{
    font-family:'Montserrat',sans-serif;
    font-size:1.2rem;
    font-weight:700;
    margin:5px 0;
}
.tv-text-panel p{
    font-size:0.95rem;
    color:#555;
    margin-bottom:5px;
}
@media (min-width: 900px){
    .video-showcase-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:850px){
    .video-showcase-grid{grid-template-columns:1fr;}
}

/*----Contact----*/
.contact-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 90vw;
    max-width: 55rem;
    margin: 2rem auto;
    padding: 1rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.contact-form {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    text-align: left;
    display: block;
    margin-left: 1.8rem;
    margin-bottom: 0.3rem;
    color: #444;
    font-size: 1.2rem;
}
.form-group input,
.form-group textarea {
    width: 90%;
    padding: .6rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
.submit-btn {
    background-color: #222;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.submit-btn:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 0;
    }
            
    .contact-form {
        padding: 1rem;
    }
}

/*----Thank You----*/
.thank-you-message {
    text-align: center; 
    padding: 2rem; 
    background: #f8f8f8; 
    border-radius: 10px;
}
.thank-you-message h3 {
    font-size: 1.8rem; 
    color: #222; 
    margin: 0 0 10px 0;
}
.thank-you-message p {
    margin: 1rem 1.2rem;
    font-size: 1.1rem; 
    color: #555; 
    margin-bottom: 1.8rem; 
    text-align: center;
}

/*----Socials----*/
.social-links {
    text-align: center;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.5rem;
}
.social-icon {
    color: #444;
    transition: color 0.3s ease;
}
.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.social-icon:hover {
    color: #C59AEA;
}

