/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "groteskbold";
}
.videopage{
   background-color: #111;
   font-family: "groteskbold";
}
@font-face {
    font-family: "groteskbold";
    src: url('fonts/HKGrotesk-Bold.ttf');
}
body.index{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #111;
}
/* Background Video */
#bg-video {
    position: fixed;
    top: -90px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Transparent Navbar */
.navbar {
    position: absolute; /* Instead of fixed */
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0); /* Fully transparent */
    z-index: 10;
}

/* Navbar Text */
.logo a{
    font-family: "groteskbold";
    font-size: 24px;
    color: white;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
}

/* Navbar Links */
.nav-links {
    font-family: "groteskbold";
    list-style: none;
    text-decoration: none;
    display: flex;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0);
}

.nav-links li {
    display: inline;
    background-color: rgba(0, 0, 0, 0);
}

.nav-links a {
    font-family: "groteskbold";
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0);
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Centered Content */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.content h1 {
    font-size: 48px;
    font-weight: bold;
}

.content p {
    font-size: 20px;
    margin-top: 10px;
}

/* VIDEO PAGE*/
/* Black Navbar for Video Page */

.videocontent, .video-section {
    font-family: "groteskbold", sans-serif;
}

.videocontent{
    margin-top: 30px;
}
/* Video Sections */
.video-section {
    padding: 50px;
    text-align: center;
    color: white;
    background-color: #111; /* Dark background for contrast */
}

/* Section Headers */
.video-section h2 {
    font-size: 28px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    text-transform: uppercase;
}

.video-section h2::before,
.video-section h2::after {
    content: "";
    display: block;
    width: 100%; /* Full width */
    height: 1px;
    background-color: white;
    margin: 10px 0;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    padding: 0 50px;
}

/* Video Items */
.video-item {
    width: 100%;
    max-width: 400px;
}

.video-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}


/* DESIGN PAGE */

/* Design Page Styling */
.designpage{
    background-color: #111;
}
.design-section {
    padding: 50px;
    text-align: center;
    background-color: #111;
    margin-top: 50px;
}

/* Section Headers */
.design-section h2 {
    font-size: 28px;
    margin: 20px 0;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    color: white;
}

.design-section h2::before,
.design-section h2::after {
    content: "";
    display: block;
    width: 100%; /* Full width */
    height: 1px;
    background-color: white;
    margin: 10px 0;
}

/* Design Grid */
.design-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    padding: 0 50px;
    padding-top: 20px;
}

/* Design Items (Images) */
.design-item {
    width: 100%;
    max-width: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.design-item img {
    width: 100%;
    height: auto;
}

.design-item:hover {
    transform: scale(1.05);
}

/* Popup Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 30px;
    width: 50%;
    max-width: 600px;
    text-align: center;
    position: relative;
}

/* Modal Image Container */
.image-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    max-width: 100%;
}

.image-container img {
    width: auto;
    max-height: 300px;
    border-radius: 8px;
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Arrows for navigating projects */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 15px;
    transition: background 0.3s;
}

.prev { left: -60px; }
.next { right: -60px; }

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 1);
}

footer {
    background-color: #111;  /* Dark background */
    color: white;  /* White text */
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-content a img {
    width: 30px;  /* Adjust icon size */
    height: auto;
    transition: transform 0.3s ease;
}

.footer-content a img:hover {
    transform: scale(1.1);  /* Slight zoom on hover */
}
